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

Sun, 02 Jul 2023 17:39:33 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 02 Jul 2023 17:39:33 +0200
branch
eric7-maintenance
changeset 10101
34f74c19ed7a
parent 10082
816bc1c6db77 (current diff)
parent 10099
526d17ba99c2 (diff)
child 10102
6ae4d88c722b

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
scripts/install.py file | annotate | diff | comparison | revisions
scripts/uninstall.py file | annotate | diff | comparison | revisions
src/eric7/APIs/Python3/eric7.api file | annotate | diff | comparison | revisions
src/eric7/APIs/Python3/eric7.bas 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/PipInterface/Pip.py file | annotate | diff | comparison | revisions
src/eric7/PipInterface/PipPackagesWidget.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/README-ChromeOS.rst	Sun May 28 14:40:38 2023 +0200
+++ b/docs/README-ChromeOS.rst	Sun Jul 02 17:39:33 2023 +0200
@@ -15,7 +15,7 @@
 
     sudo apt update
     sudo apt upgrade
-    sudo apt install libxkbfile1 libopengl0 python3-pip python3-venv
+    sudo apt install libxkbfile1 libxcb-cursor0 libopengl0 python3-pip python3-venv
 
 Step 3: modify environment to make Qt not use Wayland
 
@@ -43,6 +43,9 @@
 **Note 2:** If eric crashes showing completion lists, this change should be
 applied in order to switch to use X11.
 
+**Note 3:** As of Qt 6.5.1 it is not compatible with Debian Bullseye in Wayland
+mode. The above change needs to be implemented.
+
 2. eric Installation
 --------------------
 Installing eric7 is a simple process. There are various methods available.
@@ -94,5 +97,5 @@
 -----------------------------------------------------
 eric7 provides an extension mechanism via plug-ins.  The plug-ins are
 available via the Plugin Repository dialog from within eric7. Some plugins
-require the installation of additional python packages. This is done 
+require the installation of additional Python packages. This is done 
 automatically during the plugin installation.
--- a/docs/changelog.md	Sun May 28 14:40:38 2023 +0200
+++ b/docs/changelog.md	Sun Jul 02 17:39:33 2023 +0200
@@ -1,4 +1,15 @@
 # Change Log
+### Version 23.7
+- bug fixes
+- Code Style Checker
+    - Added these checkers to support more case.
+        - property decorator usage
+        - PEP-604 style union type annotations
+        - deprecated 'typing' symbols (PEP 585)
+- MicroPython
+    - Added support for Bluetooth for RP2040 based boards (e.g. Pi Pico W).
+- pip Interface
+    - Added a standalone application for Python package management with `pip`.
 
 ### Version 23.6
 - bug fixes
--- a/eric7.epj	Sun May 28 14:40:38 2023 +0200
+++ b/eric7.epj	Sun Jul 02 17:39:33 2023 +0200
@@ -16,6 +16,9 @@
             "singledispatch",
             "singledispatchmethod"
           ],
+          "ExemptedTypingSymbols": [
+            ""
+          ],
           "ForceFutureAnnotations": false,
           "MaximumComplexity": 3,
           "MaximumLength": 7,
@@ -862,6 +865,10 @@
       "src/eric7/IconEditor/cursors/eraser-cursor.xpm",
       "src/eric7/IconEditor/cursors/fill-cursor.xpm",
       "src/eric7/IconEditor/cursors/paintbrush-cursor.xpm",
+      "src/eric7/MicroPython/BluetoothDialogs/data/company_identifiers.yaml",
+      "src/eric7/MicroPython/BluetoothDialogs/data/member_uuids.yaml",
+      "src/eric7/MicroPython/BluetoothDialogs/data/sdo_uuids.yaml",
+      "src/eric7/MicroPython/BluetoothDialogs/data/service_uuids.yaml",
       "src/eric7/Plugins/UiExtensionPlugins/Translator/icons/engines/deepl-dark.svg",
       "src/eric7/Plugins/UiExtensionPlugins/Translator/icons/engines/deepl-light.svg",
       "src/eric7/Plugins/UiExtensionPlugins/Translator/icons/engines/googlev1.svg",
@@ -1429,6 +1436,7 @@
       "src/eric7/PipInterface/PipPackageDetailsDialog.py",
       "src/eric7/PipInterface/PipPackagesInputDialog.py",
       "src/eric7/PipInterface/PipPackagesWidget.py",
+      "src/eric7/PipInterface/PipPackagesWindow.py",
       "src/eric7/PipInterface/PipVulnerabilityChecker.py",
       "src/eric7/PipInterface/__init__.py",
       "src/eric7/PipInterface/pipdeptree.py",
@@ -1446,9 +1454,11 @@
       "src/eric7/Plugins/AboutPlugin/__init__.py",
       "src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsChecker.py",
       "src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsCheckerDefaults.py",
+      "src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsDeprecationsVisitor.py",
       "src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsEnums.py",
       "src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsFunctionVisitor.py",
       "src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsFutureVisitor.py",
+      "src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsUnionVisitor.py",
       "src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/__init__.py",
       "src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py",
       "src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/AstUtilities.py",
@@ -2455,6 +2465,7 @@
       "src/eric7/eric7_ide.pyw",
       "src/eric7/eric7_pdf.py",
       "src/eric7/eric7_pdf.pyw",
+      "src/eric7/eric7_pip.py",
       "src/eric7/eric7_plugininstall.py",
       "src/eric7/eric7_plugininstall.pyw",
       "src/eric7/eric7_pluginrepository.py",
--- a/pyproject.toml	Sun May 28 14:40:38 2023 +0200
+++ b/pyproject.toml	Sun Jul 02 17:39:33 2023 +0200
@@ -6,7 +6,7 @@
 name = "eric-ide"
 description = "eric7 is an integrated development environment for the Python language."
 readme = "docs/README.rst"
-license = {file = "docs/LICENSE.txt"}
+license = {text = "GPLv3"}
 authors = [
     {name = "Detlev Offenbach"},
     {name = "Detlev Offenbach", email = "detlev@die-offenbachs.de"},
@@ -110,6 +110,7 @@
 eric7_iconeditor = "eric7.eric7_iconeditor:main"
 eric7_ide = "eric7.eric7_ide:main"
 eric7_pdf = "eric7.eric7_pdf:main"
+eric7_pip = "eric7.eric7_pip:main"
 eric7_plugininstall = "eric7.eric7_plugininstall:main"
 eric7_pluginrepository = "eric7.eric7_pluginrepository:main"
 eric7_pluginuninstall = "eric7.eric7_pluginuninstall:main"
@@ -168,6 +169,7 @@
     "*.xml",
     "*.js",
     "*.json",
+    "*.yaml",
     "*.desktop",
 ]
 # complete translation files only
--- a/scripts/install-debugclients.py	Sun May 28 14:40:38 2023 +0200
+++ b/scripts/install-debugclients.py	Sun Jul 02 17:39:33 2023 +0200
@@ -92,6 +92,15 @@
     global modDir, pyModDir
 
     modDir = sysconfig.get_path("platlib")
+    if not os.access(modDir, os.W_OK):
+        # can't write to the standard path, use the 'user' path instead
+        if sys.platform.startswith(("win", "cygwin")):
+            scheme = "nt_user"
+        elif sys.platform == "darwin":
+            scheme = "osx_framework_user"
+        else:
+            scheme = "posix_user"
+        modDir = sysconfig.get_path("platlib", scheme)
     pyModDir = modDir
 
 
--- a/scripts/install.py	Sun May 28 14:40:38 2023 +0200
+++ b/scripts/install.py	Sun Jul 02 17:39:33 2023 +0200
@@ -210,6 +210,15 @@
             platBinDir = os.path.expanduser("~/bin")
 
     modDir = sysconfig.get_path("platlib")
+    if not os.access(modDir, os.W_OK):
+        # can't write to the standard path, use the 'user' path instead
+        if sys.platform.startswith(("win", "cygwin")):
+            scheme = "nt_user"
+        elif sys.platform == "darwin":
+            scheme = "osx_framework_user"
+        else:
+            scheme = "posix_user"
+        modDir = sysconfig.get_path("platlib", scheme)
     pyModDir = modDir
 
     pyqtDataDir = os.path.join(modDir, "PyQt6")
@@ -516,6 +525,7 @@
         "eric7_iconeditor",
         "eric7_ide",
         "eric7_pdf",
+        "eric7_pip",
         "eric7_plugininstall",
         "eric7_pluginrepository",
         "eric7_pluginuninstall",
@@ -755,6 +765,7 @@
         "eric7_iconeditor",
         "eric7_ide",
         "eric7_pdf",
+        "eric7_pip",
         "eric7_plugininstall",
         "eric7_pluginrepository",
         "eric7_pluginuninstall",
@@ -870,6 +881,11 @@
             ["*.json"],
         )
         copyTree(
+            os.path.join(eric7SourceDir, "MicroPython", "BluetoothDialogs", "data"),
+            os.path.join(cfg["ericDir"], "MicroPython", "BluetoothDialogs", "data"),
+            ["*.yaml"],
+        )
+        copyTree(
             os.path.join(eric7SourceDir, "UI", "data"),
             os.path.join(cfg["ericDir"], "UI", "data"),
             ["*.css"],
--- a/scripts/uninstall-debugclients.py	Sun May 28 14:40:38 2023 +0200
+++ b/scripts/uninstall-debugclients.py	Sun Jul 02 17:39:33 2023 +0200
@@ -66,6 +66,15 @@
     global modDir, pyModDir
 
     modDir = sysconfig.get_path("platlib")
+    if not os.access(modDir, os.W_OK):
+        # can't write to the standard path, use the 'user' path instead
+        if sys.platform.startswith(("win", "cygwin")):
+            scheme = "nt_user"
+        elif sys.platform == "darwin":
+            scheme = "osx_framework_user"
+        else:
+            scheme = "posix_user"
+        modDir = sysconfig.get_path("platlib", scheme)
     pyModDir = modDir
 
 
--- a/scripts/uninstall.py	Sun May 28 14:40:38 2023 +0200
+++ b/scripts/uninstall.py	Sun Jul 02 17:39:33 2023 +0200
@@ -89,6 +89,15 @@
     global pyModDir
 
     pyModDir = sysconfig.get_path("platlib")
+    if not os.access(pyModDir, os.W_OK):
+        # can't write to the standard path, use the 'user' path instead
+        if sys.platform.startswith(("win", "cygwin")):
+            scheme = "nt_user"
+        elif sys.platform == "darwin":
+            scheme = "osx_framework_user"
+        else:
+            scheme = "posix_user"
+        pyModDir = sysconfig.get_path("platlib", scheme)
 
 
 def wrapperNames(dname, wfile):
@@ -134,6 +143,7 @@
         "eric7_iconeditor",
         "eric7_ide",
         "eric7_pdf",
+        "eric7_pip",
         "eric7_plugininstall",
         "eric7_pluginrepository",
         "eric7_pluginuninstall",
--- a/src/eric7/APIs/Python3/eric7.api	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/APIs/Python3/eric7.api	Sun Jul 02 17:39:33 2023 +0200
@@ -2576,8 +2576,11 @@
 eric7.MicroPython.BluetoothDialogs.BluetoothAdvertisement.BluetoothAdvertisement.txPower?4()
 eric7.MicroPython.BluetoothDialogs.BluetoothAdvertisement.BluetoothAdvertisement.update?4(advType, rssi, advData)
 eric7.MicroPython.BluetoothDialogs.BluetoothAdvertisement.BluetoothAdvertisement?1(address)
-eric7.MicroPython.BluetoothDialogs.BluetoothAdvertisement.ManufacturerId?7
+eric7.MicroPython.BluetoothDialogs.BluetoothAdvertisement.ManufacturerIDs?7
 eric7.MicroPython.BluetoothDialogs.BluetoothAdvertisement.SCAN_RSP?7
+eric7.MicroPython.BluetoothDialogs.BluetoothAdvertisement.ServiceIDs?7
+eric7.MicroPython.BluetoothDialogs.BluetoothAdvertisement._loadManufacturerIDs?5()
+eric7.MicroPython.BluetoothDialogs.BluetoothAdvertisement._loadServiceUUIDs?5()
 eric7.MicroPython.BluetoothDialogs.BluetoothController.BluetoothController.createMenu?4(menu)
 eric7.MicroPython.BluetoothDialogs.BluetoothController.BluetoothController?1(microPython, parent=None)
 eric7.MicroPython.BluetoothDialogs.BluetoothScanWindow.BluetoothScanWindow.scanDevices?4()
@@ -2876,6 +2879,7 @@
 eric7.MicroPython.Devices.PyBoardDevices.PyBoardDevice?1(microPythonWidget, deviceType, parent=None)
 eric7.MicroPython.Devices.PyBoardDevices.createDevice?4(microPythonWidget, deviceType, vid, pid, boardName, serialNumber)
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device._getSetTimeCode?5()
+eric7.MicroPython.Devices.RP2040Devices.RP2040Device.activateBluetoothInterface?4()
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.addDeviceMenuEntries?4(menu)
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.addDeviceWifiEntries?4(menu)
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.canRunScript?4()
@@ -2886,6 +2890,7 @@
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.checkInternetViaLan?4()
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.connectToLan?4(config)
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.connectWifi?4(ssid, password)
+eric7.MicroPython.Devices.RP2040Devices.RP2040Device.deactivateBluetoothInterface?4()
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.deactivateEthernet?4()
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.deactivateInterface?4(interface)
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.deviceName?4()
@@ -2894,11 +2899,14 @@
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.disconnectWifi?4()
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.enableWebrepl?4(password)
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.forceInterrupt?4()
+eric7.MicroPython.Devices.RP2040Devices.RP2040Device.getBluetoothStatus?4()
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.getConnectedClients?4()
+eric7.MicroPython.Devices.RP2040Devices.RP2040Device.getDeviceScan?4(timeout=10)
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.getDocumentationUrl?4()
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.getDownloadMenuEntries?4()
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.getEthernetStatus?4()
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.getWifiData?4()
+eric7.MicroPython.Devices.RP2040Devices.RP2040Device.hasBluetooth?4()
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.hasEthernet?4()
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.hasFlashMenuEntry?4()
 eric7.MicroPython.Devices.RP2040Devices.RP2040Device.hasNetworkTime?4()
@@ -3726,6 +3734,7 @@
 eric7.PipInterface.PipPackagesWidget.PypiSearchResultsParser.handle_endtag?4(tag)
 eric7.PipInterface.PipPackagesWidget.PypiSearchResultsParser.handle_starttag?4(tag, attrs)
 eric7.PipInterface.PipPackagesWidget.PypiSearchResultsParser?1(data)
+eric7.PipInterface.PipPackagesWindow.PipPackagesWindow?1(parent=None)
 eric7.PipInterface.PipVulnerabilityChecker.PipVulnerabilityChecker.FullDbFile?7
 eric7.PipInterface.PipVulnerabilityChecker.PipVulnerabilityChecker.SummaryDbFile?7
 eric7.PipInterface.PipVulnerabilityChecker.PipVulnerabilityChecker.check?4(packages)
@@ -3934,6 +3943,18 @@
 eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.AnnotationsChecker.run?4()
 eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.AnnotationsChecker?1(source, filename, tree, select, ignore, expected, repeat, args)
 eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsCheckerDefaults.AnnotationsCheckerDefaultArgs?7
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.AnnotationsDeprecationsVisitor.NameReplacements?7
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.AnnotationsDeprecationsVisitor.getIssues?4()
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.AnnotationsDeprecationsVisitor.visit_AnnAssign?4(node)
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.AnnotationsDeprecationsVisitor.visit_AsyncFunctionDef?7
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.AnnotationsDeprecationsVisitor.visit_Attribute?4(node)
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.AnnotationsDeprecationsVisitor.visit_FunctionDef?4(node)
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.AnnotationsDeprecationsVisitor.visit_Import?4(node)
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.AnnotationsDeprecationsVisitor.visit_ImportFrom?4(node)
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.AnnotationsDeprecationsVisitor?1(exemptedList)
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.AnnotationsFutureImportVisitor.futureImportPresent?4()
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.AnnotationsFutureImportVisitor.visit_ImportFrom?4(node)
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.AnnotationsFutureImportVisitor?1()
 eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsEnums.AnnotationType.ARGS?7
 eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsEnums.AnnotationType.KWARG?7
 eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsEnums.AnnotationType.KWONLYARGS?7
@@ -3986,6 +4007,15 @@
 eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFutureVisitor.AnnotationsFutureVisitor.visit_ImportFrom?4(node)
 eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFutureVisitor.AnnotationsFutureVisitor.visit_arg?4(node: ast.arg)
 eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFutureVisitor.AnnotationsFutureVisitor?1()
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.AnnotationsUnionVisitor.AttributeName?7
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.AnnotationsUnionVisitor.FullName?7
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.AnnotationsUnionVisitor.ModuleName?7
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.AnnotationsUnionVisitor.getIssues?4()
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.AnnotationsUnionVisitor.visit_Attribute?4(node)
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.AnnotationsUnionVisitor.visit_Import?4(node)
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.AnnotationsUnionVisitor.visit_ImportFrom?4(node)
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.AnnotationsUnionVisitor.visit_Subscript?4(node)
+eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.AnnotationsUnionVisitor?1()
 eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.translations._annotationsMessages?8
 eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.translations._annotationsMessagesSampleArgs?8
 eric7.Plugins.CheckerPlugins.CodeStyleChecker.AstUtilities.getValue?4(node)
@@ -7121,6 +7151,7 @@
 eric7.Preferences.ConfigurationDialog.ConfigurationMode.EDITORMODE?7
 eric7.Preferences.ConfigurationDialog.ConfigurationMode.HEXEDITORMODE?7
 eric7.Preferences.ConfigurationDialog.ConfigurationMode.PDFVIEWERMODE?7
+eric7.Preferences.ConfigurationDialog.ConfigurationMode.PIPMANAGERMODE?7
 eric7.Preferences.ConfigurationDialog.ConfigurationMode.TRAYSTARTERMODE?7
 eric7.Preferences.ConfigurationDialog.ConfigurationMode.WEBBROWSERMODE?7
 eric7.Preferences.ConfigurationDialog.ConfigurationPageItem.getPageName?4()
@@ -13024,6 +13055,8 @@
 eric7.eric7_ide.uiStartUp?4()
 eric7.eric7_pdf.createMainWidget?4(argv)
 eric7.eric7_pdf.main?4()
+eric7.eric7_pip.createMainWidget?4(argv)
+eric7.eric7_pip.main?4()
 eric7.eric7_plugininstall.createMainWidget?4(argv)
 eric7.eric7_plugininstall.main?4()
 eric7.eric7_pluginrepository.createMainWidget?4(argv)
--- a/src/eric7/APIs/Python3/eric7.bas	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/APIs/Python3/eric7.bas	Sun Jul 02 17:39:33 2023 +0200
@@ -24,7 +24,10 @@
 AddProjectDialog QDialog Ui_AddProjectDialog
 AddProjectUrlDialog QDialog Ui_AddProjectUrlDialog
 AnnotationType enum.Enum
+AnnotationsDeprecationsVisitor ast.NodeVisitor
+AnnotationsFutureImportVisitor ast.NodeVisitor
 AnnotationsFutureVisitor ast.NodeVisitor
+AnnotationsUnionVisitor ast.NodeVisitor
 ApplicationDiagramBuilder UMLDiagramBuilder
 ApplicationPage ConfigurationPageBase Ui_ApplicationPage
 ArgumentsError RuntimeError
@@ -763,6 +766,7 @@
 PipPackageDetailsDialog QDialog Ui_PipPackageDetailsDialog
 PipPackagesInputDialog QDialog Ui_PipPackagesInputDialog
 PipPackagesWidget QWidget Ui_PipPackagesWidget
+PipPackagesWindow EricMainWindow
 PipPage ConfigurationPageBase Ui_PipPage
 PipVulnerabilityChecker QObject
 PixmapDiagram EricMainWindow
Binary file src/eric7/Documentation/Help/source.qch has changed
--- a/src/eric7/Documentation/Help/source.qhp	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Documentation/Help/source.qhp	Sun Jul 02 17:39:33 2023 +0200
@@ -385,6 +385,7 @@
             <section title="eric7.PipInterface.PipPackageDetailsDialog" ref="eric7.PipInterface.PipPackageDetailsDialog.html" />
             <section title="eric7.PipInterface.PipPackagesInputDialog" ref="eric7.PipInterface.PipPackagesInputDialog.html" />
             <section title="eric7.PipInterface.PipPackagesWidget" ref="eric7.PipInterface.PipPackagesWidget.html" />
+            <section title="eric7.PipInterface.PipPackagesWindow" ref="eric7.PipInterface.PipPackagesWindow.html" />
             <section title="eric7.PipInterface.PipVulnerabilityChecker" ref="eric7.PipInterface.PipVulnerabilityChecker.html" />
             <section title="eric7.PipInterface.pipdeptree" ref="eric7.PipInterface.pipdeptree.html" />
             <section title="eric7.PipInterface.piplicenses" ref="eric7.PipInterface.piplicenses.html" />
@@ -408,9 +409,11 @@
                 <section title="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations" ref="index-eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.html">
                   <section title="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html" />
                   <section title="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsCheckerDefaults" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsCheckerDefaults.html" />
+                  <section title="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html" />
                   <section title="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsEnums" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsEnums.html" />
                   <section title="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFunctionVisitor" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFunctionVisitor.html" />
                   <section title="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFutureVisitor" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFutureVisitor.html" />
+                  <section title="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.html" />
                   <section title="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.translations" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.translations.html" />
                 </section>
                 <section title="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Complexity" ref="index-eric7.Plugins.CheckerPlugins.CodeStyleChecker.Complexity.html">
@@ -1535,6 +1538,7 @@
           <section title="eric7.eric7_iconeditor" ref="eric7.eric7_iconeditor.html" />
           <section title="eric7.eric7_ide" ref="eric7.eric7_ide.html" />
           <section title="eric7.eric7_pdf" ref="eric7.eric7_pdf.html" />
+          <section title="eric7.eric7_pip" ref="eric7.eric7_pip.html" />
           <section title="eric7.eric7_plugininstall" ref="eric7.eric7_plugininstall.html" />
           <section title="eric7.eric7_pluginrepository" ref="eric7.eric7_pluginrepository.html" />
           <section title="eric7.eric7_pluginuninstall" ref="eric7.eric7_pluginuninstall.html" />
@@ -1911,8 +1915,10 @@
       <keyword name="AnnotationsChecker (Module)" id="AnnotationsChecker (Module)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html" />
       <keyword name="AnnotationsChecker.__argumentErrorClassifier" id="AnnotationsChecker.__argumentErrorClassifier" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html#AnnotationsChecker.__argumentErrorClassifier" />
       <keyword name="AnnotationsChecker.__checkAnnotationComplexity" id="AnnotationsChecker.__checkAnnotationComplexity" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html#AnnotationsChecker.__checkAnnotationComplexity" />
+      <keyword name="AnnotationsChecker.__checkAnnotationPep604" id="AnnotationsChecker.__checkAnnotationPep604" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html#AnnotationsChecker.__checkAnnotationPep604" />
       <keyword name="AnnotationsChecker.__checkAnnotationsCoverage" id="AnnotationsChecker.__checkAnnotationsCoverage" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html#AnnotationsChecker.__checkAnnotationsCoverage" />
       <keyword name="AnnotationsChecker.__checkAnnotationsFuture" id="AnnotationsChecker.__checkAnnotationsFuture" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html#AnnotationsChecker.__checkAnnotationsFuture" />
+      <keyword name="AnnotationsChecker.__checkDeprecatedTypingSymbols" id="AnnotationsChecker.__checkDeprecatedTypingSymbols" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html#AnnotationsChecker.__checkDeprecatedTypingSymbols" />
       <keyword name="AnnotationsChecker.__checkFunctionAnnotations" id="AnnotationsChecker.__checkFunctionAnnotations" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html#AnnotationsChecker.__checkFunctionAnnotations" />
       <keyword name="AnnotationsChecker.__classifyError" id="AnnotationsChecker.__classifyError" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html#AnnotationsChecker.__classifyError" />
       <keyword name="AnnotationsChecker.__error" id="AnnotationsChecker.__error" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html#AnnotationsChecker.__error" />
@@ -1923,8 +1929,22 @@
       <keyword name="AnnotationsChecker.__returnErrorClassifier" id="AnnotationsChecker.__returnErrorClassifier" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html#AnnotationsChecker.__returnErrorClassifier" />
       <keyword name="AnnotationsChecker.run" id="AnnotationsChecker.run" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html#AnnotationsChecker.run" />
       <keyword name="AnnotationsCheckerDefaults (Module)" id="AnnotationsCheckerDefaults (Module)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsCheckerDefaults.html" />
+      <keyword name="AnnotationsDeprecationsVisitor" id="AnnotationsDeprecationsVisitor" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html#AnnotationsDeprecationsVisitor" />
+      <keyword name="AnnotationsDeprecationsVisitor (Constructor)" id="AnnotationsDeprecationsVisitor (Constructor)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html#AnnotationsDeprecationsVisitor.__init__" />
+      <keyword name="AnnotationsDeprecationsVisitor (Module)" id="AnnotationsDeprecationsVisitor (Module)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html" />
+      <keyword name="AnnotationsDeprecationsVisitor.__checkDeprecation" id="AnnotationsDeprecationsVisitor.__checkDeprecation" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html#AnnotationsDeprecationsVisitor.__checkDeprecation" />
+      <keyword name="AnnotationsDeprecationsVisitor.getIssues" id="AnnotationsDeprecationsVisitor.getIssues" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html#AnnotationsDeprecationsVisitor.getIssues" />
+      <keyword name="AnnotationsDeprecationsVisitor.visit_AnnAssign" id="AnnotationsDeprecationsVisitor.visit_AnnAssign" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html#AnnotationsDeprecationsVisitor.visit_AnnAssign" />
+      <keyword name="AnnotationsDeprecationsVisitor.visit_Attribute" id="AnnotationsDeprecationsVisitor.visit_Attribute" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html#AnnotationsDeprecationsVisitor.visit_Attribute" />
+      <keyword name="AnnotationsDeprecationsVisitor.visit_FunctionDef" id="AnnotationsDeprecationsVisitor.visit_FunctionDef" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html#AnnotationsDeprecationsVisitor.visit_FunctionDef" />
+      <keyword name="AnnotationsDeprecationsVisitor.visit_Import" id="AnnotationsDeprecationsVisitor.visit_Import" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html#AnnotationsDeprecationsVisitor.visit_Import" />
+      <keyword name="AnnotationsDeprecationsVisitor.visit_ImportFrom" id="AnnotationsDeprecationsVisitor.visit_ImportFrom" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html#AnnotationsDeprecationsVisitor.visit_ImportFrom" />
       <keyword name="AnnotationsEnums (Module)" id="AnnotationsEnums (Module)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsEnums.html" />
       <keyword name="AnnotationsFunctionVisitor (Module)" id="AnnotationsFunctionVisitor (Module)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFunctionVisitor.html" />
+      <keyword name="AnnotationsFutureImportVisitor" id="AnnotationsFutureImportVisitor" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html#AnnotationsFutureImportVisitor" />
+      <keyword name="AnnotationsFutureImportVisitor (Constructor)" id="AnnotationsFutureImportVisitor (Constructor)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html#AnnotationsFutureImportVisitor.__init__" />
+      <keyword name="AnnotationsFutureImportVisitor.futureImportPresent" id="AnnotationsFutureImportVisitor.futureImportPresent" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html#AnnotationsFutureImportVisitor.futureImportPresent" />
+      <keyword name="AnnotationsFutureImportVisitor.visit_ImportFrom" id="AnnotationsFutureImportVisitor.visit_ImportFrom" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html#AnnotationsFutureImportVisitor.visit_ImportFrom" />
       <keyword name="AnnotationsFutureVisitor" id="AnnotationsFutureVisitor" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFutureVisitor.html#AnnotationsFutureVisitor" />
       <keyword name="AnnotationsFutureVisitor (Constructor)" id="AnnotationsFutureVisitor (Constructor)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFutureVisitor.html#AnnotationsFutureVisitor.__init__" />
       <keyword name="AnnotationsFutureVisitor (Module)" id="AnnotationsFutureVisitor (Module)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFutureVisitor.html" />
@@ -1939,6 +1959,14 @@
       <keyword name="AnnotationsFutureVisitor.visit_Import" id="AnnotationsFutureVisitor.visit_Import" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFutureVisitor.html#AnnotationsFutureVisitor.visit_Import" />
       <keyword name="AnnotationsFutureVisitor.visit_ImportFrom" id="AnnotationsFutureVisitor.visit_ImportFrom" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFutureVisitor.html#AnnotationsFutureVisitor.visit_ImportFrom" />
       <keyword name="AnnotationsFutureVisitor.visit_arg" id="AnnotationsFutureVisitor.visit_arg" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFutureVisitor.html#AnnotationsFutureVisitor.visit_arg" />
+      <keyword name="AnnotationsUnionVisitor" id="AnnotationsUnionVisitor" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.html#AnnotationsUnionVisitor" />
+      <keyword name="AnnotationsUnionVisitor (Constructor)" id="AnnotationsUnionVisitor (Constructor)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.html#AnnotationsUnionVisitor.__init__" />
+      <keyword name="AnnotationsUnionVisitor (Module)" id="AnnotationsUnionVisitor (Module)" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.html" />
+      <keyword name="AnnotationsUnionVisitor.getIssues" id="AnnotationsUnionVisitor.getIssues" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.html#AnnotationsUnionVisitor.getIssues" />
+      <keyword name="AnnotationsUnionVisitor.visit_Attribute" id="AnnotationsUnionVisitor.visit_Attribute" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.html#AnnotationsUnionVisitor.visit_Attribute" />
+      <keyword name="AnnotationsUnionVisitor.visit_Import" id="AnnotationsUnionVisitor.visit_Import" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.html#AnnotationsUnionVisitor.visit_Import" />
+      <keyword name="AnnotationsUnionVisitor.visit_ImportFrom" id="AnnotationsUnionVisitor.visit_ImportFrom" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.html#AnnotationsUnionVisitor.visit_ImportFrom" />
+      <keyword name="AnnotationsUnionVisitor.visit_Subscript" id="AnnotationsUnionVisitor.visit_Subscript" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.html#AnnotationsUnionVisitor.visit_Subscript" />
       <keyword name="AppInfo (Module)" id="AppInfo (Module)" ref="eric7.Globals.AppInfo.html" />
       <keyword name="ApplicationDiagramBuilder" id="ApplicationDiagramBuilder" ref="eric7.Graphics.ApplicationDiagramBuilder.html#ApplicationDiagramBuilder" />
       <keyword name="ApplicationDiagramBuilder (Constructor)" id="ApplicationDiagramBuilder (Constructor)" ref="eric7.Graphics.ApplicationDiagramBuilder.html#ApplicationDiagramBuilder.__init__" />
@@ -11282,6 +11310,7 @@
       <keyword name="MiscellaneousChecker.__checkMutableDefault" id="MiscellaneousChecker.__checkMutableDefault" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Miscellaneous.MiscellaneousChecker.html#MiscellaneousChecker.__checkMutableDefault" />
       <keyword name="MiscellaneousChecker.__checkPep3101" id="MiscellaneousChecker.__checkPep3101" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Miscellaneous.MiscellaneousChecker.html#MiscellaneousChecker.__checkPep3101" />
       <keyword name="MiscellaneousChecker.__checkPrintStatements" id="MiscellaneousChecker.__checkPrintStatements" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Miscellaneous.MiscellaneousChecker.html#MiscellaneousChecker.__checkPrintStatements" />
+      <keyword name="MiscellaneousChecker.__checkProperties" id="MiscellaneousChecker.__checkProperties" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Miscellaneous.MiscellaneousChecker.html#MiscellaneousChecker.__checkProperties" />
       <keyword name="MiscellaneousChecker.__checkReturn" id="MiscellaneousChecker.__checkReturn" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Miscellaneous.MiscellaneousChecker.html#MiscellaneousChecker.__checkReturn" />
       <keyword name="MiscellaneousChecker.__checkSysVersion" id="MiscellaneousChecker.__checkSysVersion" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Miscellaneous.MiscellaneousChecker.html#MiscellaneousChecker.__checkSysVersion" />
       <keyword name="MiscellaneousChecker.__checkTuple" id="MiscellaneousChecker.__checkTuple" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Miscellaneous.MiscellaneousChecker.html#MiscellaneousChecker.__checkTuple" />
@@ -12403,6 +12432,9 @@
       <keyword name="PipPackagesWidget.on_verboseCheckBox_clicked" id="PipPackagesWidget.on_verboseCheckBox_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_verboseCheckBox_clicked" />
       <keyword name="PipPackagesWidget.on_viewToggleButton_toggled" id="PipPackagesWidget.on_viewToggleButton_toggled" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_viewToggleButton_toggled" />
       <keyword name="PipPackagesWidget.on_vulnerabilityCheckBox_clicked" id="PipPackagesWidget.on_vulnerabilityCheckBox_clicked" ref="eric7.PipInterface.PipPackagesWidget.html#PipPackagesWidget.on_vulnerabilityCheckBox_clicked" />
+      <keyword name="PipPackagesWindow" id="PipPackagesWindow" ref="eric7.PipInterface.PipPackagesWindow.html#PipPackagesWindow" />
+      <keyword name="PipPackagesWindow (Constructor)" id="PipPackagesWindow (Constructor)" ref="eric7.PipInterface.PipPackagesWindow.html#PipPackagesWindow.__init__" />
+      <keyword name="PipPackagesWindow (Module)" id="PipPackagesWindow (Module)" ref="eric7.PipInterface.PipPackagesWindow.html" />
       <keyword name="PipPage" id="PipPage" ref="eric7.Preferences.ConfigurationPages.PipPage.html#PipPage" />
       <keyword name="PipPage (Constructor)" id="PipPage (Constructor)" ref="eric7.Preferences.ConfigurationPages.PipPage.html#PipPage.__init__" />
       <keyword name="PipPage (Module)" id="PipPage (Module)" ref="eric7.Preferences.ConfigurationPages.PipPage.html" />
@@ -14075,6 +14107,7 @@
       <keyword name="RP2040Device.__setCountry" id="RP2040Device.__setCountry" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.__setCountry" />
       <keyword name="RP2040Device.__showFirmwareVersions" id="RP2040Device.__showFirmwareVersions" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.__showFirmwareVersions" />
       <keyword name="RP2040Device._getSetTimeCode" id="RP2040Device._getSetTimeCode" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device._getSetTimeCode" />
+      <keyword name="RP2040Device.activateBluetoothInterface" id="RP2040Device.activateBluetoothInterface" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.activateBluetoothInterface" />
       <keyword name="RP2040Device.addDeviceMenuEntries" id="RP2040Device.addDeviceMenuEntries" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.addDeviceMenuEntries" />
       <keyword name="RP2040Device.addDeviceWifiEntries" id="RP2040Device.addDeviceWifiEntries" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.addDeviceWifiEntries" />
       <keyword name="RP2040Device.canRunScript" id="RP2040Device.canRunScript" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.canRunScript" />
@@ -14085,6 +14118,7 @@
       <keyword name="RP2040Device.checkInternetViaLan" id="RP2040Device.checkInternetViaLan" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.checkInternetViaLan" />
       <keyword name="RP2040Device.connectToLan" id="RP2040Device.connectToLan" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.connectToLan" />
       <keyword name="RP2040Device.connectWifi" id="RP2040Device.connectWifi" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.connectWifi" />
+      <keyword name="RP2040Device.deactivateBluetoothInterface" id="RP2040Device.deactivateBluetoothInterface" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.deactivateBluetoothInterface" />
       <keyword name="RP2040Device.deactivateEthernet" id="RP2040Device.deactivateEthernet" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.deactivateEthernet" />
       <keyword name="RP2040Device.deactivateInterface" id="RP2040Device.deactivateInterface" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.deactivateInterface" />
       <keyword name="RP2040Device.deviceName" id="RP2040Device.deviceName" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.deviceName" />
@@ -14093,11 +14127,14 @@
       <keyword name="RP2040Device.disconnectWifi" id="RP2040Device.disconnectWifi" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.disconnectWifi" />
       <keyword name="RP2040Device.enableWebrepl" id="RP2040Device.enableWebrepl" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.enableWebrepl" />
       <keyword name="RP2040Device.forceInterrupt" id="RP2040Device.forceInterrupt" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.forceInterrupt" />
+      <keyword name="RP2040Device.getBluetoothStatus" id="RP2040Device.getBluetoothStatus" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.getBluetoothStatus" />
       <keyword name="RP2040Device.getConnectedClients" id="RP2040Device.getConnectedClients" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.getConnectedClients" />
+      <keyword name="RP2040Device.getDeviceScan" id="RP2040Device.getDeviceScan" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.getDeviceScan" />
       <keyword name="RP2040Device.getDocumentationUrl" id="RP2040Device.getDocumentationUrl" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.getDocumentationUrl" />
       <keyword name="RP2040Device.getDownloadMenuEntries" id="RP2040Device.getDownloadMenuEntries" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.getDownloadMenuEntries" />
       <keyword name="RP2040Device.getEthernetStatus" id="RP2040Device.getEthernetStatus" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.getEthernetStatus" />
       <keyword name="RP2040Device.getWifiData" id="RP2040Device.getWifiData" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.getWifiData" />
+      <keyword name="RP2040Device.hasBluetooth" id="RP2040Device.hasBluetooth" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.hasBluetooth" />
       <keyword name="RP2040Device.hasEthernet" id="RP2040Device.hasEthernet" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.hasEthernet" />
       <keyword name="RP2040Device.hasFlashMenuEntry" id="RP2040Device.hasFlashMenuEntry" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.hasFlashMenuEntry" />
       <keyword name="RP2040Device.hasNetworkTime" id="RP2040Device.hasNetworkTime" ref="eric7.MicroPython.Devices.RP2040Devices.html#RP2040Device.hasNetworkTime" />
@@ -19349,6 +19386,8 @@
       <keyword name="_is_eol_token" id="_is_eol_token" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.html#_is_eol_token" />
       <keyword name="_is_one_liner" id="_is_one_liner" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.html#_is_one_liner" />
       <keyword name="_list2string" id="_list2string" ref="eric7.Plugins.WizardPlugins.SetupWizard.SetupCfgUtilities.html#_list2string" />
+      <keyword name="_loadManufacturerIDs" id="_loadManufacturerIDs" ref="eric7.MicroPython.BluetoothDialogs.BluetoothAdvertisement.html#_loadManufacturerIDs" />
+      <keyword name="_loadServiceUUIDs" id="_loadServiceUUIDs" ref="eric7.MicroPython.BluetoothDialogs.BluetoothAdvertisement.html#_loadServiceUUIDs" />
       <keyword name="_main" id="_main" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.html#_main" />
       <keyword name="_parse_multi_options" id="_parse_multi_options" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.html#_parse_multi_options" />
       <keyword name="_percentReplacementFunc" id="_percentReplacementFunc" ref="eric7.Utilities.__init__.html#_percentReplacementFunc" />
@@ -19624,6 +19663,7 @@
       <keyword name="createMainWidget" id="createMainWidget" ref="eric7.eric7_hexeditor.html#createMainWidget" />
       <keyword name="createMainWidget" id="createMainWidget" ref="eric7.eric7_iconeditor.html#createMainWidget" />
       <keyword name="createMainWidget" id="createMainWidget" ref="eric7.eric7_pdf.html#createMainWidget" />
+      <keyword name="createMainWidget" id="createMainWidget" ref="eric7.eric7_pip.html#createMainWidget" />
       <keyword name="createMainWidget" id="createMainWidget" ref="eric7.eric7_plugininstall.html#createMainWidget" />
       <keyword name="createMainWidget" id="createMainWidget" ref="eric7.eric7_pluginrepository.html#createMainWidget" />
       <keyword name="createMainWidget" id="createMainWidget" ref="eric7.eric7_pluginuninstall.html#createMainWidget" />
@@ -19705,6 +19745,7 @@
       <keyword name="eric7_iconeditor (Module)" id="eric7_iconeditor (Module)" ref="eric7.eric7_iconeditor.html" />
       <keyword name="eric7_ide (Module)" id="eric7_ide (Module)" ref="eric7.eric7_ide.html" />
       <keyword name="eric7_pdf (Module)" id="eric7_pdf (Module)" ref="eric7.eric7_pdf.html" />
+      <keyword name="eric7_pip (Module)" id="eric7_pip (Module)" ref="eric7.eric7_pip.html" />
       <keyword name="eric7_plugininstall (Module)" id="eric7_plugininstall (Module)" ref="eric7.eric7_plugininstall.html" />
       <keyword name="eric7_pluginrepository (Module)" id="eric7_pluginrepository (Module)" ref="eric7.eric7_pluginrepository.html" />
       <keyword name="eric7_pluginuninstall (Module)" id="eric7_pluginuninstall (Module)" ref="eric7.eric7_pluginuninstall.html" />
@@ -20141,6 +20182,7 @@
       <keyword name="main" id="main" ref="eric7.eric7_iconeditor.html#main" />
       <keyword name="main" id="main" ref="eric7.eric7_ide.html#main" />
       <keyword name="main" id="main" ref="eric7.eric7_pdf.html#main" />
+      <keyword name="main" id="main" ref="eric7.eric7_pip.html#main" />
       <keyword name="main" id="main" ref="eric7.eric7_plugininstall.html#main" />
       <keyword name="main" id="main" ref="eric7.eric7_pluginrepository.html#main" />
       <keyword name="main" id="main" ref="eric7.eric7_pluginuninstall.html#main" />
@@ -20800,6 +20842,7 @@
       <file>eric7.PipInterface.PipPackageDetailsDialog.html</file>
       <file>eric7.PipInterface.PipPackagesInputDialog.html</file>
       <file>eric7.PipInterface.PipPackagesWidget.html</file>
+      <file>eric7.PipInterface.PipPackagesWindow.html</file>
       <file>eric7.PipInterface.PipVulnerabilityChecker.html</file>
       <file>eric7.PipInterface.pipdeptree.html</file>
       <file>eric7.PipInterface.piplicenses.html</file>
@@ -20814,9 +20857,11 @@
       <file>eric7.Plugins.AboutPlugin.AboutDialog.html</file>
       <file>eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html</file>
       <file>eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsCheckerDefaults.html</file>
+      <file>eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html</file>
       <file>eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsEnums.html</file>
       <file>eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFunctionVisitor.html</file>
       <file>eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsFutureVisitor.html</file>
+      <file>eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.html</file>
       <file>eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.translations.html</file>
       <file>eric7.Plugins.CheckerPlugins.CodeStyleChecker.AstUtilities.html</file>
       <file>eric7.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleAddBuiltinIgnoreDialog.html</file>
@@ -21709,6 +21754,7 @@
       <file>eric7.eric7_iconeditor.html</file>
       <file>eric7.eric7_ide.html</file>
       <file>eric7.eric7_pdf.html</file>
+      <file>eric7.eric7_pip.html</file>
       <file>eric7.eric7_plugininstall.html</file>
       <file>eric7.eric7_pluginrepository.html</file>
       <file>eric7.eric7_pluginuninstall.html</file>
--- a/src/eric7/Documentation/Source/eric7.MicroPython.BluetoothDialogs.BluetoothAdvertisement.html	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Documentation/Source/eric7.MicroPython.BluetoothDialogs.BluetoothAdvertisement.html	Sun Jul 02 17:39:33 2023 +0200
@@ -14,7 +14,7 @@
 <h3>Global Attributes</h3>
 
 <table>
-<tr><td>ADV_DIRECT_IND</td></tr><tr><td>ADV_IND</td></tr><tr><td>ADV_NONCONN_IND</td></tr><tr><td>ADV_SCAN_IND</td></tr><tr><td>ADV_TYPE_COMPLETE_NAME</td></tr><tr><td>ADV_TYPE_MANUFACTURER</td></tr><tr><td>ADV_TYPE_SHORT_NAME</td></tr><tr><td>ADV_TYPE_SVC_DATA</td></tr><tr><td>ADV_TYPE_TX_POWER_LEVEL</td></tr><tr><td>ADV_TYPE_UUID128_COMPLETE</td></tr><tr><td>ADV_TYPE_UUID128_INCOMPLETE</td></tr><tr><td>ADV_TYPE_UUID16_COMPLETE</td></tr><tr><td>ADV_TYPE_UUID16_INCOMPLETE</td></tr><tr><td>ADV_TYPE_UUID32_COMPLETE</td></tr><tr><td>ADV_TYPE_UUID32_INCOMPLETE</td></tr><tr><td>ManufacturerId</td></tr><tr><td>SCAN_RSP</td></tr>
+<tr><td>ADV_DIRECT_IND</td></tr><tr><td>ADV_IND</td></tr><tr><td>ADV_NONCONN_IND</td></tr><tr><td>ADV_SCAN_IND</td></tr><tr><td>ADV_TYPE_COMPLETE_NAME</td></tr><tr><td>ADV_TYPE_MANUFACTURER</td></tr><tr><td>ADV_TYPE_SHORT_NAME</td></tr><tr><td>ADV_TYPE_SVC_DATA</td></tr><tr><td>ADV_TYPE_TX_POWER_LEVEL</td></tr><tr><td>ADV_TYPE_UUID128_COMPLETE</td></tr><tr><td>ADV_TYPE_UUID128_INCOMPLETE</td></tr><tr><td>ADV_TYPE_UUID16_COMPLETE</td></tr><tr><td>ADV_TYPE_UUID16_INCOMPLETE</td></tr><tr><td>ADV_TYPE_UUID32_COMPLETE</td></tr><tr><td>ADV_TYPE_UUID32_INCOMPLETE</td></tr><tr><td>ManufacturerIDs</td></tr><tr><td>SCAN_RSP</td></tr><tr><td>ServiceIDs</td></tr>
 </table>
 <h3>Classes</h3>
 
@@ -28,7 +28,15 @@
 <h3>Functions</h3>
 
 <table>
-<tr><td>None</td></tr>
+
+<tr>
+<td><a href="#_loadManufacturerIDs">_loadManufacturerIDs</a></td>
+<td>Function to load the manufacturer IDs.</td>
+</tr>
+<tr>
+<td><a href="#_loadServiceUUIDs">_loadServiceUUIDs</a></td>
+<td>Function to load the service UUIDs.</td>
+</tr>
 </table>
 <hr />
 <hr />
@@ -320,8 +328,8 @@
 <dl>
 <dt>Return:</dt>
 <dd>
-list of tuples containing the advertised service ID and a
-            flag indicating a complete ID
+list of tuples containing the advertised service ID, the associated
+            service name (if available) and a flag indicating a complete ID
 </dd>
 </dl>
 <dl>
@@ -392,4 +400,24 @@
 </dl>
 <div align="right"><a href="#top">Up</a></div>
 <hr />
+<hr />
+<a NAME="_loadManufacturerIDs" ID="_loadManufacturerIDs"></a>
+<h2>_loadManufacturerIDs</h2>
+<b>_loadManufacturerIDs</b>(<i></i>)
+
+<p>
+    Function to load the manufacturer IDs.
+</p>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+<hr />
+<a NAME="_loadServiceUUIDs" ID="_loadServiceUUIDs"></a>
+<h2>_loadServiceUUIDs</h2>
+<b>_loadServiceUUIDs</b>(<i></i>)
+
+<p>
+    Function to load the service UUIDs.
+</p>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
 </body></html>
\ No newline at end of file
--- a/src/eric7/Documentation/Source/eric7.MicroPython.Devices.RP2040Devices.html	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Documentation/Source/eric7.MicroPython.Devices.RP2040Devices.html	Sun Jul 02 17:39:33 2023 +0200
@@ -96,6 +96,10 @@
 <td>Protected method to get the device code to set the time.</td>
 </tr>
 <tr>
+<td><a href="#RP2040Device.activateBluetoothInterface">activateBluetoothInterface</a></td>
+<td>Public method to activate the Bluetooth interface.</td>
+</tr>
+<tr>
 <td><a href="#RP2040Device.addDeviceMenuEntries">addDeviceMenuEntries</a></td>
 <td>Public method to add device specific entries to the given menu.</td>
 </tr>
@@ -136,6 +140,10 @@
 <td>Public method to connect a device to a WiFi network.</td>
 </tr>
 <tr>
+<td><a href="#RP2040Device.deactivateBluetoothInterface">deactivateBluetoothInterface</a></td>
+<td>Public method to deactivate the Bluetooth interface.</td>
+</tr>
+<tr>
 <td><a href="#RP2040Device.deactivateEthernet">deactivateEthernet</a></td>
 <td>Public method to deactivate the Ethernet interface of the connected device.</td>
 </tr>
@@ -168,10 +176,18 @@
 <td>Public method to determine the need for an interrupt when opening the serial connection.</td>
 </tr>
 <tr>
+<td><a href="#RP2040Device.getBluetoothStatus">getBluetoothStatus</a></td>
+<td>Public method to get Bluetooth status data of the connected board.</td>
+</tr>
+<tr>
 <td><a href="#RP2040Device.getConnectedClients">getConnectedClients</a></td>
 <td>Public method to get a list of connected clients.</td>
 </tr>
 <tr>
+<td><a href="#RP2040Device.getDeviceScan">getDeviceScan</a></td>
+<td>Public method to perform a Bluetooth device scan.</td>
+</tr>
+<tr>
 <td><a href="#RP2040Device.getDocumentationUrl">getDocumentationUrl</a></td>
 <td>Public method to get the device documentation URL.</td>
 </tr>
@@ -188,6 +204,10 @@
 <td>Public method to get data related to the current WiFi status.</td>
 </tr>
 <tr>
+<td><a href="#RP2040Device.hasBluetooth">hasBluetooth</a></td>
+<td>Public method to check the availability of Bluetooth.</td>
+</tr>
+<tr>
 <td><a href="#RP2040Device.hasEthernet">hasEthernet</a></td>
 <td>Public method to check the availability of Ethernet.</td>
 </tr>
@@ -355,6 +375,32 @@
 str
 </dd>
 </dl>
+<a NAME="RP2040Device.activateBluetoothInterface" ID="RP2040Device.activateBluetoothInterface"></a>
+<h4>RP2040Device.activateBluetoothInterface</h4>
+<b>activateBluetoothInterface</b>(<i></i>)
+
+<p>
+        Public method to activate the Bluetooth interface.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating the new state of the Bluetooth interface
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<dl>
+
+<dt>Raises <b>OSError</b>:</dt>
+<dd>
+raised to indicate an issue with the device
+</dd>
+</dl>
 <a NAME="RP2040Device.addDeviceMenuEntries" ID="RP2040Device.addDeviceMenuEntries"></a>
 <h4>RP2040Device.addDeviceMenuEntries</h4>
 <b>addDeviceMenuEntries</b>(<i>menu</i>)
@@ -558,6 +604,32 @@
 tuple of (bool, str)
 </dd>
 </dl>
+<a NAME="RP2040Device.deactivateBluetoothInterface" ID="RP2040Device.deactivateBluetoothInterface"></a>
+<h4>RP2040Device.deactivateBluetoothInterface</h4>
+<b>deactivateBluetoothInterface</b>(<i></i>)
+
+<p>
+        Public method to deactivate the Bluetooth interface.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating the new state of the Bluetooth interface
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<dl>
+
+<dt>Raises <b>OSError</b>:</dt>
+<dd>
+raised to indicate an issue with the device
+</dd>
+</dl>
 <a NAME="RP2040Device.deactivateEthernet" ID="RP2040Device.deactivateEthernet"></a>
 <h4>RP2040Device.deactivateEthernet</h4>
 <b>deactivateEthernet</b>(<i></i>)
@@ -735,6 +807,33 @@
 bool
 </dd>
 </dl>
+<a NAME="RP2040Device.getBluetoothStatus" ID="RP2040Device.getBluetoothStatus"></a>
+<h4>RP2040Device.getBluetoothStatus</h4>
+<b>getBluetoothStatus</b>(<i></i>)
+
+<p>
+        Public method to get Bluetooth status data of the connected board.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of tuples containing the translated status data label and
+            the associated value
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+list of tuples of (str, str)
+</dd>
+</dl>
+<dl>
+
+<dt>Raises <b>OSError</b>:</dt>
+<dd>
+raised to indicate an issue with the device
+</dd>
+</dl>
 <a NAME="RP2040Device.getConnectedClients" ID="RP2040Device.getConnectedClients"></a>
 <h4>RP2040Device.getConnectedClients</h4>
 <b>getConnectedClients</b>(<i></i>)
@@ -755,6 +854,34 @@
 tuple of ([(bytes, int)], str)
 </dd>
 </dl>
+<a NAME="RP2040Device.getDeviceScan" ID="RP2040Device.getDeviceScan"></a>
+<h4>RP2040Device.getDeviceScan</h4>
+<b>getDeviceScan</b>(<i>timeout=10</i>)
+
+<p>
+        Public method to perform a Bluetooth device scan.
+</p>
+<dl>
+
+<dt><i>timeout</i> (int (optional))</dt>
+<dd>
+duration of the device scan in seconds (defaults
+            to 10)
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+tuple containing a dictionary with the scan results and
+            an error string
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+tuple of (dict, str)
+</dd>
+</dl>
 <a NAME="RP2040Device.getDocumentationUrl" ID="RP2040Device.getDocumentationUrl"></a>
 <h4>RP2040Device.getDocumentationUrl</h4>
 <b>getDocumentationUrl</b>(<i></i>)
@@ -848,6 +975,32 @@
 raised to indicate an issue with the device
 </dd>
 </dl>
+<a NAME="RP2040Device.hasBluetooth" ID="RP2040Device.hasBluetooth"></a>
+<h4>RP2040Device.hasBluetooth</h4>
+<b>hasBluetooth</b>(<i></i>)
+
+<p>
+        Public method to check the availability of Bluetooth.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating the availability of Bluetooth
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<dl>
+
+<dt>Raises <b>OSError</b>:</dt>
+<dd>
+raised to indicate an issue with the device
+</dd>
+</dl>
 <a NAME="RP2040Device.hasEthernet" ID="RP2040Device.hasEthernet"></a>
 <h4>RP2040Device.hasEthernet</h4>
 <b>hasEthernet</b>(<i></i>)
--- a/src/eric7/Documentation/Source/eric7.PipInterface.PipPackagesWidget.html	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Documentation/Source/eric7.PipInterface.PipPackagesWidget.html	Sun Jul 02 17:39:33 2023 +0200
@@ -442,9 +442,9 @@
 <dd>
 reference to the global pip interface
 </dd>
-<dt><i>parent</i> (QWidget)</dt>
+<dt><i>parent</i> (QWidget (optional))</dt>
 <dd>
-reference to the parent widget
+reference to the parent widget (defaults to None)
 </dd>
 </dl>
 <a NAME="PipPackagesWidget.__aboutToShowPipMenu" ID="PipPackagesWidget.__aboutToShowPipMenu"></a>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/Documentation/Source/eric7.PipInterface.PipPackagesWindow.html	Sun Jul 02 17:39:33 2023 +0200
@@ -0,0 +1,84 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric7.PipInterface.PipPackagesWindow</title>
+<meta charset="UTF-8">
+<link rel="stylesheet" href="styles.css">
+</head>
+<body>
+<a NAME="top" ID="top"></a>
+<h1>eric7.PipInterface.PipPackagesWindow</h1>
+
+<p>
+Module implementing the standalone pip packages management window.
+</p>
+<h3>Global Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+
+<table>
+
+<tr>
+<td><a href="#PipPackagesWindow">PipPackagesWindow</a></td>
+<td>Main window class for the standalone  pip packages manager.</td>
+</tr>
+</table>
+<h3>Functions</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<hr />
+<hr />
+<a NAME="PipPackagesWindow" ID="PipPackagesWindow"></a>
+<h2>PipPackagesWindow</h2>
+
+<p>
+    Main window class for the standalone  pip packages manager.
+</p>
+<h3>Derived from</h3>
+EricMainWindow
+<h3>Class Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Class Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+
+<table>
+
+<tr>
+<td><a href="#PipPackagesWindow.__init__">PipPackagesWindow</a></td>
+<td>Constructor</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+
+<a NAME="PipPackagesWindow.__init__" ID="PipPackagesWindow.__init__"></a>
+<h4>PipPackagesWindow (Constructor)</h4>
+<b>PipPackagesWindow</b>(<i>parent=None</i>)
+
+<p>
+        Constructor
+</p>
+<dl>
+
+<dt><i>parent</i> (QWidget)</dt>
+<dd>
+reference to the parent widget
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- a/src/eric7/Documentation/Source/eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Documentation/Source/eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html	Sun Jul 02 17:39:33 2023 +0200
@@ -67,6 +67,10 @@
 <td>Private method to check the type annotation complexity.</td>
 </tr>
 <tr>
+<td><a href="#AnnotationsChecker.__checkAnnotationPep604">__checkAnnotationPep604</a></td>
+<td>Private method to check the use of typing.Union.</td>
+</tr>
+<tr>
 <td><a href="#AnnotationsChecker.__checkAnnotationsCoverage">__checkAnnotationsCoverage</a></td>
 <td>Private method to check for function annotation coverage.</td>
 </tr>
@@ -75,6 +79,10 @@
 <td>Private method to check the use of __future__ and typing imports.</td>
 </tr>
 <tr>
+<td><a href="#AnnotationsChecker.__checkDeprecatedTypingSymbols">__checkDeprecatedTypingSymbols</a></td>
+<td>Private method to check the use of deprecated 'typing' symbols.</td>
+</tr>
+<tr>
 <td><a href="#AnnotationsChecker.__checkFunctionAnnotations">__checkFunctionAnnotations</a></td>
 <td>Private method to check for function annotation issues.</td>
 </tr>
@@ -204,6 +212,13 @@
 <p>
         Private method to check the type annotation complexity.
 </p>
+<a NAME="AnnotationsChecker.__checkAnnotationPep604" ID="AnnotationsChecker.__checkAnnotationPep604"></a>
+<h4>AnnotationsChecker.__checkAnnotationPep604</h4>
+<b>__checkAnnotationPep604</b>(<i></i>)
+
+<p>
+        Private method to check the use of typing.Union.
+</p>
 <a NAME="AnnotationsChecker.__checkAnnotationsCoverage" ID="AnnotationsChecker.__checkAnnotationsCoverage"></a>
 <h4>AnnotationsChecker.__checkAnnotationsCoverage</h4>
 <b>__checkAnnotationsCoverage</b>(<i></i>)
@@ -218,6 +233,13 @@
 <p>
         Private method to check the use of __future__ and typing imports.
 </p>
+<a NAME="AnnotationsChecker.__checkDeprecatedTypingSymbols" ID="AnnotationsChecker.__checkDeprecatedTypingSymbols"></a>
+<h4>AnnotationsChecker.__checkDeprecatedTypingSymbols</h4>
+<b>__checkDeprecatedTypingSymbols</b>(<i></i>)
+
+<p>
+        Private method to check the use of deprecated 'typing' symbols.
+</p>
 <a NAME="AnnotationsChecker.__checkFunctionAnnotations" ID="AnnotationsChecker.__checkFunctionAnnotations"></a>
 <h4>AnnotationsChecker.__checkFunctionAnnotations</h4>
 <b>__checkFunctionAnnotations</b>(<i></i>)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/Documentation/Source/eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html	Sun Jul 02 17:39:33 2023 +0200
@@ -0,0 +1,314 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor</title>
+<meta charset="UTF-8">
+<link rel="stylesheet" href="styles.css">
+</head>
+<body>
+<a NAME="top" ID="top"></a>
+<h1>eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor</h1>
+
+<p>
+Module implementing a node visitor for checking the use of deprecated 'typing' symbols.
+</p>
+<h3>Global Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+
+<table>
+
+<tr>
+<td><a href="#AnnotationsDeprecationsVisitor">AnnotationsDeprecationsVisitor</a></td>
+<td>Class implementing a node visitor for checking the use of deprecated 'typing' symbols.</td>
+</tr>
+<tr>
+<td><a href="#AnnotationsFutureImportVisitor">AnnotationsFutureImportVisitor</a></td>
+<td>Class implementing a node visitor to dtermine, if the annotations __future__ import is present.</td>
+</tr>
+</table>
+<h3>Functions</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<hr />
+<hr />
+<a NAME="AnnotationsDeprecationsVisitor" ID="AnnotationsDeprecationsVisitor"></a>
+<h2>AnnotationsDeprecationsVisitor</h2>
+
+<p>
+    Class implementing a node visitor for checking the use of deprecated 'typing'
+    symbols.
+</p>
+<h3>Derived from</h3>
+ast.NodeVisitor
+<h3>Class Attributes</h3>
+
+<table>
+<tr><td>NameReplacements</td></tr><tr><td>visit_AsyncFunctionDef</td></tr>
+</table>
+<h3>Class Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+
+<table>
+
+<tr>
+<td><a href="#AnnotationsDeprecationsVisitor.__init__">AnnotationsDeprecationsVisitor</a></td>
+<td>Constructor</td>
+</tr>
+<tr>
+<td><a href="#AnnotationsDeprecationsVisitor.__checkDeprecation">__checkDeprecation</a></td>
+<td>Private method to check, if the given name is deprecated.</td>
+</tr>
+<tr>
+<td><a href="#AnnotationsDeprecationsVisitor.getIssues">getIssues</a></td>
+<td>Public method to get the list of detected issues.</td>
+</tr>
+<tr>
+<td><a href="#AnnotationsDeprecationsVisitor.visit_AnnAssign">visit_AnnAssign</a></td>
+<td>Public method to handle an ast.AnnAssign node.</td>
+</tr>
+<tr>
+<td><a href="#AnnotationsDeprecationsVisitor.visit_Attribute">visit_Attribute</a></td>
+<td>Public method to handle an ast.Attribute node.</td>
+</tr>
+<tr>
+<td><a href="#AnnotationsDeprecationsVisitor.visit_FunctionDef">visit_FunctionDef</a></td>
+<td>Public method to handle an ast.FunctionDef or ast.AsyncFunctionDef node.</td>
+</tr>
+<tr>
+<td><a href="#AnnotationsDeprecationsVisitor.visit_Import">visit_Import</a></td>
+<td>Public method to handle an ast.Import node.</td>
+</tr>
+<tr>
+<td><a href="#AnnotationsDeprecationsVisitor.visit_ImportFrom">visit_ImportFrom</a></td>
+<td>Public method to handle an ast.ImportFrom node.</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+
+<a NAME="AnnotationsDeprecationsVisitor.__init__" ID="AnnotationsDeprecationsVisitor.__init__"></a>
+<h4>AnnotationsDeprecationsVisitor (Constructor)</h4>
+<b>AnnotationsDeprecationsVisitor</b>(<i>exemptedList</i>)
+
+<p>
+        Constructor
+</p>
+<dl>
+
+<dt><i>exemptedList</i> (list of str)</dt>
+<dd>
+list of typing symbols exempted from checking
+</dd>
+</dl>
+<a NAME="AnnotationsDeprecationsVisitor.__checkDeprecation" ID="AnnotationsDeprecationsVisitor.__checkDeprecation"></a>
+<h4>AnnotationsDeprecationsVisitor.__checkDeprecation</h4>
+<b>__checkDeprecation</b>(<i>node, name</i>)
+
+<p>
+        Private method to check, if the given name is deprecated.
+</p>
+<dl>
+
+<dt><i>node</i> (ast.ImportFrom, ast.Attribute)</dt>
+<dd>
+reference to the node
+</dd>
+<dt><i>name</i> (str)</dt>
+<dd>
+name to be checked
+</dd>
+</dl>
+<a NAME="AnnotationsDeprecationsVisitor.getIssues" ID="AnnotationsDeprecationsVisitor.getIssues"></a>
+<h4>AnnotationsDeprecationsVisitor.getIssues</h4>
+<b>getIssues</b>(<i></i>)
+
+<p>
+        Public method to get the list of detected issues.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of detected issues consisting of a tuple of a reference to the node
+            and a tuple containing the used name and the suggested replacement
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+list of tuples of (ast.AST, (str, str))
+</dd>
+</dl>
+<a NAME="AnnotationsDeprecationsVisitor.visit_AnnAssign" ID="AnnotationsDeprecationsVisitor.visit_AnnAssign"></a>
+<h4>AnnotationsDeprecationsVisitor.visit_AnnAssign</h4>
+<b>visit_AnnAssign</b>(<i>node</i>)
+
+<p>
+        Public method to handle an ast.AnnAssign node.
+</p>
+<dl>
+
+<dt><i>node</i> (ast.AnnAssign)</dt>
+<dd>
+reference to the node to be handled
+</dd>
+</dl>
+<a NAME="AnnotationsDeprecationsVisitor.visit_Attribute" ID="AnnotationsDeprecationsVisitor.visit_Attribute"></a>
+<h4>AnnotationsDeprecationsVisitor.visit_Attribute</h4>
+<b>visit_Attribute</b>(<i>node</i>)
+
+<p>
+        Public method to handle an ast.Attribute node.
+</p>
+<dl>
+
+<dt><i>node</i> (ast.Attribute)</dt>
+<dd>
+reference to the node to be handled
+</dd>
+</dl>
+<a NAME="AnnotationsDeprecationsVisitor.visit_FunctionDef" ID="AnnotationsDeprecationsVisitor.visit_FunctionDef"></a>
+<h4>AnnotationsDeprecationsVisitor.visit_FunctionDef</h4>
+<b>visit_FunctionDef</b>(<i>node</i>)
+
+<p>
+        Public method to handle an ast.FunctionDef or ast.AsyncFunctionDef node.
+</p>
+<dl>
+
+<dt><i>node</i> (ast.FunctionDef or ast.AsyncFunctionDef)</dt>
+<dd>
+reference to the node to be handled
+</dd>
+</dl>
+<a NAME="AnnotationsDeprecationsVisitor.visit_Import" ID="AnnotationsDeprecationsVisitor.visit_Import"></a>
+<h4>AnnotationsDeprecationsVisitor.visit_Import</h4>
+<b>visit_Import</b>(<i>node</i>)
+
+<p>
+        Public method to handle an ast.Import node.
+</p>
+<dl>
+
+<dt><i>node</i> (ast.Import)</dt>
+<dd>
+reference to the node to be handled
+</dd>
+</dl>
+<a NAME="AnnotationsDeprecationsVisitor.visit_ImportFrom" ID="AnnotationsDeprecationsVisitor.visit_ImportFrom"></a>
+<h4>AnnotationsDeprecationsVisitor.visit_ImportFrom</h4>
+<b>visit_ImportFrom</b>(<i>node</i>)
+
+<p>
+        Public method to handle an ast.ImportFrom node.
+</p>
+<dl>
+
+<dt><i>node</i> (ast.ImportFrom)</dt>
+<dd>
+reference to the node to be handled
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+<hr />
+<a NAME="AnnotationsFutureImportVisitor" ID="AnnotationsFutureImportVisitor"></a>
+<h2>AnnotationsFutureImportVisitor</h2>
+
+<p>
+    Class implementing a node visitor to dtermine, if the annotations __future__
+    import is present.
+</p>
+<p>
+    This class is used to determine usage of annotations for Python 3.8.
+</p>
+<h3>Derived from</h3>
+ast.NodeVisitor
+<h3>Class Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Class Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+
+<table>
+
+<tr>
+<td><a href="#AnnotationsFutureImportVisitor.__init__">AnnotationsFutureImportVisitor</a></td>
+<td>Constructor</td>
+</tr>
+<tr>
+<td><a href="#AnnotationsFutureImportVisitor.futureImportPresent">futureImportPresent</a></td>
+<td>Public method to check, if a 'from __future__ import annotations' statement exists.</td>
+</tr>
+<tr>
+<td><a href="#AnnotationsFutureImportVisitor.visit_ImportFrom">visit_ImportFrom</a></td>
+<td>Public method to handle an ast.ImportFrom node.</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+
+<a NAME="AnnotationsFutureImportVisitor.__init__" ID="AnnotationsFutureImportVisitor.__init__"></a>
+<h4>AnnotationsFutureImportVisitor (Constructor)</h4>
+<b>AnnotationsFutureImportVisitor</b>(<i></i>)
+
+<p>
+        Constructor
+</p>
+<a NAME="AnnotationsFutureImportVisitor.futureImportPresent" ID="AnnotationsFutureImportVisitor.futureImportPresent"></a>
+<h4>AnnotationsFutureImportVisitor.futureImportPresent</h4>
+<b>futureImportPresent</b>(<i></i>)
+
+<p>
+        Public method to check, if a 'from __future__ import annotations' statement
+        exists.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating the existence of the import statement
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<a NAME="AnnotationsFutureImportVisitor.visit_ImportFrom" ID="AnnotationsFutureImportVisitor.visit_ImportFrom"></a>
+<h4>AnnotationsFutureImportVisitor.visit_ImportFrom</h4>
+<b>visit_ImportFrom</b>(<i>node</i>)
+
+<p>
+        Public method to handle an ast.ImportFrom node.
+</p>
+<dl>
+
+<dt><i>node</i> (ast.ImportFrom)</dt>
+<dd>
+reference to the node to be handled
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/Documentation/Source/eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.html	Sun Jul 02 17:39:33 2023 +0200
@@ -0,0 +1,172 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor</title>
+<meta charset="UTF-8">
+<link rel="stylesheet" href="styles.css">
+</head>
+<body>
+<a NAME="top" ID="top"></a>
+<h1>eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor</h1>
+
+<p>
+Module implementing a node visitor for checking the import of typing.Union.
+</p>
+<h3>Global Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+
+<table>
+
+<tr>
+<td><a href="#AnnotationsUnionVisitor">AnnotationsUnionVisitor</a></td>
+<td>Class implementing a node visitor for checking the import of typing.Union.</td>
+</tr>
+</table>
+<h3>Functions</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<hr />
+<hr />
+<a NAME="AnnotationsUnionVisitor" ID="AnnotationsUnionVisitor"></a>
+<h2>AnnotationsUnionVisitor</h2>
+
+<p>
+    Class implementing a node visitor for checking the import of typing.Union.
+</p>
+<h3>Derived from</h3>
+ast.NodeVisitor
+<h3>Class Attributes</h3>
+
+<table>
+<tr><td>AttributeName</td></tr><tr><td>FullName</td></tr><tr><td>ModuleName</td></tr>
+</table>
+<h3>Class Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+
+<table>
+
+<tr>
+<td><a href="#AnnotationsUnionVisitor.__init__">AnnotationsUnionVisitor</a></td>
+<td>Constructor</td>
+</tr>
+<tr>
+<td><a href="#AnnotationsUnionVisitor.getIssues">getIssues</a></td>
+<td>Public method to get the collected Union nodes.</td>
+</tr>
+<tr>
+<td><a href="#AnnotationsUnionVisitor.visit_Attribute">visit_Attribute</a></td>
+<td>Public method to handle an ast.Attribute node.</td>
+</tr>
+<tr>
+<td><a href="#AnnotationsUnionVisitor.visit_Import">visit_Import</a></td>
+<td>Public method to handle an ast.Import node.</td>
+</tr>
+<tr>
+<td><a href="#AnnotationsUnionVisitor.visit_ImportFrom">visit_ImportFrom</a></td>
+<td>Public method to handle an ast.ImportFrom node.</td>
+</tr>
+<tr>
+<td><a href="#AnnotationsUnionVisitor.visit_Subscript">visit_Subscript</a></td>
+<td>Public method to handle an ast.Subscript node.</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+
+<a NAME="AnnotationsUnionVisitor.__init__" ID="AnnotationsUnionVisitor.__init__"></a>
+<h4>AnnotationsUnionVisitor (Constructor)</h4>
+<b>AnnotationsUnionVisitor</b>(<i></i>)
+
+<p>
+        Constructor
+</p>
+<a NAME="AnnotationsUnionVisitor.getIssues" ID="AnnotationsUnionVisitor.getIssues"></a>
+<h4>AnnotationsUnionVisitor.getIssues</h4>
+<b>getIssues</b>(<i></i>)
+
+<p>
+        Public method to get the collected Union nodes.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of collected nodes
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+list of ast.AST
+</dd>
+</dl>
+<a NAME="AnnotationsUnionVisitor.visit_Attribute" ID="AnnotationsUnionVisitor.visit_Attribute"></a>
+<h4>AnnotationsUnionVisitor.visit_Attribute</h4>
+<b>visit_Attribute</b>(<i>node</i>)
+
+<p>
+        Public method to handle an ast.Attribute node.
+</p>
+<dl>
+
+<dt><i>node</i> (ast.Attribute)</dt>
+<dd>
+reference to the node to be handled
+</dd>
+</dl>
+<a NAME="AnnotationsUnionVisitor.visit_Import" ID="AnnotationsUnionVisitor.visit_Import"></a>
+<h4>AnnotationsUnionVisitor.visit_Import</h4>
+<b>visit_Import</b>(<i>node</i>)
+
+<p>
+        Public method to handle an ast.Import node.
+</p>
+<dl>
+
+<dt><i>node</i> (ast.Import)</dt>
+<dd>
+reference to the node to be handled
+</dd>
+</dl>
+<a NAME="AnnotationsUnionVisitor.visit_ImportFrom" ID="AnnotationsUnionVisitor.visit_ImportFrom"></a>
+<h4>AnnotationsUnionVisitor.visit_ImportFrom</h4>
+<b>visit_ImportFrom</b>(<i>node</i>)
+
+<p>
+        Public method to handle an ast.ImportFrom node.
+</p>
+<dl>
+
+<dt><i>node</i> (ast.ImportFrom)</dt>
+<dd>
+reference to the node to be handled
+</dd>
+</dl>
+<a NAME="AnnotationsUnionVisitor.visit_Subscript" ID="AnnotationsUnionVisitor.visit_Subscript"></a>
+<h4>AnnotationsUnionVisitor.visit_Subscript</h4>
+<b>visit_Subscript</b>(<i>node</i>)
+
+<p>
+        Public method to handle an ast.Subscript node.
+</p>
+<dl>
+
+<dt><i>node</i> (ast.Subscript)</dt>
+<dd>
+reference to the node to be handled
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- a/src/eric7/Documentation/Source/eric7.Plugins.CheckerPlugins.CodeStyleChecker.Miscellaneous.MiscellaneousChecker.html	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Documentation/Source/eric7.Plugins.CheckerPlugins.CodeStyleChecker.Miscellaneous.MiscellaneousChecker.html	Sun Jul 02 17:39:33 2023 +0200
@@ -1834,6 +1834,10 @@
 <td>Private method to check for print statements.</td>
 </tr>
 <tr>
+<td><a href="#MiscellaneousChecker.__checkProperties">__checkProperties</a></td>
+<td>Private method to check for issue with property related methods.</td>
+</tr>
+<tr>
 <td><a href="#MiscellaneousChecker.__checkReturn">__checkReturn</a></td>
 <td>Private method to check return statements.</td>
 </tr>
@@ -2031,6 +2035,13 @@
 <p>
         Private method to check for print statements.
 </p>
+<a NAME="MiscellaneousChecker.__checkProperties" ID="MiscellaneousChecker.__checkProperties"></a>
+<h4>MiscellaneousChecker.__checkProperties</h4>
+<b>__checkProperties</b>(<i></i>)
+
+<p>
+        Private method to check for issue with property related methods.
+</p>
 <a NAME="MiscellaneousChecker.__checkReturn" ID="MiscellaneousChecker.__checkReturn"></a>
 <h4>MiscellaneousChecker.__checkReturn</h4>
 <b>__checkReturn</b>(<i></i>)
--- a/src/eric7/Documentation/Source/eric7.Preferences.ConfigurationDialog.html	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Documentation/Source/eric7.Preferences.ConfigurationDialog.html	Sun Jul 02 17:39:33 2023 +0200
@@ -251,7 +251,7 @@
 <h3>Class Attributes</h3>
 
 <table>
-<tr><td>DEFAULTMODE</td></tr><tr><td>EDITORMODE</td></tr><tr><td>HEXEDITORMODE</td></tr><tr><td>PDFVIEWERMODE</td></tr><tr><td>TRAYSTARTERMODE</td></tr><tr><td>WEBBROWSERMODE</td></tr>
+<tr><td>DEFAULTMODE</td></tr><tr><td>EDITORMODE</td></tr><tr><td>HEXEDITORMODE</td></tr><tr><td>PDFVIEWERMODE</td></tr><tr><td>PIPMANAGERMODE</td></tr><tr><td>TRAYSTARTERMODE</td></tr><tr><td>WEBBROWSERMODE</td></tr>
 </table>
 <h3>Class Methods</h3>
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/Documentation/Source/eric7.eric7_pip.html	Sun Jul 02 17:39:33 2023 +0200
@@ -0,0 +1,59 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric7.eric7_pip</title>
+<meta charset="UTF-8">
+<link rel="stylesheet" href="styles.css">
+</head>
+<body>
+<a NAME="top" ID="top"></a>
+<h1>eric7.eric7_pip</h1>
+
+<p>
+eric pip Packages Manager.
+</p>
+<p>
+This is the main Python script to manage Python packages with 'pip' from
+outside of the IDE.
+</p>
+<h3>Global Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Functions</h3>
+
+<table>
+
+<tr>
+<td><a href="#createMainWidget">createMainWidget</a></td>
+<td></td>
+</tr>
+<tr>
+<td><a href="#main">main</a></td>
+<td>Main entry point into the application.</td>
+</tr>
+</table>
+<hr />
+<hr />
+<a NAME="createMainWidget" ID="createMainWidget"></a>
+<h2>createMainWidget</h2>
+<b>createMainWidget</b>(<i>argv</i>)
+
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+<hr />
+<a NAME="main" ID="main"></a>
+<h2>main</h2>
+<b>main</b>(<i></i>)
+
+<p>
+    Main entry point into the application.
+</p>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- a/src/eric7/Documentation/Source/index-eric7.PipInterface.html	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Documentation/Source/index-eric7.PipInterface.html	Sun Jul 02 17:39:33 2023 +0200
@@ -48,6 +48,10 @@
 <td>Module implementing the pip packages management widget.</td>
 </tr>
 <tr>
+<td><a href="eric7.PipInterface.PipPackagesWindow.html">PipPackagesWindow</a></td>
+<td>Module implementing the standalone pip packages management window.</td>
+</tr>
+<tr>
 <td><a href="eric7.PipInterface.PipVulnerabilityChecker.html">PipVulnerabilityChecker</a></td>
 <td>Module implementing a Python package vulnerability checker.</td>
 </tr>
--- a/src/eric7/Documentation/Source/index-eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.html	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Documentation/Source/index-eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.html	Sun Jul 02 17:39:33 2023 +0200
@@ -24,6 +24,10 @@
 <td>Module implementing complex defaults for the annotations checker.</td>
 </tr>
 <tr>
+<td><a href="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsDeprecationsVisitor.html">AnnotationsDeprecationsVisitor</a></td>
+<td>Module implementing a node visitor for checking the use of deprecated 'typing' symbols.</td>
+</tr>
+<tr>
 <td><a href="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsEnums.html">AnnotationsEnums</a></td>
 <td>Module implementing some enums for function type annotations.</td>
 </tr>
@@ -36,6 +40,10 @@
 <td>Module implementing a node visitor for function type annotations.</td>
 </tr>
 <tr>
+<td><a href="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsUnionVisitor.html">AnnotationsUnionVisitor</a></td>
+<td>Module implementing a node visitor for checking the import of typing.Union.</td>
+</tr>
+<tr>
 <td><a href="eric7.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.translations.html">translations</a></td>
 <td>Module implementing message translations for the code style plugin messages (code annotations part).</td>
 </tr>
--- a/src/eric7/Documentation/Source/index-eric7.html	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Documentation/Source/index-eric7.html	Sun Jul 02 17:39:33 2023 +0200
@@ -260,6 +260,10 @@
 <td>eric PDF Viewer.</td>
 </tr>
 <tr>
+<td><a href="eric7.eric7_pip.html">eric7_pip</a></td>
+<td>eric pip Packages Manager.</td>
+</tr>
+<tr>
 <td><a href="eric7.eric7_plugininstall.html">eric7_plugininstall</a></td>
 <td>eric Plugin Installer.</td>
 </tr>
--- a/src/eric7/EricWidgets/EricMessageBox.py	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/EricWidgets/EricMessageBox.py	Sun Jul 02 17:39:33 2023 +0200
@@ -152,7 +152,7 @@
         return messageBox.standardButton(clickedButton)
 
 
-# the about functions are here for consistancy
+# the about functions are here for consistency
 about = QMessageBox.about
 aboutQt = QMessageBox.aboutQt
 
--- a/src/eric7/MicroPython/BluetoothDialogs/BluetoothAdvertisement.py	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/MicroPython/BluetoothDialogs/BluetoothAdvertisement.py	Sun Jul 02 17:39:33 2023 +0200
@@ -7,9 +7,13 @@
 Module implementing a class to parse and store the Bluetooth device advertisement data.
 """
 
+import contextlib
+import os
 import struct
 import uuid
 
+import yaml
+
 ADV_IND = 0
 ADV_DIRECT_IND = 1
 ADV_SCAN_IND = 2
@@ -28,15 +32,43 @@
 ADV_TYPE_SVC_DATA = 0x16
 ADV_TYPE_MANUFACTURER = 0xFF
 
-ManufacturerId = {
-    0x0006: "Microsoft",
-    0x004C: "Apple, Inc.",
-    0x0075: "Samsung Electronics Co. Ltd.",
-    0x0087: "Garmin International Inc.",
-    0x00E0: "Google",
-    0x0822: "adafruit industries",
-    0xC688: "Logitech, Inc.",
-}
+ManufacturerIDs = None
+ServiceIDs = None
+
+
+def _loadManufacturerIDs():
+    """
+    Function to load the manufacturer IDs.
+    """
+    global ManufacturerIDs
+
+    idsFile = os.path.join(
+        os.path.dirname(__file__), "data", "company_identifiers.yaml"
+    )
+    with contextlib.suppress(OSError):
+        with open(idsFile, "r") as f:
+            idsDict = yaml.safe_load(f)
+
+        ManufacturerIDs = {
+            entry["value"]: entry["name"] for entry in idsDict["company_identifiers"]
+        }
+
+
+def _loadServiceUUIDs():
+    """
+    Function to load the service UUIDs.
+    """
+    global ServiceIDs
+
+    ServiceIDs = {}
+
+    for uuidFilename in ("member_uuids.yaml", "sdo_uuids.yaml", "service_uuids.yaml"):
+        uuidFilepath = os.path.join(os.path.dirname(__file__), "data", uuidFilename)
+        with contextlib.suppress(OSError):
+            with open(uuidFilepath, "r") as f:
+                uuidDict = yaml.safe_load(f)
+
+            ServiceIDs.update({u["uuid"]: u["name"] for u in uuidDict["uuids"]})
 
 
 class BluetoothAdvertisement:
@@ -101,7 +133,7 @@
         """
         # Advertising payloads are repeated packets of the following form:
         #   1 byte data length (N + 1)
-        #   1 byte type (see constants below)
+        #   1 byte type (see constants at top)
         #   N bytes type-specific data
         for payload in (self.__advData, self.__respData):
             if not payload:
@@ -206,34 +238,39 @@
         """
         Public method to get the service IDs.
 
-        @return list of tuples containing the advertised service ID and a
-            flag indicating a complete ID
+        @return list of tuples containing the advertised service ID, the associated
+            service name (if available) and a flag indicating a complete ID
         @rtype list of tuple of (str, bool)
         """
+        if ServiceIDs is None:
+            _loadServiceUUIDs()
+
         result = []
 
         for u in self.__decodeField(ADV_TYPE_UUID16_INCOMPLETE):
             for v in self.__splitBytes(u, 2):
-                result.append((hex(struct.unpack("<H", v)[0]), False))
+                uid = struct.unpack("<H", v)[0]
+                result.append((hex(uid), ServiceIDs.get(uid, ""), False))
         for u in self.__decodeField(ADV_TYPE_UUID16_COMPLETE):
             for v in self.__splitBytes(u, 2):
-                result.append((hex(struct.unpack("<H", v)[0]), True))
+                uid = struct.unpack("<H", v)[0]
+                result.append((hex(uid), ServiceIDs.get(uid, ""), False))
 
         for u in self.__decodeField(ADV_TYPE_UUID32_INCOMPLETE):
             for v in self.__splitBytes(u, 4):
-                result.append((hex(struct.unpack("<I", v)), False))
+                result.append((hex(struct.unpack("<I", v)), "", False))
         for u in self.__decodeField(ADV_TYPE_UUID32_COMPLETE):
             for v in self.__splitBytes(u, 4):
-                result.append((hex(struct.unpack("<I", v)), True))
+                result.append((hex(struct.unpack("<I", v)), "", True))
 
         for u in self.__decodeField(ADV_TYPE_UUID128_INCOMPLETE):
             for v in self.__splitBytes(u, 16):
                 uid = uuid.UUID(bytes=bytes(reversed(v)))
-                result.append((str(uid), False))
+                result.append((str(uid), "", False))
         for u in self.__decodeField(ADV_TYPE_UUID128_COMPLETE):
             for v in self.__splitBytes(u, 16):
                 uid = uuid.UUID(bytes=bytes(reversed(v)))
-                result.append((str(uid), True))
+                result.append((str(uid), "", True))
 
         return result
 
@@ -250,6 +287,9 @@
             name
         @rtype tuple of (int, bytes, str)
         """
+        if ManufacturerIDs is None:
+            _loadManufacturerIDs()
+
         result = []
         for u in self.__decodeField(ADV_TYPE_MANUFACTURER):
             if len(u) < 2:
@@ -257,7 +297,7 @@
 
             m = struct.unpack("<H", u[0:2])[0]
             if filterId is None or m == filterId:
-                name = ManufacturerId.get(m, "") if withName else None
+                name = ManufacturerIDs.get(m, "") if withName else None
                 result.append((m, u[2:], name))
         return result
 
--- a/src/eric7/MicroPython/BluetoothDialogs/BluetoothScanWindow.py	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/MicroPython/BluetoothDialogs/BluetoothScanWindow.py	Sun Jul 02 17:39:33 2023 +0200
@@ -86,19 +86,30 @@
                 itm.setTextAlignment(1, Qt.AlignmentFlag.AlignHCenter)
                 itm.setTextAlignment(2, Qt.AlignmentFlag.AlignHCenter)
 
-                for service, isComplete in res.services:
-                    if len(service) == 6:
+                for serviceID, serviceName, isComplete in res.services:
+                    if len(serviceID) == 6:
                         bits = 16
-                    elif len(service) == 10:
+                    elif len(serviceID) == 10:
                         bits = 32
                     else:
                         bits = 128
                     template = (
-                        self.tr("Complete {0}-bit Service UUID: {1}")
+                        self.tr("Complete {0}-bit Service UUID: {1}{2}")
                         if isComplete
-                        else self.tr("Incomplete {0}-bit Service UUID: {1}")
+                        else self.tr("Incomplete {0}-bit Service UUID: {1}{2}")
                     )
-                    citm = QTreeWidgetItem(itm, [template.format(bits, service)])
+                    citm = QTreeWidgetItem(
+                        itm,
+                        [
+                            template.format(
+                                bits,
+                                serviceID,
+                                self.tr(" - {0}").format(serviceName)
+                                if serviceName
+                                else "",
+                            )
+                        ],
+                    )
                     citm.setFirstColumnSpanned(True)
 
                 seenMIds = []
@@ -107,7 +118,7 @@
                         citm = QTreeWidgetItem(
                             itm,
                             [
-                                self.tr("Manufacturer ID: 0x{0:x} ({1})").format(
+                                self.tr("Manufacturer ID: 0x{0:x} - {1}").format(
                                     mid, mname
                                 )
                                 if bool(mname)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/MicroPython/BluetoothDialogs/data/company_identifiers.yaml	Sun Jul 02 17:39:33 2023 +0200
@@ -0,0 +1,9725 @@
+company_identifiers:
+
+  - value: 0x0CA8
+    name: 'Sonas, Inc.'
+
+  - value: 0x0CA7
+    name: 'Verve InfoTec Pty Ltd'
+
+  - value: 0x0CA6
+    name: 'Megger Ltd'
+
+  - value: 0x0CA5
+    name: 'Princess Cruise Lines, Ltd.'
+
+  - value: 0x0CA4
+    name: 'MITSUBISHI ELECTRIC LIGHTING CO, LTD'
+
+  - value: 0x0CA3
+    name: 'MAQUET GmbH'
+
+  - value: 0x0CA2
+    name: 'XSENSE LTD'
+
+  - value: 0x0CA1
+    name: 'YAMAHA MOTOR CO.,LTD.'
+
+  - value: 0x0CA0
+    name: 'BIGBEN'
+
+  - value: 0x0C9F
+    name: 'Dragonfly Energy Corp.'
+
+  - value: 0x0C9E
+    name: 'ECCEL CORPORATION SAS'
+
+  - value: 0x0C9D
+    name: 'Ribbiot, INC.'
+
+  - value: 0x0C9C
+    name: 'Sunstone-RTLS Ipari Szolgaltato Korlatolt Felelossegu Tarsasag'
+
+  - value: 0x0C9B
+    name: 'NTT sonority, Inc.'
+
+  - value: 0x0C9A
+    name: 'ALF Inc.'
+
+  - value: 0x0C99
+    name: 'Vire Health Oy'
+
+  - value: 0x0C98
+    name: 'MiX Telematics International (PTY) LTD'
+
+  - value: 0x0C97
+    name: 'Deako'
+
+  - value: 0x0C96
+    name: 'H+B Hightech GmbH'
+
+  - value: 0x0C95
+    name: 'Gemstone Lights Canada Ltd.'
+
+  - value: 0x0C94
+    name: 'Baxter Healthcare Corporation'
+
+  - value: 0x0C93
+    name: 'Movesense Oy'
+
+  - value: 0x0C92
+    name: 'Kesseböhmer Ergonomietechnik GmbH'
+
+  - value: 0x0C91
+    name: 'Yashu Systems'
+
+  - value: 0x0C90
+    name: 'WESCO AG'
+
+  - value: 0x0C8F
+    name: 'Radar Automobile Sales(Shandong)Co.,Ltd.'
+
+  - value: 0x0C8E
+    name: 'Technocon Engineering Ltd.'
+
+  - value: 0x0C8D
+    name: 'tonies GmbH'
+
+  - value: 0x0C8C
+    name: 'T-Mobile USA'
+
+  - value: 0x0C8B
+    name: 'Heavys Inc'
+
+  - value: 0x0C8A
+    name: 'ARTISTIC&CO.GLOBAL Ltd.'
+
+  - value: 0x0C89
+    name: 'AGZZX OPTOELECTRONICS TECHNOLOGY CO., LTD'
+
+  - value: 0x0C88
+    name: 'Nextivity Inc.'
+
+  - value: 0x0C87
+    name: 'Weltek Technologies Company Limited'
+
+  - value: 0x0C86
+    name: 'Qingdao Eastsoft Communication Technology Co.,Ltd'
+
+  - value: 0x0C85
+    name: 'Amlogic, Inc.'
+
+  - value: 0x0C84
+    name: 'MAXON INDUSTRIES, INC.'
+
+  - value: 0x0C83
+    name: 'Watchdog Systems LLC'
+
+  - value: 0x0C82
+    name: 'NACON'
+
+  - value: 0x0C81
+    name: 'Carrier Corporation'
+
+  - value: 0x0C80
+    name: 'CARDIOID - TECHNOLOGIES, LDA'
+
+  - value: 0x0C7F
+    name: 'Rochester Sensors, LLC'
+
+  - value: 0x0C7E
+    name: 'BOOMING OF THINGS'
+
+  - value: 0x0C7D
+    name: '3ALogics, Inc.'
+
+  - value: 0x0C7C
+    name: 'Mopeka Products LLC'
+
+  - value: 0x0C7B
+    name: 'PT SADAMAYA GRAHA TEKNOLOGI'
+
+  - value: 0x0C7A
+    name: 'Triductor Technology (Suzhou), Inc.'
+
+  - value: 0x0C79
+    name: 'Zhuhai Smartlink Technology Co., Ltd'
+
+  - value: 0x0C78
+    name: 'CHARGTRON IOT PRIVATE LIMITED'
+
+  - value: 0x0C77
+    name: 'TEAC Corporation'
+
+  - value: 0x0C76
+    name: 'Shenzhen Gwell Times Technology Co. , Ltd'
+
+  - value: 0x0C75
+    name: 'Embedded Engineering Solutions LLC'
+
+  - value: 0x0C74
+    name: 'yupiteru'
+
+  - value: 0x0C73
+    name: 'Truma Gerätetechnik GmbH & Co. KG'
+
+  - value: 0x0C72
+    name: 'StreetCar ORV, LLC'
+
+  - value: 0x0C71
+    name: 'BitGreen Technolabz (OPC) Private Limited'
+
+  - value: 0x0C70
+    name: 'SCARAB SOLUTIONS LTD'
+
+  - value: 0x0C6F
+    name: 'Parakey AB'
+
+  - value: 0x0C6E
+    name: 'Sensa LLC'
+
+  - value: 0x0C6D
+    name: 'Fidure Corp.'
+
+  - value: 0x0C6C
+    name: 'SNIFF LOGIC LTD'
+
+  - value: 0x0C6B
+    name: 'GILSON SAS'
+
+  - value: 0x0C6A
+    name: 'CONSORCIO TRUST CONTROL - NETTEL'
+
+  - value: 0x0C69
+    name: 'BLITZ electric motors. LTD'
+
+  - value: 0x0C68
+    name: 'Emerja Corporation'
+
+  - value: 0x0C67
+    name: 'TRACKTING S.R.L.'
+
+  - value: 0x0C66
+    name: 'DEN Smart Home B.V.'
+
+  - value: 0x0C65
+    name: 'WAKO CO,.LTD'
+
+  - value: 0x0C64
+    name: 'dormakaba Holding AG'
+
+  - value: 0x0C63
+    name: 'phg Peter Hengstler GmbH + Co. KG'
+
+  - value: 0x0C62
+    name: 'Phiaton Corporation'
+
+  - value: 0x0C61
+    name: 'NNOXX, Inc'
+
+  - value: 0x0C60
+    name: 'KEBA Energy Automation GmbH'
+
+  - value: 0x0C5F
+    name: 'Nanjing Linkpower Microelectronics Co.,Ltd'
+
+  - value: 0x0C5E
+    name: 'BlueID GmbH'
+
+  - value: 0x0C5D
+    name: 'StepUp Solutions ApS'
+
+  - value: 0x0C5C
+    name: 'MGM WIRELESSS HOLDINGS PTY LTD'
+
+  - value: 0x0C5B
+    name: 'Alban Giacomo S.P.A.'
+
+  - value: 0x0C5A
+    name: 'Lockswitch Sdn Bhd'
+
+  - value: 0x0C59
+    name: 'CYBERDYNE Inc.'
+
+  - value: 0x0C58
+    name: 'Hykso Inc.'
+
+  - value: 0x0C57
+    name: 'UNEEG medical A/S'
+
+  - value: 0x0C56
+    name: 'Rheem Sales Company, Inc.'
+
+  - value: 0x0C55
+    name: 'Zintouch B.V.'
+
+  - value: 0x0C54
+    name: 'HiViz Lighting, Inc.'
+
+  - value: 0x0C53
+    name: 'Taco, Inc.'
+
+  - value: 0x0C52
+    name: 'ESCEA LIMITED'
+
+  - value: 0x0C51
+    name: 'INNOVA S.R.L.'
+
+  - value: 0x0C50
+    name: 'Imostar Technologies Inc.'
+
+  - value: 0x0C4F
+    name: 'SharkNinja Operating LLC'
+
+  - value: 0x0C4E
+    name: 'Tactile Engineering, Inc.'
+
+  - value: 0x0C4D
+    name: 'Seekwave Technology Co.,ltd.'
+
+  - value: 0x0C4C
+    name: 'Orpyx Medical Technologies Inc.'
+
+  - value: 0x0C4B
+    name: 'ADTRAN, Inc.'
+
+  - value: 0x0C4A
+    name: 'atSpiro ApS'
+
+  - value: 0x0C49
+    name: 'twopounds gmbh'
+
+  - value: 0x0C48
+    name: 'VALEO MANAGEMENT SERVICES'
+
+  - value: 0x0C47
+    name: 'Epsilon Electronics,lnc'
+
+  - value: 0x0C46
+    name: 'Granwin IoT Technology (Guangzhou) Co.,Ltd'
+
+  - value: 0x0C45
+    name: 'Brose Verwaltung SE, Bamberg'
+
+  - value: 0x0C44
+    name: 'ONCELABS LLC'
+
+  - value: 0x0C43
+    name: 'Berlinger & Co. AG'
+
+  - value: 0x0C42
+    name: 'Heath Consultants Inc.'
+
+  - value: 0x0C41
+    name: 'Control Solutions LLC'
+
+  - value: 0x0C40
+    name: 'HORIBA, Ltd.'
+
+  - value: 0x0C3F
+    name: 'Stinger Equipment, Inc.'
+
+  - value: 0x0C3E
+    name: 'BELLDESIGN Inc.'
+
+  - value: 0x0C3D
+    name: 'Wrmth Corp.'
+
+  - value: 0x0C3C
+    name: 'Classified Cycling'
+
+  - value: 0x0C3B
+    name: 'ORB Innovations Ltd'
+
+  - value: 0x0C3A
+    name: 'Equinosis, LLC'
+
+  - value: 0x0C39
+    name: 'TIGER CORPORATION'
+
+  - value: 0x0C38
+    name: 'Noritz Corporation.'
+
+  - value: 0x0C37
+    name: 'SignalQuest, LLC'
+
+  - value: 0x0C36
+    name: 'Cosmicnode BV'
+
+  - value: 0x0C35
+    name: 'Thermokon-Sensortechnik GmbH'
+
+  - value: 0x0C34
+    name: 'BYD Company Limited'
+
+  - value: 0x0C33
+    name: 'Exeger Operations AB'
+
+  - value: 0x0C32
+    name: 'Xian Yisuobao Electronic Technology Co., Ltd.'
+
+  - value: 0x0C31
+    name: 'KINDOO LLP'
+
+  - value: 0x0C30
+    name: 'McIntosh Group Inc'
+
+  - value: 0x0C2F
+    name: 'BEEHERO, INC.'
+
+  - value: 0x0C2E
+    name: 'Easee AS'
+
+  - value: 0x0C2D
+    name: 'OTF Product Sourcing, LLC'
+
+  - value: 0x0C2C
+    name: 'Zeku Technology (Shanghai) Corp., Ltd.'
+
+  - value: 0x0C2B
+    name: 'GigaDevice Semiconductor Inc.'
+
+  - value: 0x0C2A
+    name: 'Caresix Inc.'
+
+  - value: 0x0C29
+    name: 'DENSO AIRCOOL CORPORATION'
+
+  - value: 0x0C28
+    name: 'Embecta Corp.'
+
+  - value: 0x0C27
+    name: 'Pal Electronics'
+
+  - value: 0x0C26
+    name: 'Performance Electronics, Ltd.'
+
+  - value: 0x0C25
+    name: 'JURA Elektroapparate AG'
+
+  - value: 0x0C24
+    name: 'SMARTD TECHNOLOGIES INC.'
+
+  - value: 0x0C23
+    name: 'KEYTEC,Inc.'
+
+  - value: 0x0C22
+    name: 'Glamo Inc.'
+
+  - value: 0x0C21
+    name: 'Foshan Viomi Electrical Technology Co., Ltd'
+
+  - value: 0x0C20
+    name: 'COMELIT GROUP S.P.A.'
+
+  - value: 0x0C1F
+    name: 'LVI Co.'
+
+  - value: 0x0C1E
+    name: 'EC sense co., Ltd'
+
+  - value: 0x0C1D
+    name: 'OFF Line Japan Co., Ltd.'
+
+  - value: 0x0C1C
+    name: 'GEMU'
+
+  - value: 0x0C1B
+    name: 'Rockchip Electronics Co., Ltd.'
+
+  - value: 0x0C1A
+    name: 'Catapult Group International Ltd'
+
+  - value: 0x0C19
+    name: 'Arlo Technologies, Inc.'
+
+  - value: 0x0C18
+    name: 'CORROHM'
+
+  - value: 0x0C17
+    name: 'SomnoMed Limited'
+
+  - value: 0x0C16
+    name: 'TYKEE PTY. LTD.'
+
+  - value: 0x0C15
+    name: 'Geva Sol B.V.'
+
+  - value: 0x0C14
+    name: 'Fasetto, Inc.'
+
+  - value: 0x0C13
+    name: 'Scandinavian Health Limited'
+
+  - value: 0x0C12
+    name: 'IoSA'
+
+  - value: 0x0C11
+    name: 'Gordon Murray Design Limited'
+
+  - value: 0x0C10
+    name: 'Cosmed s.r.l.'
+
+  - value: 0x0C0F
+    name: 'AETERLINK'
+
+  - value: 0x0C0E
+    name: 'ALEX DENKO CO.,LTD.'
+
+  - value: 0x0C0D
+    name: 'Mereltron bv'
+
+  - value: 0x0C0C
+    name: 'Mendeltron, Inc.'
+
+  - value: 0x0C0B
+    name: 'aconno GmbH'
+
+  - value: 0x0C0A
+    name: 'Automated Pet Care Products, LLC'
+
+  - value: 0x0C09
+    name: 'Senic Inc.'
+
+  - value: 0x0C08
+    name: 'limited liability company "Red"'
+
+  - value: 0x0C07
+    name: 'CONSTRUKTS, INC.'
+
+  - value: 0x0C06
+    name: 'LED Smart Inc.'
+
+  - value: 0x0C05
+    name: 'Montage Connect, Inc.'
+
+  - value: 0x0C04
+    name: 'Happy Health, Inc.'
+
+  - value: 0x0C03
+    name: 'Puff Corp'
+
+  - value: 0x0C02
+    name: 'Loomanet, Inc.'
+
+  - value: 0x0C01
+    name: 'NEOWRK SISTEMAS INTELIGENTES S.A.'
+
+  - value: 0x0C00
+    name: 'MQA Limited'
+
+  - value: 0x0BFF
+    name: 'Ratio Electric BV'
+
+  - value: 0x0BFE
+    name: 'Media-Cartec GmbH'
+
+  - value: 0x0BFD
+    name: 'Esmé Solutions'
+
+  - value: 0x0BFC
+    name: 'T+A elektroakustik GmbH & Co.KG'
+
+  - value: 0x0BFB
+    name: 'Dodam Enersys Co., Ltd'
+
+  - value: 0x0BFA
+    name: 'CleanBands Systems Ltd.'
+
+  - value: 0x0BF9
+    name: 'Alio, Inc'
+
+  - value: 0x0BF8
+    name: 'Innovacionnye Resheniya'
+
+  - value: 0x0BF7
+    name: 'Wacker Neuson SE'
+
+  - value: 0x0BF6
+    name: 'greenTEG AG'
+
+  - value: 0x0BF5
+    name: 'T5 tek, Inc.'
+
+  - value: 0x0BF4
+    name: 'ER Lab LLC'
+
+  - value: 0x0BF3
+    name: 'PONE BIOMETRICS AS'
+
+  - value: 0x0BF2
+    name: 'Angel Medical Systems, Inc.'
+
+  - value: 0x0BF1
+    name: 'Site IQ LLC'
+
+  - value: 0x0BF0
+    name: 'KIDO SPORTS CO., LTD.'
+
+  - value: 0x0BEF
+    name: 'Safetytest GmbH'
+
+  - value: 0x0BEE
+    name: 'LINKSYS USA, INC.'
+
+  - value: 0x0BED
+    name: 'CORAL-TAIYI Co. Ltd.'
+
+  - value: 0x0BEC
+    name: 'Miracle-Ear, Inc.'
+
+  - value: 0x0BEB
+    name: 'Luna Health, Inc.'
+
+  - value: 0x0BEA
+    name: 'Twenty Five Seven, prodaja in storitve, d.o.o.'
+
+  - value: 0x0BE9
+    name: 'Shindengen Electric Manufacturing Co., Ltd.'
+
+  - value: 0x0BE8
+    name: 'Sensormate AG'
+
+  - value: 0x0BE7
+    name: 'Fresnel Technologies, Inc.'
+
+  - value: 0x0BE6
+    name: 'Puratap Pty Ltd'
+
+  - value: 0x0BE5
+    name: 'ZWILLING J.A. Henckels Aktiengesellschaft'
+
+  - value: 0x0BE4
+    name: 'Deepfield Connect GmbH'
+
+  - value: 0x0BE3
+    name: 'Comtel Systems Ltd.'
+
+  - value: 0x0BE2
+    name: 'OTC engineering'
+
+  - value: 0x0BE1
+    name: 'Back40 Precision'
+
+  - value: 0x0BE0
+    name: 'Koizumi Lighting Technology corp.'
+
+  - value: 0x0BDF
+    name: 'WINKEY ENTERPRISE (HONG KONG) LIMITED'
+
+  - value: 0x0BDE
+    name: 'Yale'
+
+  - value: 0x0BDD
+    name: 'Coroflo Limited'
+
+  - value: 0x0BDC
+    name: 'Ledworks S.r.l.'
+
+  - value: 0x0BDB
+    name: 'CHAR-BROIL, LLC'
+
+  - value: 0x0BDA
+    name: 'Aardex Ltd.'
+
+  - value: 0x0BD9
+    name: 'Elics Basis Ltd.'
+
+  - value: 0x0BD8
+    name: 'PURA SCENTS, INC.'
+
+  - value: 0x0BD7
+    name: 'VINFAST TRADING AND PRODUCTION JOINT STOCK COMPANY'
+
+  - value: 0x0BD6
+    name: 'Shenzhen Injoinic Technology Co., Ltd.'
+
+  - value: 0x0BD5
+    name: 'Super B Lithium Power B.V.'
+
+  - value: 0x0BD4
+    name: 'ndd Medizintechnik AG'
+
+  - value: 0x0BD3
+    name: 'Procon Analytics, LLC'
+
+  - value: 0x0BD2
+    name: 'IDEC'
+
+  - value: 0x0BD1
+    name: 'Hubei Yuan Times Technology Co., Ltd.'
+
+  - value: 0x0BD0
+    name: 'Durag GmbH'
+
+  - value: 0x0BCF
+    name: 'LL Tec Group LLC'
+
+  - value: 0x0BCE
+    name: 'Neurosity, Inc.'
+
+  - value: 0x0BCD
+    name: 'Amiko srl'
+
+  - value: 0x0BCC
+    name: 'Sylvac sa'
+
+  - value: 0x0BCB
+    name: 'Divesoft s.r.o.'
+
+  - value: 0x0BCA
+    name: 'Perimeter Technologies, Inc.'
+
+  - value: 0x0BC9
+    name: 'Neuvatek Inc.'
+
+  - value: 0x0BC8
+    name: 'OTF Distribution, LLC'
+
+  - value: 0x0BC7
+    name: 'Signtle Inc.'
+
+  - value: 0x0BC6
+    name: 'TCL COMMUNICATION EQUIPMENT CO.,LTD.'
+
+  - value: 0x0BC5
+    name: 'Aperia Technologies, Inc.'
+
+  - value: 0x0BC4
+    name: 'TECHTICS ENGINEERING B.V.'
+
+  - value: 0x0BC3
+    name: 'MCOT INC.'
+
+  - value: 0x0BC2
+    name: 'EntWick Co.'
+
+  - value: 0x0BC1
+    name: 'Miele & Cie. KG'
+
+  - value: 0x0BC0
+    name: 'READY FOR SKY LLP'
+
+  - value: 0x0BBF
+    name: 'HIMSA II K/S'
+
+  - value: 0x0BBE
+    name: 'SAAB Aktiebolag'
+
+  - value: 0x0BBD
+    name: 'ETHEORY PTY LTD'
+
+  - value: 0x0BBC
+    name: 'T2REALITY SOLUTIONS PRIVATE LIMITED'
+
+  - value: 0x0BBB
+    name: 'SWISSINNO SOLUTIONS AG'
+
+  - value: 0x0BBA
+    name: 'Huso, INC'
+
+  - value: 0x0BB9
+    name: 'SaluStim Group Oy'
+
+  - value: 0x0BB8
+    name: 'INNOVAG PTY. LTD.'
+
+  - value: 0x0BB7
+    name: 'IONA Tech LLC'
+
+  - value: 0x0BB6
+    name: 'Build With Robots Inc.'
+
+  - value: 0x0BB5
+    name: 'Xirgo Technologies, LLC'
+
+  - value: 0x0BB4
+    name: 'New Cosmos USA, Inc.'
+
+  - value: 0x0BB3
+    name: 'Flender GmbH'
+
+  - value: 0x0BB2
+    name: 'Fjorden Electra AS'
+
+  - value: 0x0BB1
+    name: 'Beijing ranxin intelligence technology Co.,LTD'
+
+  - value: 0x0BB0
+    name: 'Ecolab Inc.'
+
+  - value: 0x0BAF
+    name: 'NITTO KOGYO CORPORATION'
+
+  - value: 0x0BAE
+    name: 'Soma Labs LLC'
+
+  - value: 0x0BAD
+    name: 'Roambotics, Inc.'
+
+  - value: 0x0BAC
+    name: 'Machfu Inc.'
+
+  - value: 0x0BAB
+    name: 'Grandex International Corporation'
+
+  - value: 0x0BAA
+    name: 'Infinitegra, Inc.'
+
+  - value: 0x0BA9
+    name: 'Allterco Robotics ltd'
+
+  - value: 0x0BA8
+    name: 'GLOWFORGE INC.'
+
+  - value: 0x0BA7
+    name: 'hearX Group (Pty) Ltd'
+
+  - value: 0x0BA6
+    name: 'Nissan Motor Co., Ltd.'
+
+  - value: 0x0BA5
+    name: 'SONICOS ENTERPRISES, LLC'
+
+  - value: 0x0BA4
+    name: 'Vervent Audio Group'
+
+  - value: 0x0BA3
+    name: 'Sonova Consumer Hearing GmbH'
+
+  - value: 0x0BA2
+    name: 'TireCheck GmbH'
+
+  - value: 0x0BA1
+    name: 'Bunn-O-Matic Corporation'
+
+  - value: 0x0BA0
+    name: 'Data Sciences International'
+
+  - value: 0x0B9F
+    name: 'Group Lotus Limited'
+
+  - value: 0x0B9E
+    name: 'Audio Partnership Plc'
+
+  - value: 0x0B9D
+    name: 'Sensoria Holdings LTD'
+
+  - value: 0x0B9C
+    name: 'Komatsu Ltd.'
+
+  - value: 0x0B9B
+    name: 'GISMAN'
+
+  - value: 0x0B9A
+    name: 'Beijing Wisepool Infinite Intelligence Technology Co.,Ltd'
+
+  - value: 0x0B99
+    name: 'The Goodyear Tire & Rubber Company'
+
+  - value: 0x0B98
+    name: 'Gymstory B.V.'
+
+  - value: 0x0B97
+    name: 'SILVER TREE LABS, INC.'
+
+  - value: 0x0B96
+    name: 'Telecom Design'
+
+  - value: 0x0B95
+    name: 'Netwake GmbH'
+
+  - value: 0x0B94
+    name: 'Dreem SAS'
+
+  - value: 0x0B93
+    name: 'Hangzhou BroadLink Technology Co., Ltd.'
+
+  - value: 0x0B92
+    name: 'Citisend Solutions, SL'
+
+  - value: 0x0B91
+    name: 'Alfen ICU B.V.'
+
+  - value: 0x0B90
+    name: 'Ineos Automotive Limited'
+
+  - value: 0x0B8F
+    name: 'Senscomm Semiconductor Co., Ltd.'
+
+  - value: 0x0B8E
+    name: 'Gentle Energy Corp.'
+
+  - value: 0x0B8D
+    name: 'Pertech Industries Inc'
+
+  - value: 0x0B8C
+    name: 'MOTREX'
+
+  - value: 0x0B8B
+    name: 'American Technology Components, Incorporated'
+
+  - value: 0x0B8A
+    name: 'Seiko Instruments Inc.'
+
+  - value: 0x0B89
+    name: 'Rotronic AG'
+
+  - value: 0x0B88
+    name: 'Muguang (Guangdong) Intelligent Lighting Technology Co., Ltd'
+
+  - value: 0x0B87
+    name: 'Ampetronic Ltd'
+
+  - value: 0x0B86
+    name: 'Trek Bicycle'
+
+  - value: 0x0B85
+    name: 'VIMANA TECH PTY LTD'
+
+  - value: 0x0B84
+    name: 'Presidio Medical, Inc.'
+
+  - value: 0x0B83
+    name: 'Taiga Motors Inc.'
+
+  - value: 0x0B82
+    name: 'Mammut Sports Group AG'
+
+  - value: 0x0B81
+    name: 'SCM Group'
+
+  - value: 0x0B80
+    name: 'AXELIFE'
+
+  - value: 0x0B7F
+    name: 'ICU tech GmbH'
+
+  - value: 0x0B7E
+    name: 'Offcode Oy'
+
+  - value: 0x0B7D
+    name: 'FoundersLane GmbH'
+
+  - value: 0x0B7C
+    name: 'Scangrip A/S'
+
+  - value: 0x0B7B
+    name: 'Hardcoder Oy'
+
+  - value: 0x0B7A
+    name: 'Shenzhen KTC Technology Co.,Ltd.'
+
+  - value: 0x0B79
+    name: 'Sankyo Air Tech Co.,Ltd.'
+
+  - value: 0x0B78
+    name: 'FIELD DESIGN INC.'
+
+  - value: 0x0B77
+    name: 'Aixlink(Chengdu) Co., Ltd.'
+
+  - value: 0x0B76
+    name: 'MAX-co., ltd'
+
+  - value: 0x0B75
+    name: 'Triple W Japan Inc.'
+
+  - value: 0x0B74
+    name: 'BQN'
+
+  - value: 0x0B73
+    name: 'HARADA INDUSTRY CO., LTD.'
+
+  - value: 0x0B72
+    name: 'Geeknet, Inc.'
+
+  - value: 0x0B71
+    name: 'lilbit ODM AS'
+
+  - value: 0x0B70
+    name: 'JDRF Electromag Engineering Inc'
+
+  - value: 0x0B6F
+    name: 'Shenzhen Malide Technology Co.,Ltd'
+
+  - value: 0x0B6E
+    name: 'React Mobile'
+
+  - value: 0x0B6D
+    name: 'SOLUM CO., LTD'
+
+  - value: 0x0B6C
+    name: 'Sensitech, Inc.'
+
+  - value: 0x0B6B
+    name: 'Samsara Networks, Inc'
+
+  - value: 0x0B6A
+    name: 'Dymo'
+
+  - value: 0x0B69
+    name: 'Addaday'
+
+  - value: 0x0B68
+    name: 'Quha oy'
+
+  - value: 0x0B67
+    name: 'CleanSpace Technology Pty Ltd'
+
+  - value: 0x0B66
+    name: 'MITSUBISHI ELECTRIC AUTOMATION (THAILAND) COMPANY LIMITED'
+
+  - value: 0x0B65
+    name: 'The Apache Software Foundation'
+
+  - value: 0x0B64
+    name: 'NingBo klite Electric Manufacture Co.,LTD'
+
+  - value: 0x0B63
+    name: 'Innolux Corporation'
+
+  - value: 0x0B62
+    name: 'NOVEA ENERGIES'
+
+  - value: 0x0B61
+    name: 'Sentek Pty Ltd'
+
+  - value: 0x0B60
+    name: 'RATOC Systems, Inc.'
+
+  - value: 0x0B5F
+    name: 'Rivieh, Inc.'
+
+  - value: 0x0B5E
+    name: 'CELLCONTROL, INC.'
+
+  - value: 0x0B5D
+    name: 'Fujian Newland Auto-ID Tech. Co., Ltd.'
+
+  - value: 0x0B5C
+    name: 'Exponential Power, Inc.'
+
+  - value: 0x0B5B
+    name: 'Shenzhen ImagineVision Technology Limited'
+
+  - value: 0x0B5A
+    name: 'H.P. Shelby Manufacturing, LLC.'
+
+  - value: 0x0B59
+    name: 'Versa Group B.V.'
+
+  - value: 0x0B58
+    name: 'TOKAI-DENSHI INC'
+
+  - value: 0x0B57
+    name: 'CONVERTRONIX TECHNOLOGIES AND SERVICES LLP'
+
+  - value: 0x0B56
+    name: 'BORA - Vertriebs GmbH & Co KG'
+
+  - value: 0x0B55
+    name: 'H G M Automotive Electronics, Inc.'
+
+  - value: 0x0B54
+    name: 'Emotion Fitness GmbH & Co. KG'
+
+  - value: 0x0B53
+    name: 'SHENZHEN KAADAS INTELLIGENT TECHNOLOGY CO.,Ltd'
+
+  - value: 0x0B52
+    name: 'ZIIP Inc'
+
+  - value: 0x0B51
+    name: 'FUN FACTORY GmbH'
+
+  - value: 0x0B50
+    name: 'Mesh Systems LLC'
+
+  - value: 0x0B4F
+    name: 'Breezi.io, Inc.'
+
+  - value: 0x0B4E
+    name: 'ICP Systems B.V.'
+
+  - value: 0x0B4D
+    name: 'Adam Hall GmbH'
+
+  - value: 0x0B4C
+    name: 'BiosBob.Biz'
+
+  - value: 0x0B4B
+    name: 'EMS Integrators, LLC'
+
+  - value: 0x0B4A
+    name: 'Nomono AS'
+
+  - value: 0x0B49
+    name: 'SkyHawke Technologies'
+
+  - value: 0x0B48
+    name: 'NIO USA, Inc.'
+
+  - value: 0x0B47
+    name: 'Gentex Corporation'
+
+  - value: 0x0B46
+    name: 'Bird Rides, Inc.'
+
+  - value: 0x0B45
+    name: 'Electronic Sensors, Inc.'
+
+  - value: 0x0B44
+    name: 'nFore Technology Co., Ltd.'
+
+  - value: 0x0B43
+    name: 'INCITAT ENVIRONNEMENT'
+
+  - value: 0x0B42
+    name: 'TSI'
+
+  - value: 0x0B41
+    name: 'Sentrax GmbH'
+
+  - value: 0x0B40
+    name: 'Havells India Limited'
+
+  - value: 0x0B3F
+    name: 'MindRhythm, Inc.'
+
+  - value: 0x0B3E
+    name: 'ISEO Serrature S.p.a.'
+
+  - value: 0x0B3D
+    name: 'REALTIMEID AS'
+
+  - value: 0x0B3C
+    name: 'Dodge Industrial, Inc.'
+
+  - value: 0x0B3B
+    name: 'AIC semiconductor (Shanghai) Co., Ltd.'
+
+  - value: 0x0B3A
+    name: 'Impact Biosystems, Inc.'
+
+  - value: 0x0B39
+    name: 'Red 100 Lighting Co., ltd.'
+
+  - value: 0x0B38
+    name: 'WISYCOM S.R.L.'
+
+  - value: 0x0B37
+    name: 'Omnivoltaic Energy Solutions Limited Company'
+
+  - value: 0x0B36
+    name: 'SINTEF'
+
+  - value: 0x0B35
+    name: 'BH SENS'
+
+  - value: 0x0B34
+    name: 'CONZUMEX INDUSTRIES PRIVATE LIMITED'
+
+  - value: 0x0B33
+    name: 'ARMATURA LLC'
+
+  - value: 0x0B32
+    name: 'Hala Systems, Inc.'
+
+  - value: 0x0B31
+    name: 'Silver Wolf Vehicles Inc.'
+
+  - value: 0x0B30
+    name: 'ART SPA'
+
+  - value: 0x0B2F
+    name: 'Duke Manufacturing Co'
+
+  - value: 0x0B2E
+    name: 'MOCA System Inc.'
+
+  - value: 0x0B2D
+    name: 'REDARC ELECTRONICS PTY LTD'
+
+  - value: 0x0B2C
+    name: 'ILLUMAGEAR, Inc.'
+
+  - value: 0x0B2B
+    name: 'MAINBOT'
+
+  - value: 0x0B2A
+    name: 'ACL Airshop B.V.'
+
+  - value: 0x0B29
+    name: 'Tech-Venom Entertainment Private Limited'
+
+  - value: 0x0B28
+    name: 'CHACON'
+
+  - value: 0x0B27
+    name: 'Lumi United Technology Co., Ltd'
+
+  - value: 0x0B26
+    name: 'Baracoda Daily Healthtech.'
+
+  - value: 0x0B25
+    name: 'NIBROTECH LTD'
+
+  - value: 0x0B24
+    name: 'BeiJing ZiJie TiaoDong KeJi Co.,Ltd.'
+
+  - value: 0x0B23
+    name: 'iRhythm Technologies, Inc.'
+
+  - value: 0x0B22
+    name: 'Hygiene IQ, LLC.'
+
+  - value: 0x0B21
+    name: 'ams AG'
+
+  - value: 0x0B20
+    name: 'TKH Security B.V.'
+
+  - value: 0x0B1F
+    name: 'Beijing ESWIN Computing Technology Co., Ltd.'
+
+  - value: 0x0B1E
+    name: 'PB INC.'
+
+  - value: 0x0B1D
+    name: 'Accelerated Systems'
+
+  - value: 0x0B1C
+    name: 'Nanoleq AG'
+
+  - value: 0x0B1B
+    name: 'Enerpac Tool Group Corp.'
+
+  - value: 0x0B1A
+    name: 'Roca Sanitario, S.A.'
+
+  - value: 0x0B19
+    name: 'WBS PROJECT H PTY LTD'
+
+  - value: 0x0B18
+    name: 'DECATHLON SE'
+
+  - value: 0x0B17
+    name: 'SIG SAUER, INC.'
+
+  - value: 0x0B16
+    name: 'Guard RFID Solutions Inc.'
+
+  - value: 0x0B15
+    name: 'NAOS JAPAN K.K.'
+
+  - value: 0x0B14
+    name: 'Olumee'
+
+  - value: 0x0B13
+    name: 'IOTOOLS'
+
+  - value: 0x0B12
+    name: 'ToughBuilt Industries LLC'
+
+  - value: 0x0B11
+    name: 'ThermoWorks, Inc.'
+
+  - value: 0x0B10
+    name: 'Alfa Laval Corporate AB'
+
+  - value: 0x0B0F
+    name: 'B.E.A. S.A.'
+
+  - value: 0x0B0E
+    name: 'Honda Lock Mfg. Co.,Ltd.'
+
+  - value: 0x0B0D
+    name: 'SANYO DENKO Co.,Ltd.'
+
+  - value: 0x0B0C
+    name: 'BluPeak'
+
+  - value: 0x0B0B
+    name: 'Sanistaal A/S'
+
+  - value: 0x0B0A
+    name: 'Belun Technology Company Limited'
+
+  - value: 0x0B09
+    name: 'soonisys'
+
+  - value: 0x0B08
+    name: 'Shenzhen Qianfenyi Intelligent Technology Co., LTD'
+
+  - value: 0x0B07
+    name: 'Workaround Gmbh'
+
+  - value: 0x0B06
+    name: 'FAZUA GmbH'
+
+  - value: 0x0B05
+    name: 'Marquardt GmbH'
+
+  - value: 0x0B04
+    name: 'I-PERCUT'
+
+  - value: 0x0B03
+    name: 'Precision Triathlon Systems Limited'
+
+  - value: 0x0B02
+    name: 'IORA Technology Development Ltd. Sti.'
+
+  - value: 0x0B01
+    name: 'RESIDEO TECHNOLOGIES, INC.'
+
+  - value: 0x0B00
+    name: 'Flaircomm Microelectronics Inc.'
+
+  - value: 0x0AFF
+    name: 'FUSEAWARE LIMITED'
+
+  - value: 0x0AFE
+    name: 'Earda Technologies Co.,Ltd'
+
+  - value: 0x0AFD
+    name: 'Weber Sensors, LLC'
+
+  - value: 0x0AFC
+    name: 'Cerebrum Sensor Technologies Inc.'
+
+  - value: 0x0AFB
+    name: 'SMT ELEKTRONIK GmbH'
+
+  - value: 0x0AFA
+    name: 'Chengdu Ambit Technology Co., Ltd.'
+
+  - value: 0x0AF9
+    name: 'Unisto AG'
+
+  - value: 0x0AF8
+    name: 'First Design System Inc.'
+
+  - value: 0x0AF7
+    name: 'Irdeto'
+
+  - value: 0x0AF6
+    name: 'AMETEK, Inc.'
+
+  - value: 0x0AF5
+    name: 'Unitech Electronic Inc.'
+
+  - value: 0x0AF4
+    name: 'Radioworks Microelectronics PTY LTD'
+
+  - value: 0x0AF3
+    name: '701x Inc.'
+
+  - value: 0x0AF2
+    name: 'Shanghai All Link Microelectronics Co.,Ltd'
+
+  - value: 0x0AF1
+    name: 'CRADERS,CO.,LTD'
+
+  - value: 0x0AF0
+    name: 'Leupold & Stevens, Inc.'
+
+  - value: 0x0AEF
+    name: 'GLP German Light Products GmbH'
+
+  - value: 0x0AEE
+    name: 'Velentium, LLC'
+
+  - value: 0x0AED
+    name: 'Saxonar GmbH'
+
+  - value: 0x0AEC
+    name: 'FUTEK ADVANCED SENSOR TECHNOLOGY, INC'
+
+  - value: 0x0AEB
+    name: 'Square, Inc.'
+
+  - value: 0x0AEA
+    name: 'Borda Technology'
+
+  - value: 0x0AE9
+    name: 'FLIR Systems AB'
+
+  - value: 0x0AE8
+    name: 'LEVEL, s.r.o.'
+
+  - value: 0x0AE7
+    name: 'Sunplus Technology Co., Ltd.'
+
+  - value: 0x0AE6
+    name: 'Hexology'
+
+  - value: 0x0AE5
+    name: 'unu GmbH'
+
+  - value: 0x0AE4
+    name: 'DALI Alliance'
+
+  - value: 0x0AE3
+    name: 'GlobalMed'
+
+  - value: 0x0AE2
+    name: 'IMATRIX SYSTEMS, INC.'
+
+  - value: 0x0AE1
+    name: 'ChengDu ForThink Technology Co., Ltd.'
+
+  - value: 0x0AE0
+    name: 'Viceroy Devices Corporation'
+
+  - value: 0x0ADF
+    name: 'Douglas Dynamics L.L.C.'
+
+  - value: 0x0ADE
+    name: 'Vocera Communications, Inc.'
+
+  - value: 0x0ADD
+    name: 'Boss Audio'
+
+  - value: 0x0ADC
+    name: 'Duravit AG'
+
+  - value: 0x0ADB
+    name: 'Reelables, Inc.'
+
+  - value: 0x0ADA
+    name: 'Codefabrik GmbH'
+
+  - value: 0x0AD9
+    name: 'Shenzhen Aimore. Co.,Ltd'
+
+  - value: 0x0AD8
+    name: 'Franz Kaldewei GmbH&Co KG'
+
+  - value: 0x0AD7
+    name: 'AL-KO Geraete GmbH'
+
+  - value: 0x0AD6
+    name: 'nymea GmbH'
+
+  - value: 0x0AD5
+    name: 'Streamit B.V.'
+
+  - value: 0x0AD4
+    name: 'Zhuhai Pantum Electronisc Co., Ltd'
+
+  - value: 0x0AD3
+    name: 'SSV Software Systems GmbH'
+
+  - value: 0x0AD2
+    name: 'Lautsprecher Teufel GmbH'
+
+  - value: 0x0AD1
+    name: 'EAGLE KINGDOM TECHNOLOGIES LIMITED'
+
+  - value: 0x0AD0
+    name: 'Nordic Strong ApS'
+
+  - value: 0x0ACF
+    name: 'CACI Technologies'
+
+  - value: 0x0ACE
+    name: 'KOBATA GAUGE MFG. CO., LTD.'
+
+  - value: 0x0ACD
+    name: 'Visuallex Sport International Limited'
+
+  - value: 0x0ACC
+    name: 'Nuvoton'
+
+  - value: 0x0ACB
+    name: 'ise Individuelle Software und Elektronik GmbH'
+
+  - value: 0x0ACA
+    name: 'Shenzhen CoolKit Technology Co., Ltd'
+
+  - value: 0x0AC9
+    name: 'Swedlock AB'
+
+  - value: 0x0AC8
+    name: 'Keepin Co., Ltd.'
+
+  - value: 0x0AC7
+    name: 'Chengdu Aich Technology Co.,Ltd'
+
+  - value: 0x0AC6
+    name: 'Barnes Group Inc.'
+
+  - value: 0x0AC5
+    name: 'Flexoptix GmbH'
+
+  - value: 0x0AC4
+    name: 'CODIUM'
+
+  - value: 0x0AC3
+    name: 'Kenzen, Inc.'
+
+  - value: 0x0AC2
+    name: 'RealMega Microelectronics technology (Shanghai) Co. Ltd.'
+
+  - value: 0x0AC1
+    name: 'Shenzhen Jingxun Technology Co., Ltd.'
+
+  - value: 0x0AC0
+    name: 'Omni-ID USA, INC.'
+
+  - value: 0x0ABF
+    name: 'PAUL HARTMANN AG'
+
+  - value: 0x0ABE
+    name: 'Robkoo Information & Technologies Co., Ltd.'
+
+  - value: 0x0ABD
+    name: 'Inventas AS'
+
+  - value: 0x0ABC
+    name: 'KCCS Mobile Engineering Co., Ltd.'
+
+  - value: 0x0ABB
+    name: 'R-DAS, s.r.o.'
+
+  - value: 0x0ABA
+    name: 'Open Bionics Ltd.'
+
+  - value: 0x0AB9
+    name: 'STL'
+
+  - value: 0x0AB8
+    name: 'Sens.ai Incorporated'
+
+  - value: 0x0AB7
+    name: 'LogTag North America Inc.'
+
+  - value: 0x0AB6
+    name: 'Xenter, Inc.'
+
+  - value: 0x0AB5
+    name: 'Elstat Electronics Ltd.'
+
+  - value: 0x0AB4
+    name: 'Ellenby Technologies, Inc.'
+
+  - value: 0x0AB3
+    name: 'INNER RANGE PTY. LTD.'
+
+  - value: 0x0AB2
+    name: 'TouchTronics, Inc.'
+
+  - value: 0x0AB1
+    name: 'InVue Security Products Inc'
+
+  - value: 0x0AB0
+    name: 'Visiontronic s.r.o.'
+
+  - value: 0x0AAF
+    name: 'AIAIAI ApS'
+
+  - value: 0x0AAE
+    name: 'PS Engineering, Inc.'
+
+  - value: 0x0AAD
+    name: 'Adevo Consulting AB'
+
+  - value: 0x0AAC
+    name: 'OSM HK Limited'
+
+  - value: 0x0AAB
+    name: 'Anhui Listenai Co'
+
+  - value: 0x0AAA
+    name: 'Computime International Ltd'
+
+  - value: 0x0AA9
+    name: 'Spintly, Inc.'
+
+  - value: 0x0AA8
+    name: 'Zencontrol Pty Ltd'
+
+  - value: 0x0AA7
+    name: 'Urbanista AB'
+
+  - value: 0x0AA6
+    name: 'Realityworks, inc.'
+
+  - value: 0x0AA5
+    name: 'Shenzhen Uascent Technology Co., Ltd'
+
+  - value: 0x0AA4
+    name: 'FAZEPRO LLC'
+
+  - value: 0x0AA3
+    name: 'DIC Corporation'
+
+  - value: 0x0AA2
+    name: 'Care Bloom, LLC'
+
+  - value: 0x0AA1
+    name: 'LINCOGN TECHNOLOGY CO. LIMITED'
+
+  - value: 0x0AA0
+    name: 'Loy Tec electronics GmbH'
+
+  - value: 0x0A9F
+    name: 'ista International GmbH'
+
+  - value: 0x0A9E
+    name: 'LifePlus, Inc.'
+
+  - value: 0x0A9D
+    name: 'Canon Finetech Nisca Inc.'
+
+  - value: 0x0A9C
+    name: "Xi'an Fengyu Information Technology Co., Ltd."
+
+  - value: 0x0A9B
+    name: 'Eello LLC'
+
+  - value: 0x0A9A
+    name: 'TEMKIN ASSOCIATES, LLC'
+
+  - value: 0x0A99
+    name: 'Shanghai high-flying electronics technology Co.,Ltd'
+
+  - value: 0x0A98
+    name: 'Foil, Inc.'
+
+  - value: 0x0A97
+    name: 'SensTek'
+
+  - value: 0x0A96
+    name: 'Lightricity Ltd'
+
+  - value: 0x0A95
+    name: 'Pamex Inc.'
+
+  - value: 0x0A94
+    name: 'OOBIK Inc.'
+
+  - value: 0x0A93
+    name: 'GiPStech S.r.l.'
+
+  - value: 0x0A92
+    name: 'Carestream Dental LLC'
+
+  - value: 0x0A91
+    name: 'Monarch International Inc.'
+
+  - value: 0x0A90
+    name: 'Shenzhen Grandsun Electronic Co.,Ltd.'
+
+  - value: 0x0A8F
+    name: 'TOTO LTD.'
+
+  - value: 0x0A8E
+    name: 'Perfect Company'
+
+  - value: 0x0A8D
+    name: 'JCM TECHNOLOGIES S.A.'
+
+  - value: 0x0A8C
+    name: 'DelpSys, s.r.o.'
+
+  - value: 0x0A8B
+    name: 'SANlight GmbH'
+
+  - value: 0x0A8A
+    name: 'HAINBUCH GMBH SPANNENDE TECHNIK'
+
+  - value: 0x0A89
+    name: 'SES-Imagotag'
+
+  - value: 0x0A88
+    name: 'PSA Peugeot Citroen'
+
+  - value: 0x0A87
+    name: 'Shanghai Smart System Technology Co., Ltd'
+
+  - value: 0x0A86
+    name: 'ALIZENT International'
+
+  - value: 0x0A85
+    name: 'Snowball Technology Co., Ltd.'
+
+  - value: 0x0A84
+    name: 'Greennote Inc,'
+
+  - value: 0x0A83
+    name: 'Rivata, Inc.'
+
+  - value: 0x0A82
+    name: 'Corsair'
+
+  - value: 0x0A81
+    name: 'Universal Biosensors Pty Ltd'
+
+  - value: 0x0A80
+    name: 'Cleer Limited'
+
+  - value: 0x0A7F
+    name: 'Intuity Medical'
+
+  - value: 0x0A7E
+    name: 'KEBA Handover Automation GmbH'
+
+  - value: 0x0A7D
+    name: 'Freedman Electronics Pty Ltd'
+
+  - value: 0x0A7C
+    name: 'WAFERLOCK'
+
+  - value: 0x0A7B
+    name: 'UniqAir Oy'
+
+  - value: 0x0A7A
+    name: 'Emlid Limited'
+
+  - value: 0x0A79
+    name: 'Webasto SE'
+
+  - value: 0x0A78
+    name: 'Shenzhen Sunricher Technology Limited'
+
+  - value: 0x0A77
+    name: 'AXTRO PTE. LTD.'
+
+  - value: 0x0A76
+    name: 'Synaptics Incorporated'
+
+  - value: 0x0A75
+    name: 'Delta Cycle Corporation'
+
+  - value: 0x0A74
+    name: 'MICROSON S.A.'
+
+  - value: 0x0A73
+    name: 'Innohome Oy'
+
+  - value: 0x0A72
+    name: 'Jumo GmbH & Co. KG'
+
+  - value: 0x0A71
+    name: 'Senquip Pty Ltd'
+
+  - value: 0x0A70
+    name: 'Ooma'
+
+  - value: 0x0A6F
+    name: 'Warner Bros.'
+
+  - value: 0x0A6E
+    name: 'Pac Sane Limited'
+
+  - value: 0x0A6D
+    name: 'KUUKANJYOKIN Co.,Ltd.'
+
+  - value: 0x0A6C
+    name: 'Pokkels'
+
+  - value: 0x0A6B
+    name: 'Olympic Ophthalmics, Inc.'
+
+  - value: 0x0A6A
+    name: 'Scribble Design Inc.'
+
+  - value: 0x0A69
+    name: 'HAPPIEST BABY, INC.'
+
+  - value: 0x0A68
+    name: 'Focus Ingenieria SRL'
+
+  - value: 0x0A67
+    name: 'Beijing SuperHexa Century Technology CO. Ltd'
+
+  - value: 0x0A66
+    name: 'JUSTMORPH PTE. LTD.'
+
+  - value: 0x0A65
+    name: 'Lytx, INC.'
+
+  - value: 0x0A64
+    name: 'Geopal system A/S'
+
+  - value: 0x0A63
+    name: 'Gremsy JSC'
+
+  - value: 0x0A62
+    name: 'MOKO TECHNOLOGY Ltd'
+
+  - value: 0x0A61
+    name: 'Smart Parks B.V.'
+
+  - value: 0x0A60
+    name: 'DATANG SEMICONDUCTOR TECHNOLOGY CO.,LTD'
+
+  - value: 0x0A5F
+    name: 'stryker'
+
+  - value: 0x0A5E
+    name: 'LaceClips llc'
+
+  - value: 0x0A5D
+    name: 'MG Energy Systems B.V.'
+
+  - value: 0x0A5C
+    name: 'Innovative Design Labs Inc.'
+
+  - value: 0x0A5B
+    name: 'LEGIC Identsystems AG'
+
+  - value: 0x0A5A
+    name: 'Sontheim Industrie Elektronik GmbH'
+
+  - value: 0x0A59
+    name: 'TourBuilt, LLC'
+
+  - value: 0x0A58
+    name: 'Indigo Diabetes'
+
+  - value: 0x0A57
+    name: 'Meizhou Guo Wei Electronics Co., Ltd'
+
+  - value: 0x0A56
+    name: 'ambie'
+
+  - value: 0x0A55
+    name: 'Inugo Systems Limited'
+
+  - value: 0x0A54
+    name: 'SQL Technologies Corp.'
+
+  - value: 0x0A53
+    name: 'KKM COMPANY LIMITED'
+
+  - value: 0x0A52
+    name: 'Follow Sense Europe B.V.'
+
+  - value: 0x0A51
+    name: 'CSIRO'
+
+  - value: 0x0A50
+    name: 'Nextscape Inc.'
+
+  - value: 0x0A4F
+    name: 'VANMOOF Global Holding B.V.'
+
+  - value: 0x0A4E
+    name: 'Toytec Corporation'
+
+  - value: 0x0A4D
+    name: 'Lockn Technologies Private Limited'
+
+  - value: 0x0A4C
+    name: 'SiFli Technologies (shanghai) Inc.'
+
+  - value: 0x0A4B
+    name: 'MistyWest Energy and Transport Ltd.'
+
+  - value: 0x0A4A
+    name: 'Map Large, Inc.'
+
+  - value: 0x0A49
+    name: 'Venture Research Inc.'
+
+  - value: 0x0A48
+    name: 'JRC Mobility Inc.'
+
+  - value: 0x0A47
+    name: 'The Wand Company Ltd'
+
+  - value: 0x0A46
+    name: 'Beijing HC-Infinite Technology Limited'
+
+  - value: 0x0A45
+    name: '3SI Security Systems, Inc'
+
+  - value: 0x0A44
+    name: 'Novidan, Inc.'
+
+  - value: 0x0A43
+    name: 'Busch Systems International Inc.'
+
+  - value: 0x0A42
+    name: 'Motionalysis, Inc.'
+
+  - value: 0x0A41
+    name: 'OPEX Corporation'
+
+  - value: 0x0A40
+    name: 'GEWISS S.p.A.'
+
+  - value: 0x0A3F
+    name: 'Shenzhen Yopeak Optoelectronics Technology Co., Ltd.'
+
+  - value: 0x0A3E
+    name: 'Hefei Yunlian Semiconductor Co., Ltd'
+
+  - value: 0x0A3D
+    name: 'DELABIE'
+
+  - value: 0x0A3C
+    name: 'Siteco GmbH'
+
+  - value: 0x0A3B
+    name: 'Galileo Technology Limited'
+
+  - value: 0x0A3A
+    name: 'Incotex Co. Ltd.'
+
+  - value: 0x0A39
+    name: 'BLUETICKETING SRL'
+
+  - value: 0x0A38
+    name: 'Bouffalo Lab (Nanjing)., Ltd.'
+
+  - value: 0x0A37
+    name: '2587702 Ontario Inc.'
+
+  - value: 0x0A36
+    name: 'NGK SPARK PLUG CO., LTD.'
+
+  - value: 0x0A35
+    name: 'safectory GmbH'
+
+  - value: 0x0A34
+    name: 'Luxer Corporation'
+
+  - value: 0x0A33
+    name: 'WMF AG'
+
+  - value: 0x0A32
+    name: 'Pinnacle Technology, Inc.'
+
+  - value: 0x0A31
+    name: 'Nevro Corp.'
+
+  - value: 0x0A30
+    name: 'Air-Weigh'
+
+  - value: 0x0A2F
+    name: 'Instamic, Inc.'
+
+  - value: 0x0A2E
+    name: 'Zuma Array Limited'
+
+  - value: 0x0A2D
+    name: 'Shenzhen Feasycom Technology Co., Ltd.'
+
+  - value: 0x0A2C
+    name: 'Shenzhen H&T Intelligent Control Co., Ltd'
+
+  - value: 0x0A2B
+    name: 'PaceBait IVS'
+
+  - value: 0x0A2A
+    name: 'Yamaha Corporation'
+
+  - value: 0x0A29
+    name: 'Worthcloud Technology Co.,Ltd'
+
+  - value: 0x0A28
+    name: 'NanoFlex Power Corporation'
+
+  - value: 0x0A27
+    name: 'AYU DEVICES PRIVATE LIMITED'
+
+  - value: 0x0A26
+    name: 'Louis Vuitton'
+
+  - value: 0x0A25
+    name: 'Eran Financial Services LLC'
+
+  - value: 0x0A24
+    name: 'Atmosic Technologies, Inc.'
+
+  - value: 0x0A23
+    name: 'BIXOLON CO.,LTD'
+
+  - value: 0x0A22
+    name: 'DAIICHIKOSHO CO., LTD.'
+
+  - value: 0x0A21
+    name: 'Apollogic Sp. z o.o.'
+
+  - value: 0x0A20
+    name: 'Jiangxi Innotech Technology Co., Ltd'
+
+  - value: 0x0A1F
+    name: 'DeVilbiss Healthcare LLC'
+
+  - value: 0x0A1E
+    name: 'CombiQ AB'
+
+  - value: 0x0A1D
+    name: 'API-K'
+
+  - value: 0x0A1C
+    name: 'INPEAK S.C.'
+
+  - value: 0x0A1B
+    name: 'Embrava Pty Ltd'
+
+  - value: 0x0A1A
+    name: 'Link Labs, Inc.'
+
+  - value: 0x0A19
+    name: 'Maxell, Ltd.'
+
+  - value: 0x0A18
+    name: 'Cambridge Animal Technologies Ltd'
+
+  - value: 0x0A17
+    name: 'Plume Design Inc'
+
+  - value: 0x0A16
+    name: 'RIDE VISION LTD'
+
+  - value: 0x0A15
+    name: 'Syng Inc'
+
+  - value: 0x0A14
+    name: 'CROXEL, INC.'
+
+  - value: 0x0A13
+    name: 'Tec4med LifeScience GmbH'
+
+  - value: 0x0A12
+    name: 'Dyson Technology Limited'
+
+  - value: 0x0A11
+    name: 'Sensolus'
+
+  - value: 0x0A10
+    name: 'SUBARU Corporation'
+
+  - value: 0x0A0F
+    name: 'LIXIL Corporation'
+
+  - value: 0x0A0E
+    name: 'Roland Corporation'
+
+  - value: 0x0A0D
+    name: 'Blue Peacock GmbH'
+
+  - value: 0x0A0C
+    name: 'Shanghai Yidian Intelligent Technology Co., Ltd.'
+
+  - value: 0x0A0B
+    name: 'SIANA Systems'
+
+  - value: 0x0A0A
+    name: 'Volan Technology Inc.'
+
+  - value: 0x0A09
+    name: 'ECCT'
+
+  - value: 0x0A08
+    name: 'Oras Oy'
+
+  - value: 0x0A07
+    name: 'Reflow Pty Ltd'
+
+  - value: 0x0A06
+    name: 'Shanghai wuqi microelectronics Co.,Ltd'
+
+  - value: 0x0A05
+    name: 'Southwire Company, LLC'
+
+  - value: 0x0A04
+    name: 'Flosonics Medical'
+
+  - value: 0x0A03
+    name: 'donutrobotics Co., Ltd.'
+
+  - value: 0x0A02
+    name: 'Ayxon-Dynamics GmbH'
+
+  - value: 0x0A01
+    name: 'Cleveron AS'
+
+  - value: 0x0A00
+    name: 'Ampler Bikes OU'
+
+  - value: 0x09FF
+    name: 'AIRSTAR'
+
+  - value: 0x09FE
+    name: 'Lichtvision Engineering GmbH'
+
+  - value: 0x09FD
+    name: 'Keep Technologies, Inc.'
+
+  - value: 0x09FC
+    name: 'Confidex'
+
+  - value: 0x09FB
+    name: 'TOITU CO., LTD.'
+
+  - value: 0x09FA
+    name: 'Listen Technologies Corporation'
+
+  - value: 0x09F9
+    name: 'Hangzhou Yaguan Technology Co. LTD'
+
+  - value: 0x09F8
+    name: 'R.O. S.R.L.'
+
+  - value: 0x09F7
+    name: 'SENSATEC Co., Ltd.'
+
+  - value: 0x09F6
+    name: 'Mobile Action Technology Inc.'
+
+  - value: 0x09F5
+    name: 'OKI Electric Industry Co., Ltd'
+
+  - value: 0x09F4
+    name: 'Spectrum Technologies, Inc.'
+
+  - value: 0x09F3
+    name: 'Beijing Zero Zero Infinity Technology Co.,Ltd.'
+
+  - value: 0x09F2
+    name: 'Audeara Pty Ltd'
+
+  - value: 0x09F1
+    name: 'OM Digital Solutions Corporation'
+
+  - value: 0x09F0
+    name: 'WatchGas B.V.'
+
+  - value: 0x09EF
+    name: 'Steinel Solutions AG'
+
+  - value: 0x09EE
+    name: 'OJMAR SA'
+
+  - value: 0x09ED
+    name: 'Sibel Inc.'
+
+  - value: 0x09EC
+    name: 'Yukon advanced optics worldwide, UAB'
+
+  - value: 0x09EB
+    name: 'KEAN ELECTRONICS PTY LTD'
+
+  - value: 0x09EA
+    name: 'Athlos Oy'
+
+  - value: 0x09E9
+    name: 'LumenRadio AB'
+
+  - value: 0x09E8
+    name: 'Melange Systems Pvt. Ltd.'
+
+  - value: 0x09E7
+    name: 'Kabushikigaisha HANERON'
+
+  - value: 0x09E6
+    name: 'Masonite Corporation'
+
+  - value: 0x09E5
+    name: 'Mobilogix'
+
+  - value: 0x09E4
+    name: 'CPS AS'
+
+  - value: 0x09E3
+    name: 'Friday Home Aps'
+
+  - value: 0x09E2
+    name: 'Wuhan Linptech Co.,Ltd.'
+
+  - value: 0x09E1
+    name: 'Tag-N-Trac Inc'
+
+  - value: 0x09E0
+    name: 'Preddio Technologies Inc.'
+
+  - value: 0x09DF
+    name: 'Magnus Technology Sdn Bhd'
+
+  - value: 0x09DE
+    name: 'JLD Technology Solutions, LLC'
+
+  - value: 0x09DD
+    name: 'Innoware Development AB'
+
+  - value: 0x09DC
+    name: 'AON2 Ltd.'
+
+  - value: 0x09DB
+    name: 'Bionic Avionics Inc.'
+
+  - value: 0x09DA
+    name: 'Nagravision SA'
+
+  - value: 0x09D9
+    name: 'VivoSensMedical GmbH'
+
+  - value: 0x09D8
+    name: 'Synergy Tecnologia em Sistemas Ltda'
+
+  - value: 0x09D7
+    name: 'Coyotta'
+
+  - value: 0x09D6
+    name: 'EAR TEKNIK ISITME VE ODIOMETRI CIHAZLARI SANAYI VE TICARET ANONIM SIRKETI'
+
+  - value: 0x09D5
+    name: 'GEAR RADIO ELECTRONICS CORP.'
+
+  - value: 0x09D4
+    name: 'ORBIS Inc.'
+
+  - value: 0x09D3
+    name: 'HeartHero, inc.'
+
+  - value: 0x09D2
+    name: 'Temperature Sensitive Solutions Systems Sweden AB'
+
+  - value: 0x09D1
+    name: 'ABLEPAY TECHNOLOGIES AS'
+
+  - value: 0x09D0
+    name: 'Chess Wise B.V.'
+
+  - value: 0x09CF
+    name: 'BlueStreak IoT, LLC'
+
+  - value: 0x09CE
+    name: 'Julius Blum GmbH'
+
+  - value: 0x09CD
+    name: 'Blyott'
+
+  - value: 0x09CC
+    name: 'Senso4s d.o.o.'
+
+  - value: 0x09CB
+    name: 'Hx Engineering, LLC'
+
+  - value: 0x09CA
+    name: 'Mobitrace'
+
+  - value: 0x09C9
+    name: 'CrowdGlow Ltd'
+
+  - value: 0x09C8
+    name: 'XUNTONG'
+
+  - value: 0x09C7
+    name: 'Combustion, LLC'
+
+  - value: 0x09C6
+    name: 'Honor Device Co., Ltd.'
+
+  - value: 0x09C5
+    name: 'HungYi Microelectronics Co.,Ltd.'
+
+  - value: 0x09C4
+    name: 'UVISIO'
+
+  - value: 0x09C3
+    name: 'JAPAN TOBACCO INC.'
+
+  - value: 0x09C2
+    name: 'Universal Audio, Inc.'
+
+  - value: 0x09C1
+    name: 'Rosewill'
+
+  - value: 0x09C0
+    name: 'AnotherBrain inc.'
+
+  - value: 0x09BF
+    name: 'Span.IO, Inc.'
+
+  - value: 0x09BE
+    name: 'Vessel Ltd.'
+
+  - value: 0x09BD
+    name: "Centre Suisse d'Electronique et de Microtechnique SA"
+
+  - value: 0x09BC
+    name: 'Aerosens LLC'
+
+  - value: 0x09BB
+    name: 'SkyStream Corporation'
+
+  - value: 0x09BA
+    name: 'Elimo Engineering Ltd'
+
+  - value: 0x09B9
+    name: 'SAVOY ELECTRONIC LIGHTING'
+
+  - value: 0x09B8
+    name: 'PlayerData Limited'
+
+  - value: 0x09B7
+    name: 'Bout Labs, LLC'
+
+  - value: 0x09B6
+    name: 'Pegasus Technologies, Inc.'
+
+  - value: 0x09B5
+    name: 'AUTEC Gesellschaft fuer Automationstechnik mbH'
+
+  - value: 0x09B4
+    name: 'PentaLock Aps.'
+
+  - value: 0x09B3
+    name: 'BlueX Microelectronics Corp Ltd.'
+
+  - value: 0x09B2
+    name: 'DYPHI'
+
+  - value: 0x09B1
+    name: 'BLINQY'
+
+  - value: 0x09B0
+    name: 'Deublin Company, LLC'
+
+  - value: 0x09AF
+    name: 'ifLink Open Community'
+
+  - value: 0x09AE
+    name: 'Pozyx NV'
+
+  - value: 0x09AD
+    name: 'Narhwall Inc.'
+
+  - value: 0x09AC
+    name: 'Ambiq'
+
+  - value: 0x09AB
+    name: 'DashLogic, Inc.'
+
+  - value: 0x09AA
+    name: 'PHOTODYNAMIC INCORPORATED'
+
+  - value: 0x09A9
+    name: 'Nippon Ceramic Co.,Ltd.'
+
+  - value: 0x09A8
+    name: 'KHN Solutions LLC'
+
+  - value: 0x09A7
+    name: 'Paybuddy ApS'
+
+  - value: 0x09A6
+    name: 'BEIJING ELECTRIC VEHICLE CO.,LTD'
+
+  - value: 0x09A5
+    name: 'Security Enhancement Systems, LLC'
+
+  - value: 0x09A4
+    name: 'KUMHO ELECTRICS, INC'
+
+  - value: 0x09A3
+    name: 'ARDUINO SA'
+
+  - value: 0x09A2
+    name: 'ENGAGENOW DATA SCIENCES PRIVATE LIMITED'
+
+  - value: 0x09A1
+    name: 'VOS Systems, LLC'
+
+  - value: 0x09A0
+    name: 'Proof Diagnostics, Inc.'
+
+  - value: 0x099F
+    name: 'Koya Medical, Inc.'
+
+  - value: 0x099E
+    name: 'Step One Limited'
+
+  - value: 0x099D
+    name: 'YKK AP Inc.'
+
+  - value: 0x099C
+    name: 'deister electronic GmbH'
+
+  - value: 0x099B
+    name: 'Sendum Wireless Corporation'
+
+  - value: 0x099A
+    name: 'New Audio LLC'
+
+  - value: 0x0999
+    name: 'eTactica ehf'
+
+  - value: 0x0998
+    name: 'Pixie Dust Technologies, Inc.'
+
+  - value: 0x0997
+    name: 'NextMind'
+
+  - value: 0x0996
+    name: 'C. & E. Fein GmbH'
+
+  - value: 0x0995
+    name: 'Bronkhorst High-Tech B.V.'
+
+  - value: 0x0994
+    name: 'VT42 Pty Ltd'
+
+  - value: 0x0993
+    name: 'Absolute Audio Labs B.V.'
+
+  - value: 0x0992
+    name: 'Big Kaiser Precision Tooling Ltd'
+
+  - value: 0x0991
+    name: 'Telenor ASA'
+
+  - value: 0x0990
+    name: 'Anton Paar GmbH'
+
+  - value: 0x098F
+    name: 'Aktiebolaget Regin'
+
+  - value: 0x098E
+    name: 'ADVEEZ'
+
+  - value: 0x098D
+    name: 'C3-WIRELESS, LLC'
+
+  - value: 0x098C
+    name: 'bGrid B.V.'
+
+  - value: 0x098B
+    name: 'Mequonic Engineering, S.L.'
+
+  - value: 0x098A
+    name: 'Biovigil'
+
+  - value: 0x0989
+    name: 'WIKA Alexander Wiegand SE & Co.KG'
+
+  - value: 0x0988
+    name: 'BHM-Tech Produktionsgesellschaft m.b.H'
+
+  - value: 0x0987
+    name: 'TSE BRAKES, INC.'
+
+  - value: 0x0986
+    name: 'Cello Hill, LLC'
+
+  - value: 0x0985
+    name: 'Lumos Health Inc.'
+
+  - value: 0x0984
+    name: 'TeraTron GmbH'
+
+  - value: 0x0983
+    name: 'Feedback Sports LLC'
+
+  - value: 0x0982
+    name: 'ELPRO-BUCHS AG'
+
+  - value: 0x0981
+    name: 'Bernard Krone Holding SE & Co.KG'
+
+  - value: 0x0980
+    name: 'DEKRA TESTING AND CERTIFICATION, S.A.U.'
+
+  - value: 0x097F
+    name: 'ISEMAR S.R.L.'
+
+  - value: 0x097E
+    name: 'SonicSensory Inc'
+
+  - value: 0x097D
+    name: 'CLB B.V.'
+
+  - value: 0x097C
+    name: 'Thorley Industries, LLC'
+
+  - value: 0x097B
+    name: 'CTEK Sweden AB'
+
+  - value: 0x097A
+    name: 'CORE CORPORATION'
+
+  - value: 0x0979
+    name: 'BIOTRONIK SE & Co. KG'
+
+  - value: 0x0978
+    name: 'ZifferEins GmbH & Co. KG'
+
+  - value: 0x0977
+    name: 'TOYOTA motor corporation'
+
+  - value: 0x0976
+    name: 'Fauna Audio GmbH'
+
+  - value: 0x0975
+    name: 'BlueIOT(Beijing) Technology Co.,Ltd'
+
+  - value: 0x0974
+    name: 'ABEYE'
+
+  - value: 0x0973
+    name: 'Popit Oy'
+
+  - value: 0x0972
+    name: 'Closed Joint Stock Company "Zavod Flometr" ("Zavod Flometr" CJSC)'
+
+  - value: 0x0971
+    name: 'GA'
+
+  - value: 0x0970
+    name: 'IBA Dosimetry GmbH'
+
+  - value: 0x096F
+    name: 'Lund Motion Products, Inc.'
+
+  - value: 0x096E
+    name: 'Band Industries, inc.'
+
+  - value: 0x096D
+    name: 'Gunwerks, LLC'
+
+  - value: 0x096C
+    name: '9374-7319 Quebec inc'
+
+  - value: 0x096B
+    name: 'Guide ID B.V.'
+
+  - value: 0x096A
+    name: 'dricos, Inc.'
+
+  - value: 0x0969
+    name: 'Woan Technology (Shenzhen) Co., Ltd.'
+
+  - value: 0x0968
+    name: 'Actev Motors, Inc.'
+
+  - value: 0x0967
+    name: 'Neo Materials and Consulting Inc.'
+
+  - value: 0x0966
+    name: 'PointGuard, LLC'
+
+  - value: 0x0965
+    name: 'Asahi Kasei Corporation'
+
+  - value: 0x0964
+    name: 'Countrymate Technology Limited'
+
+  - value: 0x0963
+    name: 'Moonbird BV'
+
+  - value: 0x0962
+    name: 'GL Solutions K.K.'
+
+  - value: 0x0961
+    name: 'Linkura AB'
+
+  - value: 0x0960
+    name: 'Sena Technologies Inc.'
+
+  - value: 0x095F
+    name: 'NUANCE HEARING LTD'
+
+  - value: 0x095E
+    name: 'BioEchoNet inc.'
+
+  - value: 0x095D
+    name: 'Electronic Theatre Controls'
+
+  - value: 0x095C
+    name: 'LogiLube, LLC'
+
+  - value: 0x095B
+    name: 'Lismore Instruments Limited'
+
+  - value: 0x095A
+    name: 'Selekt Bilgisayar, lletisim Urunleri lnsaat Sanayi ve Ticaret Limited Sirketi'
+
+  - value: 0x0959
+    name: 'HerdDogg, Inc'
+
+  - value: 0x0958
+    name: 'ZTE Corporation'
+
+  - value: 0x0957
+    name: 'Ohsung Electronics'
+
+  - value: 0x0956
+    name: 'Kerlink'
+
+  - value: 0x0955
+    name: 'Breville Group'
+
+  - value: 0x0954
+    name: 'Julbo'
+
+  - value: 0x0953
+    name: 'LogiLube, LLC'
+
+  - value: 0x0952
+    name: 'Apptricity Corporation'
+
+  - value: 0x0951
+    name: 'PPRS'
+
+  - value: 0x0950
+    name: 'Capetech'
+
+  - value: 0x094F
+    name: 'Limited Liability Company "Mikrotikls"'
+
+  - value: 0x094E
+    name: 'PassiveBolt, Inc.'
+
+  - value: 0x094D
+    name: 'tkLABS INC.'
+
+  - value: 0x094C
+    name: 'GimmiSys GmbH'
+
+  - value: 0x094B
+    name: 'Kindeva Drug Delivery L.P.'
+
+  - value: 0x094A
+    name: 'Zwift, Inc.'
+
+  - value: 0x0949
+    name: 'Metronom Health Europe'
+
+  - value: 0x0948
+    name: 'Wearable Link Limited'
+
+  - value: 0x0947
+    name: 'First Light Technologies Ltd.'
+
+  - value: 0x0946
+    name: 'AMC International Alfa Metalcraft Corporation AG'
+
+  - value: 0x0945
+    name: 'Globe (Jiangsu) Co., Ltd'
+
+  - value: 0x0944
+    name: 'Agitron d.o.o.'
+
+  - value: 0x0943
+    name: 'Reserved'
+
+  - value: 0x0942
+    name: 'TRANSSION HOLDINGS LIMITED'
+
+  - value: 0x0941
+    name: 'Rivian Automotive, LLC'
+
+  - value: 0x0940
+    name: 'Hero Workout GmbH'
+
+  - value: 0x093F
+    name: 'JEPICO Corporation'
+
+  - value: 0x093E
+    name: 'Catalyft Labs, Inc.'
+
+  - value: 0x093D
+    name: 'Adolf Wuerth GmbH & Co KG'
+
+  - value: 0x093C
+    name: 'Xenoma Inc.'
+
+  - value: 0x093B
+    name: 'ENSESO LLC'
+
+  - value: 0x093A
+    name: 'LinkedSemi Microelectronics (Xiamen) Co., Ltd'
+
+  - value: 0x0939
+    name: 'ASTEM Co.,Ltd.'
+
+  - value: 0x0938
+    name: 'Henway Technologies, LTD.'
+
+  - value: 0x0937
+    name: 'RealThingks GmbH'
+
+  - value: 0x0936
+    name: 'Elekon AG'
+
+  - value: 0x0935
+    name: 'Reconnect, Inc.'
+
+  - value: 0x0934
+    name: 'KiteSpring Inc.'
+
+  - value: 0x0933
+    name: 'SRAM'
+
+  - value: 0x0932
+    name: 'BarVision, LLC'
+
+  - value: 0x0931
+    name: 'BREATHINGS Co., Ltd.'
+
+  - value: 0x0930
+    name: 'James Walker RotaBolt Limited'
+
+  - value: 0x092F
+    name: 'C.O.B.O. SpA'
+
+  - value: 0x092E
+    name: 'PS GmbH'
+
+  - value: 0x092D
+    name: 'Leggett & Platt, Incorporated'
+
+  - value: 0x092C
+    name: 'PCI Private Limited'
+
+  - value: 0x092B
+    name: 'TekHome'
+
+  - value: 0x092A
+    name: 'Sappl Verwaltungs- und Betriebs GmbH'
+
+  - value: 0x0929
+    name: 'Qingdao Haier Technology Co., Ltd.'
+
+  - value: 0x0928
+    name: 'AiRISTA'
+
+  - value: 0x0927
+    name: 'ROOQ GmbH'
+
+  - value: 0x0926
+    name: 'Gooligum Technologies Pty Ltd'
+
+  - value: 0x0925
+    name: 'Yukai Engineering Inc.'
+
+  - value: 0x0924
+    name: 'Fundacion Tecnalia Research and Innovation'
+
+  - value: 0x0923
+    name: 'JSB TECH PTE LTD'
+
+  - value: 0x0922
+    name: 'Shanghai MXCHIP Information Technology Co., Ltd.'
+
+  - value: 0x0921
+    name: 'KAHA PTE. LTD.'
+
+  - value: 0x0920
+    name: 'Omnisense Limited'
+
+  - value: 0x091F
+    name: 'Myzee Technology'
+
+  - value: 0x091E
+    name: 'Melbot Studios, Sociedad Limitada'
+
+  - value: 0x091D
+    name: 'Innokind, Inc.'
+
+  - value: 0x091C
+    name: 'Oblamatik AG'
+
+  - value: 0x091B
+    name: 'Luminostics, Inc.'
+
+  - value: 0x091A
+    name: 'Albertronic BV'
+
+  - value: 0x0919
+    name: 'NO SMD LIMITED'
+
+  - value: 0x0918
+    name: 'Technosphere Labs Pvt. Ltd.'
+
+  - value: 0x0917
+    name: 'ASR Microelectronics(ShenZhen)Co., Ltd.'
+
+  - value: 0x0916
+    name: 'Ambient Sensors LLC'
+
+  - value: 0x0915
+    name: 'Honda Motor Co., Ltd.'
+
+  - value: 0x0914
+    name: 'INEO-SENSE'
+
+  - value: 0x0913
+    name: 'Braveheart Wireless, Inc.'
+
+  - value: 0x0912
+    name: 'Nerbio Medical Software Platforms Inc'
+
+  - value: 0x0911
+    name: 'Douglas Lighting Controls Inc.'
+
+  - value: 0x0910
+    name: 'ASR Microelectronics (Shanghai) Co., Ltd.'
+
+  - value: 0x090F
+    name: 'VC Inc.'
+
+  - value: 0x090E
+    name: 'OPTIMUSIOT TECH LLP'
+
+  - value: 0x090D
+    name: 'IOT Invent GmbH'
+
+  - value: 0x090C
+    name: 'Radiawave Technologies Co.,Ltd.'
+
+  - value: 0x090B
+    name: 'EMBR labs, INC'
+
+  - value: 0x090A
+    name: 'Zhuhai Hoksi Technology CO.,LTD'
+
+  - value: 0x0909
+    name: '70mai Co.,Ltd.'
+
+  - value: 0x0908
+    name: 'Pinpoint Innovations Limited'
+
+  - value: 0x0907
+    name: 'User Hello, LLC'
+
+  - value: 0x0906
+    name: 'Scope Logistical Solutions'
+
+  - value: 0x0905
+    name: 'Yandex Services AG'
+
+  - value: 0x0904
+    name: 'SUNCORPORATION'
+
+  - value: 0x0903
+    name: 'DATAMARS, Inc.'
+
+  - value: 0x0902
+    name: 'TSC Auto-ID Technology Co., Ltd.'
+
+  - value: 0x0901
+    name: 'Lucimed'
+
+  - value: 0x0900
+    name: 'Beijing Zizai Technology Co., LTD.'
+
+  - value: 0x08FF
+    name: 'Plastimold Products, Inc'
+
+  - value: 0x08FE
+    name: 'Ketronixs Sdn Bhd'
+
+  - value: 0x08FD
+    name: 'BioIntelliSense, Inc.'
+
+  - value: 0x08FC
+    name: 'Hill-Rom'
+
+  - value: 0x08FB
+    name: 'Darkglass Electronics Oy'
+
+  - value: 0x08FA
+    name: 'Troo Corporation'
+
+  - value: 0x08F9
+    name: 'Spacelabs Medical Inc.'
+
+  - value: 0x08F8
+    name: 'instagrid GmbH'
+
+  - value: 0x08F7
+    name: 'MTD Products Inc & Affiliates'
+
+  - value: 0x08F6
+    name: 'Dermal Photonics Corporation'
+
+  - value: 0x08F5
+    name: 'Tymtix Technologies Private Limited'
+
+  - value: 0x08F4
+    name: 'Kodimo Technologies Company Limited'
+
+  - value: 0x08F3
+    name: 'PSP - Pauli Services & Products GmbH'
+
+  - value: 0x08F2
+    name: 'Microoled'
+
+  - value: 0x08F1
+    name: 'The L.S. Starrett Company'
+
+  - value: 0x08F0
+    name: 'Joovv, Inc.'
+
+  - value: 0x08EF
+    name: 'Cumulus Digital Systems, Inc'
+
+  - value: 0x08EE
+    name: 'Askey Computer Corp.'
+
+  - value: 0x08ED
+    name: 'IMI Hydronic Engineering International SA'
+
+  - value: 0x08EC
+    name: 'Denso Corporation'
+
+  - value: 0x08EB
+    name: 'Beijing Big Moment Technology Co., Ltd.'
+
+  - value: 0x08EA
+    name: 'COWBELL ENGINEERING CO.,LTD.'
+
+  - value: 0x08E9
+    name: 'Taiwan Intelligent Home Corp.'
+
+  - value: 0x08E8
+    name: 'Naonext'
+
+  - value: 0x08E7
+    name: 'Barrot Technology Co.,Ltd.'
+
+  - value: 0x08E6
+    name: 'Eneso Tecnologia de Adaptacion S.L.'
+
+  - value: 0x08E5
+    name: 'Crowd Connected Ltd'
+
+  - value: 0x08E4
+    name: 'Rashidov ltd'
+
+  - value: 0x08E3
+    name: 'Republic Wireless, Inc.'
+
+  - value: 0x08E2
+    name: 'Shenzhen Simo Technology co. LTD'
+
+  - value: 0x08E1
+    name: 'KOZO KEIKAKU ENGINEERING Inc.'
+
+  - value: 0x08E0
+    name: 'Philia Technology'
+
+  - value: 0x08DF
+    name: 'IRIS OHYAMA CO.,LTD.'
+
+  - value: 0x08DE
+    name: 'TE Connectivity Corporation'
+
+  - value: 0x08DD
+    name: 'code-Q'
+
+  - value: 0x08DC
+    name: 'SHENZHEN AUKEY E BUSINESS CO., LTD'
+
+  - value: 0x08DB
+    name: 'Tertium Technology'
+
+  - value: 0x08DA
+    name: 'Miridia Technology Incorporated'
+
+  - value: 0x08D9
+    name: 'Pointr Labs Limited'
+
+  - value: 0x08D8
+    name: 'WARES'
+
+  - value: 0x08D7
+    name: 'Inovonics Corp'
+
+  - value: 0x08D6
+    name: 'Nome Oy'
+
+  - value: 0x08D5
+    name: 'KEYes'
+
+  - value: 0x08D4
+    name: 'ADATA Technology Co., LTD.'
+
+  - value: 0x08D3
+    name: 'Novel Bits, LLC'
+
+  - value: 0x08D2
+    name: 'Virscient Limited'
+
+  - value: 0x08D1
+    name: 'Sensovium Inc.'
+
+  - value: 0x08D0
+    name: 'ESTOM Infotech Kft.'
+
+  - value: 0x08CF
+    name: 'betternotstealmybike UG (with limited liability)'
+
+  - value: 0x08CE
+    name: 'ZIMI CORPORATION'
+
+  - value: 0x08CD
+    name: 'ifly'
+
+  - value: 0x08CC
+    name: 'TGM TECHNOLOGY CO., LTD.'
+
+  - value: 0x08CB
+    name: 'JT INNOVATIONS LIMITED'
+
+  - value: 0x08CA
+    name: 'Nubia Technology Co.,Ltd.'
+
+  - value: 0x08C9
+    name: 'Noventa AG'
+
+  - value: 0x08C8
+    name: 'Liteboxer Technologies Inc.'
+
+  - value: 0x08C7
+    name: 'Monadnock Systems Ltd.'
+
+  - value: 0x08C6
+    name: 'Integra Optics Inc'
+
+  - value: 0x08C5
+    name: 'J. Wagner GmbH'
+
+  - value: 0x08C4
+    name: 'CellAssist, LLC'
+
+  - value: 0x08C3
+    name: 'CHIPOLO d.o.o.'
+
+  - value: 0x08C2
+    name: 'Lindinvent AB'
+
+  - value: 0x08C1
+    name: 'Rayden.Earth LTD'
+
+  - value: 0x08C0
+    name: 'Accent Advanced Systems SLU'
+
+  - value: 0x08BF
+    name: 'SIRC Co., Ltd.'
+
+  - value: 0x08BE
+    name: 'ubisys technologies GmbH'
+
+  - value: 0x08BD
+    name: 'bf1systems limited'
+
+  - value: 0x08BC
+    name: 'Prevayl Limited'
+
+  - value: 0x08BB
+    name: 'Tokai-rika co.,ltd.'
+
+  - value: 0x08BA
+    name: 'HYPER ICE, INC.'
+
+  - value: 0x08B9
+    name: 'U-Shin Ltd.'
+
+  - value: 0x08B8
+    name: 'Check Technology Solutions LLC'
+
+  - value: 0x08B7
+    name: 'ABB Inc'
+
+  - value: 0x08B6
+    name: 'Boehringer Ingelheim Vetmedica GmbH'
+
+  - value: 0x08B5
+    name: 'TransferFi'
+
+  - value: 0x08B4
+    name: 'Sengled Co., Ltd.'
+
+  - value: 0x08B3
+    name: 'IONIQ Skincare GmbH & Co. KG'
+
+  - value: 0x08B2
+    name: 'PF SCHWEISSTECHNOLOGIE GMBH'
+
+  - value: 0x08B1
+    name: 'CORE|vision BV'
+
+  - value: 0x08B0
+    name: 'Trivedi Advanced Technologies LLC'
+
+  - value: 0x08AF
+    name: 'Polidea Sp. z o.o.'
+
+  - value: 0x08AE
+    name: 'Moticon ReGo AG'
+
+  - value: 0x08AD
+    name: 'Kayamatics Limited'
+
+  - value: 0x08AC
+    name: 'Topre Corporation'
+
+  - value: 0x08AB
+    name: 'Coburn Technology, LLC'
+
+  - value: 0x08AA
+    name: 'SZ DJI TECHNOLOGY CO.,LTD'
+
+  - value: 0x08A9
+    name: 'Fraunhofer IIS'
+
+  - value: 0x08A8
+    name: 'Shanghai Kfcube Inc'
+
+  - value: 0x08A7
+    name: 'TGR 1.618 Limited'
+
+  - value: 0x08A6
+    name: 'Intelligenceworks Inc.'
+
+  - value: 0x08A5
+    name: 'UMEHEAL Ltd'
+
+  - value: 0x08A4
+    name: 'Realme Chongqing Mobile Telecommunications Corp., Ltd.'
+
+  - value: 0x08A3
+    name: 'Hoffmann SE'
+
+  - value: 0x08A2
+    name: 'Epic Systems Co., Ltd.'
+
+  - value: 0x08A1
+    name: 'EXEO TECH CORPORATION'
+
+  - value: 0x08A0
+    name: 'Aclara Technologies LLC'
+
+  - value: 0x089F
+    name: 'Witschi Electronic Ltd'
+
+  - value: 0x089E
+    name: 'i-SENS, inc.'
+
+  - value: 0x089D
+    name: 'J-J.A.D.E. Enterprise LLC'
+
+  - value: 0x089C
+    name: 'Embedded Devices Co. Company'
+
+  - value: 0x089B
+    name: 'Saucon Technologies'
+
+  - value: 0x089A
+    name: 'Private limited company "Teltonika"'
+
+  - value: 0x0899
+    name: 'SFS unimarket AG'
+
+  - value: 0x0898
+    name: 'Sensibo, Inc.'
+
+  - value: 0x0897
+    name: 'Current Lighting Solutions LLC'
+
+  - value: 0x0896
+    name: 'Nokian Renkaat Oyj'
+
+  - value: 0x0895
+    name: 'Gimer medical'
+
+  - value: 0x0894
+    name: 'EPIFIT'
+
+  - value: 0x0893
+    name: 'Maytronics Ltd'
+
+  - value: 0x0892
+    name: 'Ingenieurbuero Birnfeld UG (haftungsbeschraenkt)'
+
+  - value: 0x0891
+    name: 'SmartWireless GmbH & Co. KG'
+
+  - value: 0x0890
+    name: 'NICHIEI INTEC CO., LTD.'
+
+  - value: 0x088F
+    name: 'Tait International Limited'
+
+  - value: 0x088E
+    name: 'GIGA-TMS INC'
+
+  - value: 0x088D
+    name: 'Soliton Systems K.K.'
+
+  - value: 0x088C
+    name: 'GB Solution co.,Ltd'
+
+  - value: 0x088B
+    name: 'Tricorder Arraay Technologies LLC'
+
+  - value: 0x088A
+    name: 'sclak s.r.l.'
+
+  - value: 0x0889
+    name: 'XANTHIO'
+
+  - value: 0x0888
+    name: 'EnPointe Fencing Pty Ltd'
+
+  - value: 0x0887
+    name: 'Hydro-Gear Limited Partnership'
+
+  - value: 0x0886
+    name: 'Movella Technologies B.V.'
+
+  - value: 0x0885
+    name: 'LEVOLOR INC'
+
+  - value: 0x0884
+    name: 'Controlid Industria, Comercio de Hardware e Servicos de Tecnologia Ltda'
+
+  - value: 0x0883
+    name: 'Wintersteiger AG'
+
+  - value: 0x0882
+    name: 'PSYONIC, Inc.'
+
+  - value: 0x0881
+    name: 'Optalert'
+
+  - value: 0x0880
+    name: 'imagiLabs AB'
+
+  - value: 0x087F
+    name: 'Phillips Connect Technologies LLC'
+
+  - value: 0x087E
+    name: '1bar.net Limited'
+
+  - value: 0x087D
+    name: 'Konftel AB'
+
+  - value: 0x087C
+    name: 'Crosscan GmbH'
+
+  - value: 0x087B
+    name: 'BYSTAMP'
+
+  - value: 0x087A
+    name: 'ZRF, LLC'
+
+  - value: 0x0879
+    name: 'MIZUNO Corporation'
+
+  - value: 0x0878
+    name: 'The Chamberlain Group, Inc.'
+
+  - value: 0x0877
+    name: 'Tome, Inc.'
+
+  - value: 0x0876
+    name: 'SmartResQ ApS'
+
+  - value: 0x0875
+    name: 'Berner International LLC'
+
+  - value: 0x0874
+    name: 'Treegreen Limited'
+
+  - value: 0x0873
+    name: 'Innophase Incorporated'
+
+  - value: 0x0872
+    name: '11 Health & Technologies Limited'
+
+  - value: 0x0871
+    name: 'Dension Elektronikai Kft.'
+
+  - value: 0x0870
+    name: 'Wyze Labs, Inc'
+
+  - value: 0x086F
+    name: 'Trackunit A/S'
+
+  - value: 0x086E
+    name: 'Vorwerk Elektrowerke GmbH & Co. KG'
+
+  - value: 0x086D
+    name: 'Biometrika d.o.o.'
+
+  - value: 0x086C
+    name: 'Revvo Technologies, Inc.'
+
+  - value: 0x086B
+    name: 'Pacific Track, LLC'
+
+  - value: 0x086A
+    name: 'Odic Incorporated'
+
+  - value: 0x0869
+    name: 'EVVA Sicherheitstechnologie GmbH'
+
+  - value: 0x0868
+    name: 'WIOsense GmbH & Co. KG'
+
+  - value: 0x0867
+    name: 'Western Digital Techologies, Inc.'
+
+  - value: 0x0866
+    name: 'LAONZ Co.,Ltd'
+
+  - value: 0x0865
+    name: 'Emergency Lighting Products Limited'
+
+  - value: 0x0864
+    name: 'Rafaelmicro'
+
+  - value: 0x0863
+    name: 'Yo-tronics Technology Co., Ltd.'
+
+  - value: 0x0862
+    name: 'SmartDrive'
+
+  - value: 0x0861
+    name: 'SmartSensor Labs Ltd'
+
+  - value: 0x0860
+    name: 'Alflex Products B.V.'
+
+  - value: 0x085F
+    name: 'COMPEGPS TEAM,SOCIEDAD LIMITADA'
+
+  - value: 0x085E
+    name: 'Krog Systems LLC'
+
+  - value: 0x085D
+    name: 'Guilin Zhishen Information Technology Co.,Ltd.'
+
+  - value: 0x085C
+    name: 'ACOS CO.,LTD.'
+
+  - value: 0x085B
+    name: 'Nisshinbo Micro Devices Inc.'
+
+  - value: 0x085A
+    name: 'DAKATECH'
+
+  - value: 0x0859
+    name: 'BlueUp'
+
+  - value: 0x0858
+    name: 'SOUNDBOKS'
+
+  - value: 0x0857
+    name: 'Parsyl Inc'
+
+  - value: 0x0856
+    name: 'Canopy Growth Corporation'
+
+  - value: 0x0855
+    name: 'Helios Sports, Inc.'
+
+  - value: 0x0854
+    name: 'Tap Sound System'
+
+  - value: 0x0853
+    name: 'Pektron Group Limited'
+
+  - value: 0x0852
+    name: 'Cognosos, Inc.'
+
+  - value: 0x0851
+    name: 'Subeca, Inc.'
+
+  - value: 0x0850
+    name: 'Yealink (Xiamen) Network Technology Co.,LTD'
+
+  - value: 0x084F
+    name: 'Embedded Fitness B.V.'
+
+  - value: 0x084E
+    name: 'Carol Cole Company'
+
+  - value: 0x084D
+    name: 'SafePort'
+
+  - value: 0x084C
+    name: 'ORSO Inc.'
+
+  - value: 0x084B
+    name: 'Biotechware SRL'
+
+  - value: 0x084A
+    name: 'ARCOM'
+
+  - value: 0x0849
+    name: 'Dopple Technologies B.V.'
+
+  - value: 0x0848
+    name: 'JUJU JOINTS CANADA CORP.'
+
+  - value: 0x0847
+    name: 'DNANUDGE LIMITED'
+
+  - value: 0x0846
+    name: 'USound GmbH'
+
+  - value: 0x0845
+    name: 'Dometic Corporation'
+
+  - value: 0x0844
+    name: 'Pepperl + Fuchs GmbH'
+
+  - value: 0x0843
+    name: 'FRAGRANCE DELIVERY TECHNOLOGIES LTD'
+
+  - value: 0x0842
+    name: 'Tangshan HongJia electronic technology co., LTD.'
+
+  - value: 0x0841
+    name: 'General Luminaire (Shanghai) Co., Ltd.'
+
+  - value: 0x0840
+    name: 'Down Range Systems LLC'
+
+  - value: 0x083F
+    name: 'D-Link Corp.'
+
+  - value: 0x083E
+    name: 'Zorachka LTD'
+
+  - value: 0x083D
+    name: 'Tokenize, Inc.'
+
+  - value: 0x083C
+    name: 'BeerTech LTD'
+
+  - value: 0x083B
+    name: 'Piaggio Fast Forward'
+
+  - value: 0x083A
+    name: 'BPW Bergische Achsen Kommanditgesellschaft'
+
+  - value: 0x0839
+    name: 'A puissance 3'
+
+  - value: 0x0838
+    name: 'Etymotic Research, Inc.'
+
+  - value: 0x0837
+    name: 'vivo Mobile Communication Co., Ltd.'
+
+  - value: 0x0836
+    name: 'Bitwards Oy'
+
+  - value: 0x0835
+    name: 'Canopy Growth Corporation'
+
+  - value: 0x0834
+    name: 'RIKEN KEIKI CO., LTD.,'
+
+  - value: 0x0833
+    name: 'Conneqtech B.V.'
+
+  - value: 0x0832
+    name: 'Intermotive,Inc.'
+
+  - value: 0x0831
+    name: 'Foxble, LLC'
+
+  - value: 0x0830
+    name: 'Core Health and Fitness LLC'
+
+  - value: 0x082F
+    name: 'Blippit AB'
+
+  - value: 0x082E
+    name: 'ABB S.p.A.'
+
+  - value: 0x082D
+    name: 'INCUS PERFORMANCE LTD.'
+
+  - value: 0x082C
+    name: 'INGICS TECHNOLOGY CO., LTD.'
+
+  - value: 0x082B
+    name: 'shenzhen fitcare electronics Co.,Ltd'
+
+  - value: 0x082A
+    name: 'Mitutoyo Corporation'
+
+  - value: 0x0829
+    name: 'HEXAGON METROLOGY DIVISION ROMER'
+
+  - value: 0x0828
+    name: 'Shanghai Suisheng Information Technology Co., Ltd.'
+
+  - value: 0x0827
+    name: 'Kickmaker'
+
+  - value: 0x0826
+    name: 'Hyundai Motor Company'
+
+  - value: 0x0825
+    name: 'CME PTE. LTD.'
+
+  - value: 0x0824
+    name: '8Power Limited'
+
+  - value: 0x0823
+    name: 'Nexite Ltd'
+
+  - value: 0x0822
+    name: 'adafruit industries'
+
+  - value: 0x0821
+    name: 'INOVA Geophysical, Inc.'
+
+  - value: 0x0820
+    name: 'Brilliant Home Technology, Inc.'
+
+  - value: 0x081F
+    name: 'eSenseLab LTD'
+
+  - value: 0x081E
+    name: 'iNFORM Technology GmbH'
+
+  - value: 0x081D
+    name: 'Potrykus Holdings and Development LLC'
+
+  - value: 0x081C
+    name: 'Bobrick Washroom Equipment, Inc.'
+
+  - value: 0x081B
+    name: 'DIM3'
+
+  - value: 0x081A
+    name: 'Shenzhen Conex'
+
+  - value: 0x0819
+    name: 'Hunter Douglas Inc'
+
+  - value: 0x0818
+    name: 'tatwah SA'
+
+  - value: 0x0817
+    name: 'Wangs Alliance Corporation'
+
+  - value: 0x0816
+    name: 'SPICA SYSTEMS LLC'
+
+  - value: 0x0815
+    name: 'SKC Inc'
+
+  - value: 0x0814
+    name: 'Ossur hf.'
+
+  - value: 0x0813
+    name: 'Flextronics International USA Inc.'
+
+  - value: 0x0812
+    name: 'Mstream Technologies., Inc.'
+
+  - value: 0x0811
+    name: 'Becker Antriebe GmbH'
+
+  - value: 0x0810
+    name: 'LECO Corporation'
+
+  - value: 0x080F
+    name: 'Paradox Engineering SA'
+
+  - value: 0x080E
+    name: 'TATTCOM LLC'
+
+  - value: 0x080D
+    name: 'Azbil Co.'
+
+  - value: 0x080C
+    name: 'Ingy B.V.'
+
+  - value: 0x080B
+    name: 'Nanoleaf Canada Limited'
+
+  - value: 0x080A
+    name: 'Altaneos'
+
+  - value: 0x0809
+    name: 'Trulli Audio'
+
+  - value: 0x0808
+    name: 'SISTEMAS KERN, SOCIEDAD ANÓMINA'
+
+  - value: 0x0807
+    name: 'ECD Electronic Components GmbH Dresden'
+
+  - value: 0x0806
+    name: 'TYRI Sweden AB'
+
+  - value: 0x0805
+    name: 'Urbanminded Ltd'
+
+  - value: 0x0804
+    name: 'Andon Health Co.,Ltd'
+
+  - value: 0x0803
+    name: 'Domintell s.a.'
+
+  - value: 0x0802
+    name: 'NantSound, Inc.'
+
+  - value: 0x0801
+    name: 'CRONUS ELECTRONICS LTD'
+
+  - value: 0x0800
+    name: 'Optek'
+
+  - value: 0x07FF
+    name: 'maxon motor ltd.'
+
+  - value: 0x07FE
+    name: 'BIROTA'
+
+  - value: 0x07FD
+    name: 'JSK CO., LTD.'
+
+  - value: 0x07FC
+    name: 'Renault SA'
+
+  - value: 0x07FB
+    name: 'Access Co., Ltd'
+
+  - value: 0x07FA
+    name: 'Klipsch Group, Inc.'
+
+  - value: 0x07F9
+    name: 'Direct Communication Solutions, Inc.'
+
+  - value: 0x07F8
+    name: 'quip NYC Inc.'
+
+  - value: 0x07F7
+    name: 'Cesar Systems Ltd.'
+
+  - value: 0x07F6
+    name: 'Shenzhen TonliScience and Technology Development Co.,Ltd'
+
+  - value: 0x07F5
+    name: 'Byton North America Corporation'
+
+  - value: 0x07F4
+    name: 'MEDIRLAB Orvosbiologiai Fejleszto Korlatolt Felelossegu Tarsasag'
+
+  - value: 0x07F3
+    name: 'DIGISINE ENERGYTECH CO. LTD.'
+
+  - value: 0x07F2
+    name: 'SERENE GROUP, INC'
+
+  - value: 0x07F1
+    name: 'Zimi Innovations Pty Ltd'
+
+  - value: 0x07F0
+    name: 'e-moola.com Pty Ltd'
+
+  - value: 0x07EF
+    name: 'Aktiebolaget Sandvik Coromant'
+
+  - value: 0x07EE
+    name: 'KidzTek LLC'
+
+  - value: 0x07ED
+    name: 'Joule IQ, INC.'
+
+  - value: 0x07EC
+    name: 'Frecce LLC'
+
+  - value: 0x07EB
+    name: 'NOVABASE S.R.L.'
+
+  - value: 0x07EA
+    name: 'ShapeLog, Inc.'
+
+  - value: 0x07E9
+    name: 'Häfele GmbH & Co KG'
+
+  - value: 0x07E8
+    name: 'Packetcraft, Inc.'
+
+  - value: 0x07E7
+    name: 'Komfort IQ, Inc.'
+
+  - value: 0x07E6
+    name: 'Waybeyond Limited'
+
+  - value: 0x07E5
+    name: 'Minut, Inc.'
+
+  - value: 0x07E4
+    name: 'Geeksme S.L.'
+
+  - value: 0x07E3
+    name: 'Airoha Technology Corp.'
+
+  - value: 0x07E2
+    name: 'Alfred Kaercher SE & Co. KG'
+
+  - value: 0x07E1
+    name: 'Lucie Labs'
+
+  - value: 0x07E0
+    name: 'Edifier International Limited'
+
+  - value: 0x07DF
+    name: 'Snap-on Incorporated'
+
+  - value: 0x07DE
+    name: 'Unlimited Engineering SL'
+
+  - value: 0x07DD
+    name: 'Linear Circuits'
+
+  - value: 0x07DC
+    name: 'ThingOS GmbH & Co KG'
+
+  - value: 0x07DB
+    name: 'Remedee Labs'
+
+  - value: 0x07DA
+    name: 'STARLITE Co., Ltd.'
+
+  - value: 0x07D9
+    name: 'Micro-Design, Inc.'
+
+  - value: 0x07D8
+    name: 'SOLUTIONS AMBRA INC.'
+
+  - value: 0x07D7
+    name: 'Nanjing Qinheng Microelectronics Co., Ltd'
+
+  - value: 0x07D6
+    name: 'ecobee Inc.'
+
+  - value: 0x07D5
+    name: 'hoots classic GmbH'
+
+  - value: 0x07D4
+    name: 'Kano Computing Limited'
+
+  - value: 0x07D3
+    name: 'LIVNEX Co.,Ltd.'
+
+  - value: 0x07D2
+    name: 'React Accessibility Limited'
+
+  - value: 0x07D1
+    name: 'Shanghai Panchip Microelectronics Co., Ltd'
+
+  - value: 0x07D0
+    name: 'Hangzhou Tuya Information  Technology Co., Ltd'
+
+  - value: 0x07CF
+    name: 'NeoSensory, Inc.'
+
+  - value: 0x07CE
+    name: 'Shanghai Top-Chip Microelectronics Tech. Co., LTD'
+
+  - value: 0x07CD
+    name: 'Smart Wave Technologies Canada Inc'
+
+  - value: 0x07CC
+    name: 'Barnacle Systems Inc.'
+
+  - value: 0x07CB
+    name: 'West Pharmaceutical Services, Inc.'
+
+  - value: 0x07CA
+    name: 'Modul-System HH AB'
+
+  - value: 0x07C9
+    name: 'Skullcandy, Inc.'
+
+  - value: 0x07C8
+    name: 'WRLDS Creations AB'
+
+  - value: 0x07C7
+    name: 'iaconicDesign Inc.'
+
+  - value: 0x07C6
+    name: 'Bluenetics GmbH'
+
+  - value: 0x07C5
+    name: 'June Life, Inc.'
+
+  - value: 0x07C4
+    name: 'Johnson Health Tech NA'
+
+  - value: 0x07C3
+    name: 'CIMTechniques, Inc.'
+
+  - value: 0x07C2
+    name: 'Radinn AB'
+
+  - value: 0x07C1
+    name: 'A.W. Chesterton Company'
+
+  - value: 0x07C0
+    name: 'Biral AG'
+
+  - value: 0x07BF
+    name: 'REGULA Ltd.'
+
+  - value: 0x07BE
+    name: 'Axentia Technologies AB'
+
+  - value: 0x07BD
+    name: 'Genedrive Diagnostics Ltd'
+
+  - value: 0x07BC
+    name: 'KD CIRCUITS LLC'
+
+  - value: 0x07BB
+    name: 'EPIC S.R.L.'
+
+  - value: 0x07BA
+    name: 'Battery-Biz Inc.'
+
+  - value: 0x07B9
+    name: 'Epona Biotec Limited'
+
+  - value: 0x07B8
+    name: 'iSwip'
+
+  - value: 0x07B7
+    name: 'ETABLISSEMENTS GEORGES RENAULT'
+
+  - value: 0x07B6
+    name: 'Soundbrenner Limited'
+
+  - value: 0x07B5
+    name: 'CRONO CHIP, S.L.'
+
+  - value: 0x07B4
+    name: 'Hormann KG Antriebstechnik'
+
+  - value: 0x07B3
+    name: '2N TELEKOMUNIKACE a.s.'
+
+  - value: 0x07B2
+    name: 'Moeco IOT Inc.'
+
+  - value: 0x07B1
+    name: 'Thomas Dynamics, LLC'
+
+  - value: 0x07B0
+    name: 'GV Concepts Inc.'
+
+  - value: 0x07AF
+    name: 'Hong Kong Bouffalo Lab Limited'
+
+  - value: 0x07AE
+    name: 'Aurea Solucoes Tecnologicas Ltda.'
+
+  - value: 0x07AD
+    name: 'New H3C Technologies Co.,Ltd'
+
+  - value: 0x07AC
+    name: 'LoupeDeck Oy'
+
+  - value: 0x07AB
+    name: 'Granite River Solutions, Inc.'
+
+  - value: 0x07AA
+    name: 'The Kroger Co.'
+
+  - value: 0x07A9
+    name: 'Bruel & Kjaer Sound & Vibration'
+
+  - value: 0x07A8
+    name: 'conbee GmbH'
+
+  - value: 0x07A7
+    name: 'Zume, Inc.'
+
+  - value: 0x07A6
+    name: 'Musen Connect, Inc.'
+
+  - value: 0x07A5
+    name: 'RAB Lighting, Inc.'
+
+  - value: 0x07A4
+    name: 'Xiamen Mage Information Technology Co., Ltd.'
+
+  - value: 0x07A3
+    name: 'Comcast Cable'
+
+  - value: 0x07A2
+    name: 'Roku, Inc.'
+
+  - value: 0x07A1
+    name: 'Apollo Neuroscience, Inc.'
+
+  - value: 0x07A0
+    name: 'Regent Beleuchtungskorper AG'
+
+  - value: 0x079F
+    name: 'Pune Scientific LLP'
+
+  - value: 0x079E
+    name: 'Smartloxx GmbH'
+
+  - value: 0x079D
+    name: 'Digibale Pty Ltd'
+
+  - value: 0x079C
+    name: 'Sky UK Limited'
+
+  - value: 0x079B
+    name: 'CST ELECTRONICS (PROPRIETARY) LIMITED'
+
+  - value: 0x079A
+    name: 'GuangDong Oppo Mobile Telecommunications Corp., Ltd.'
+
+  - value: 0x0799
+    name: 'PlantChoir Inc.'
+
+  - value: 0x0798
+    name: 'HoloKit, Inc.'
+
+  - value: 0x0797
+    name: 'Water-i.d. GmbH'
+
+  - value: 0x0796
+    name: 'StarLeaf Ltd'
+
+  - value: 0x0795
+    name: 'GASTEC CORPORATION'
+
+  - value: 0x0794
+    name: 'The Coca-Cola Company'
+
+  - value: 0x0793
+    name: 'AEV spol. s r.o.'
+
+  - value: 0x0792
+    name: 'Cricut, Inc.'
+
+  - value: 0x0791
+    name: 'Scosche Industries, Inc.'
+
+  - value: 0x0790
+    name: 'KOMPAN A/S'
+
+  - value: 0x078F
+    name: 'Hanna Instruments, Inc.'
+
+  - value: 0x078E
+    name: 'FUJIMIC NIIGATA, INC.'
+
+  - value: 0x078D
+    name: 'Cybex GmbH'
+
+  - value: 0x078C
+    name: 'MINIBREW HOLDING B.V'
+
+  - value: 0x078B
+    name: 'Optikam Tech Inc.'
+
+  - value: 0x078A
+    name: 'The Wildflower Foundation'
+
+  - value: 0x0789
+    name: 'PCB Piezotronics, Inc.'
+
+  - value: 0x0788
+    name: 'BubblyNet, LLC'
+
+  - value: 0x0787
+    name: 'Pangaea Solution'
+
+  - value: 0x0786
+    name: 'HLP Controls Pty Limited'
+
+  - value: 0x0785
+    name: 'O2 Micro, Inc.'
+
+  - value: 0x0784
+    name: 'audifon GmbH & Co. KG'
+
+  - value: 0x0783
+    name: 'ESEMBER LIMITED LIABILITY COMPANY'
+
+  - value: 0x0782
+    name: 'DeviceDrive AS'
+
+  - value: 0x0781
+    name: 'Qingping Technology (Beijing) Co., Ltd.'
+
+  - value: 0x0780
+    name: 'Finch Technologies Ltd.'
+
+  - value: 0x077F
+    name: 'Glenview Software Corporation'
+
+  - value: 0x077E
+    name: 'Sparkage Inc.'
+
+  - value: 0x077D
+    name: 'Sensority, s.r.o.'
+
+  - value: 0x077C
+    name: 'radius co., ltd.'
+
+  - value: 0x077B
+    name: 'AmaterZ, Inc.'
+
+  - value: 0x077A
+    name: 'Niruha Systems Private Limited'
+
+  - value: 0x0779
+    name: 'Loopshore Oy'
+
+  - value: 0x0778
+    name: 'KOAMTAC INC.'
+
+  - value: 0x0777
+    name: 'Cue'
+
+  - value: 0x0776
+    name: 'Cyber Transport Control GmbH'
+
+  - value: 0x0775
+    name: '4eBusiness GmbH'
+
+  - value: 0x0774
+    name: 'C-MAX Asia Limited'
+
+  - value: 0x0773
+    name: 'Echoflex Solutions Inc.'
+
+  - value: 0x0772
+    name: 'Thirdwayv Inc.'
+
+  - value: 0x0771
+    name: 'Corvex Connected Safety'
+
+  - value: 0x0770
+    name: 'InnoCon Medical ApS'
+
+  - value: 0x076F
+    name: 'Successful Endeavours Pty Ltd'
+
+  - value: 0x076E
+    name: 'WuQi technologies, Inc.'
+
+  - value: 0x076D
+    name: 'Graesslin GmbH'
+
+  - value: 0x076C
+    name: 'Noodle Technology inc'
+
+  - value: 0x076B
+    name: 'Engineered Medical Technologies'
+
+  - value: 0x076A
+    name: 'Dmac Mobile Developments, LLC'
+
+  - value: 0x0769
+    name: 'Force Impact Technologies'
+
+  - value: 0x0768
+    name: 'Peloton Interactive Inc.'
+
+  - value: 0x0767
+    name: 'NITTO DENKO ASIA TECHNICAL CENTRE PTE. LTD.'
+
+  - value: 0x0766
+    name: 'ART AND PROGRAM, INC.'
+
+  - value: 0x0765
+    name: 'Voxx International'
+
+  - value: 0x0764
+    name: 'WWZN Information Technology Company Limited'
+
+  - value: 0x0763
+    name: 'PIKOLIN S.L.'
+
+  - value: 0x0762
+    name: 'TerOpta Ltd'
+
+  - value: 0x0761
+    name: 'Mantis Tech LLC'
+
+  - value: 0x0760
+    name: 'Vimar SpA'
+
+  - value: 0x075F
+    name: 'Remote Solution Co., LTD.'
+
+  - value: 0x075E
+    name: 'Katerra Inc.'
+
+  - value: 0x075D
+    name: 'RHOMBUS SYSTEMS, INC.'
+
+  - value: 0x075C
+    name: 'Antitronics Inc.'
+
+  - value: 0x075B
+    name: 'Smart Sensor Devices AB'
+
+  - value: 0x075A
+    name: 'HARMAN CO.,LTD.'
+
+  - value: 0x0759
+    name: 'Shanghai InGeek Cyber Security Co., Ltd.'
+
+  - value: 0x0758
+    name: 'umanSense AB'
+
+  - value: 0x0757
+    name: 'ELA Innovation'
+
+  - value: 0x0756
+    name: 'Lumens For Less, Inc'
+
+  - value: 0x0755
+    name: 'Brother Industries, Ltd'
+
+  - value: 0x0754
+    name: 'Michael Parkin'
+
+  - value: 0x0753
+    name: 'JLG Industries, Inc.'
+
+  - value: 0x0752
+    name: 'Elatec GmbH'
+
+  - value: 0x0751
+    name: 'Changsha JEMO IC Design Co.,Ltd'
+
+  - value: 0x0750
+    name: 'Hamilton Professional Services of Canada Incorporated'
+
+  - value: 0x074F
+    name: 'MEDIATECH S.R.L.'
+
+  - value: 0x074E
+    name: 'EAGLE DETECTION SA'
+
+  - value: 0x074D
+    name: 'Amtech Systems, LLC'
+
+  - value: 0x074C
+    name: 'iopool s.a.'
+
+  - value: 0x074B
+    name: 'Sarvavid Software Solutions LLP'
+
+  - value: 0x074A
+    name: 'Illusory Studios LLC'
+
+  - value: 0x0749
+    name: 'DIAODIAO (Beijing) Technology Co., Ltd.'
+
+  - value: 0x0748
+    name: 'GuangZhou KuGou Computer Technology Co.Ltd'
+
+  - value: 0x0747
+    name: 'OR Technologies Pty Ltd'
+
+  - value: 0x0746
+    name: 'Seitec Elektronik GmbH'
+
+  - value: 0x0745
+    name: 'WIZNOVA, Inc.'
+
+  - value: 0x0744
+    name: 'SOCOMEC'
+
+  - value: 0x0743
+    name: 'Sanofi'
+
+  - value: 0x0742
+    name: 'DML LLC'
+
+  - value: 0x0741
+    name: 'MAC SRL'
+
+  - value: 0x0740
+    name: 'HITIQ LIMITED'
+
+  - value: 0x073F
+    name: 'Beijing Unisoc Technologies Co., Ltd.'
+
+  - value: 0x073E
+    name: 'Bluepack S.R.L.'
+
+  - value: 0x073D
+    name: 'Beijing Hao Heng Tian Tech Co., Ltd.'
+
+  - value: 0x073C
+    name: 'Acubit ApS'
+
+  - value: 0x073B
+    name: 'Fantini Cosmi s.p.a.'
+
+  - value: 0x073A
+    name: 'Chandler Systems Inc.'
+
+  - value: 0x0739
+    name: 'Jiangsu Qinheng Co., Ltd.'
+
+  - value: 0x0738
+    name: 'Glass Security Pte Ltd'
+
+  - value: 0x0737
+    name: 'LLC Navitek'
+
+  - value: 0x0736
+    name: 'Luna XIO, Inc.'
+
+  - value: 0x0735
+    name: 'UpRight Technologies LTD'
+
+  - value: 0x0734
+    name: 'DiUS Computing Pty Ltd'
+
+  - value: 0x0733
+    name: 'Iguanavation, Inc.'
+
+  - value: 0x0732
+    name: 'Dairy Tech, Inc.'
+
+  - value: 0x0731
+    name: 'ABLIC Inc.'
+
+  - value: 0x0730
+    name: 'Wildlife Acoustics, Inc.'
+
+  - value: 0x072F
+    name: 'OnePlus Electronics (Shenzhen) Co., Ltd.'
+
+  - value: 0x072E
+    name: 'Open Platform Systems LLC'
+
+  - value: 0x072D
+    name: 'Safera Oy'
+
+  - value: 0x072C
+    name: 'GWA Hygiene GmbH'
+
+  - value: 0x072B
+    name: 'Bitkey Inc.'
+
+  - value: 0x072A
+    name: 'JMR embedded systems GmbH'
+
+  - value: 0x0729
+    name: 'SwaraLink Technologies'
+
+  - value: 0x0728
+    name: 'Eli Lilly and Company'
+
+  - value: 0x0727
+    name: 'STALKIT AS'
+
+  - value: 0x0726
+    name: 'PHC Corporation'
+
+  - value: 0x0725
+    name: 'Tedee Sp. z o.o.'
+
+  - value: 0x0724
+    name: 'Guangzhou SuperSound Information Technology Co.,Ltd'
+
+  - value: 0x0723
+    name: 'Ford Motor Company'
+
+  - value: 0x0722
+    name: 'Xiamen Eholder Electronics Co.Ltd'
+
+  - value: 0x0721
+    name: 'Clover Network, Inc.'
+
+  - value: 0x0720
+    name: 'Oculeve, Inc.'
+
+  - value: 0x071F
+    name: 'Dongguan Liesheng Electronic Co.Ltd'
+
+  - value: 0x071E
+    name: 'DONGGUAN HELE ELECTRONICS CO., LTD'
+
+  - value: 0x071D
+    name: 'exoTIC Systems'
+
+  - value: 0x071C
+    name: 'F5 Sports, Inc'
+
+  - value: 0x071B
+    name: 'Precor'
+
+  - value: 0x071A
+    name: 'REVSMART WEARABLE HK CO LTD'
+
+  - value: 0x0719
+    name: 'COREIOT PTY LTD'
+
+  - value: 0x0718
+    name: 'IDIBAIX enginneering'
+
+  - value: 0x0717
+    name: 'iQsquare BV'
+
+  - value: 0x0716
+    name: 'Altonics'
+
+  - value: 0x0715
+    name: 'MBARC LABS Inc'
+
+  - value: 0x0714
+    name: 'MindPeace Safety LLC'
+
+  - value: 0x0713
+    name: 'Respiri Limited'
+
+  - value: 0x0712
+    name: 'Bull Group Company Limited'
+
+  - value: 0x0711
+    name: 'ABAX AS'
+
+  - value: 0x0710
+    name: 'Audiodo AB'
+
+  - value: 0x070F
+    name: 'California Things Inc.'
+
+  - value: 0x070E
+    name: 'FiveCo Sarl'
+
+  - value: 0x070D
+    name: 'SmartSnugg Pty Ltd'
+
+  - value: 0x070C
+    name: 'Beijing Winner Microelectronics Co.,Ltd'
+
+  - value: 0x070B
+    name: 'Element Products, Inc.'
+
+  - value: 0x070A
+    name: 'Huf Hülsbeck & Fürst GmbH & Co. KG'
+
+  - value: 0x0709
+    name: 'Carewear Corp.'
+
+  - value: 0x0708
+    name: 'Be Interactive Co., Ltd'
+
+  - value: 0x0707
+    name: 'Essity Hygiene and Health Aktiebolag'
+
+  - value: 0x0706
+    name: 'Wernher von Braun Center for ASdvanced Research'
+
+  - value: 0x0705
+    name: 'AB Electrolux'
+
+  - value: 0x0704
+    name: 'JBX Designs Inc.'
+
+  - value: 0x0703
+    name: 'Beijing Jingdong Century Trading Co., Ltd.'
+
+  - value: 0x0702
+    name: 'Akciju sabiedriba "SAF TEHNIKA"'
+
+  - value: 0x0701
+    name: 'PAFERS TECH'
+
+  - value: 0x0700
+    name: 'TraqFreq LLC'
+
+  - value: 0x06FF
+    name: 'Redpine Signals Inc'
+
+  - value: 0x06FE
+    name: 'Mahr GmbH'
+
+  - value: 0x06FD
+    name: 'ESS Embedded System Solutions Inc.'
+
+  - value: 0x06FC
+    name: 'Tom Communication Industrial Co.,Ltd.'
+
+  - value: 0x06FB
+    name: 'Sartorius AG'
+
+  - value: 0x06FA
+    name: 'Enequi AB'
+
+  - value: 0x06F9
+    name: 'happybrush GmbH'
+
+  - value: 0x06F8
+    name: 'BodyPlus Technology Co.,Ltd'
+
+  - value: 0x06F7
+    name: 'WILKA Schliesstechnik GmbH'
+
+  - value: 0x06F6
+    name: 'Vitulo Plus BV'
+
+  - value: 0x06F5
+    name: 'Vigil Technologies Inc.'
+
+  - value: 0x06F4
+    name: 'Touché Technology Ltd'
+
+  - value: 0x06F3
+    name: 'Alfred International Inc.'
+
+  - value: 0x06F2
+    name: 'Trapper Data AB'
+
+  - value: 0x06F1
+    name: 'Shibutani Co., Ltd.'
+
+  - value: 0x06F0
+    name: 'Chargy Technologies, SL'
+
+  - value: 0x06EF
+    name: 'ALCARE Co., Ltd.'
+
+  - value: 0x06EE
+    name: 'Avantis Systems Limited'
+
+  - value: 0x06ED
+    name: 'J Neades Ltd'
+
+  - value: 0x06EC
+    name: 'Sigur'
+
+  - value: 0x06EB
+    name: 'Houston Radar LLC'
+
+  - value: 0x06EA
+    name: 'SafeLine Sweden AB'
+
+  - value: 0x06E9
+    name: 'Zmartfun Electronics, Inc.'
+
+  - value: 0x06E8
+    name: 'Almendo Technologies GmbH'
+
+  - value: 0x06E7
+    name: 'VELUX A/S'
+
+  - value: 0x06E6
+    name: 'NIHON DENGYO KOUSAKU'
+
+  - value: 0x06E5
+    name: 'OPTEX CO.,LTD.'
+
+  - value: 0x06E4
+    name: 'Aluna'
+
+  - value: 0x06E3
+    name: 'Spinlock Ltd'
+
+  - value: 0x06E2
+    name: 'Alango Technologies Ltd'
+
+  - value: 0x06E1
+    name: 'Milestone AV Technologies LLC'
+
+  - value: 0x06E0
+    name: 'Avaya Inc.'
+
+  - value: 0x06DF
+    name: 'HLI Solutions Inc.'
+
+  - value: 0x06DE
+    name: 'Navcast, Inc.'
+
+  - value: 0x06DD
+    name: 'Intellithings Ltd.'
+
+  - value: 0x06DC
+    name: 'Industrial Network Controls, LLC'
+
+  - value: 0x06DB
+    name: 'Automatic Labs, Inc.'
+
+  - value: 0x06DA
+    name: 'Zliide Technologies ApS'
+
+  - value: 0x06D9
+    name: 'Shanghai Mountain View Silicon Co.,Ltd.'
+
+  - value: 0x06D8
+    name: 'AW Company'
+
+  - value: 0x06D7
+    name: 'FUBA Automotive Electronics GmbH'
+
+  - value: 0x06D6
+    name: 'JCT Healthcare Pty Ltd'
+
+  - value: 0x06D5
+    name: 'Sensirion AG'
+
+  - value: 0x06D4
+    name: 'DYNAKODE TECHNOLOGY PRIVATE LIMITED'
+
+  - value: 0x06D3
+    name: 'TriTeq Lock and Security, LLC'
+
+  - value: 0x06D2
+    name: 'CeoTronics AG'
+
+  - value: 0x06D1
+    name: 'Meyer Sound Laboratories, Incorporated'
+
+  - value: 0x06D0
+    name: 'Etekcity Corporation'
+
+  - value: 0x06CF
+    name: 'Belparts N.V.'
+
+  - value: 0x06CE
+    name: 'FIOR & GENTZ'
+
+  - value: 0x06CD
+    name: 'DIG Corporation'
+
+  - value: 0x06CC
+    name: 'Dongguan SmartAction Technology Co.,Ltd.'
+
+  - value: 0x06CB
+    name: 'Dyeware, LLC'
+
+  - value: 0x06CA
+    name: 'Shenzhen Zhongguang Infotech Technology Development Co., Ltd'
+
+  - value: 0x06C9
+    name: 'MYLAPS B.V.'
+
+  - value: 0x06C8
+    name: 'Storz & Bickel GmbH & Co. KG'
+
+  - value: 0x06C7
+    name: 'Somatix Inc'
+
+  - value: 0x06C6
+    name: 'Simm Tronic Limited'
+
+  - value: 0x06C5
+    name: 'Urban Compass, Inc'
+
+  - value: 0x06C4
+    name: 'Dream Labs GmbH'
+
+  - value: 0x06C3
+    name: 'King I Electronics.Co.,Ltd'
+
+  - value: 0x06C2
+    name: 'Measurlogic Inc.'
+
+  - value: 0x06C1
+    name: 'Alarm.com Holdings, Inc'
+
+  - value: 0x06C0
+    name: 'CAME S.p.A.'
+
+  - value: 0x06BF
+    name: 'Delcom Products Inc.'
+
+  - value: 0x06BE
+    name: 'HitSeed Oy'
+
+  - value: 0x06BD
+    name: 'ABB Oy'
+
+  - value: 0x06BC
+    name: 'TWS Srl'
+
+  - value: 0x06BB
+    name: 'Leaftronix Analogic Solutions Private Limited'
+
+  - value: 0x06BA
+    name: 'Beaconzone Ltd'
+
+  - value: 0x06B9
+    name: 'Beflex Inc.'
+
+  - value: 0x06B8
+    name: 'ShadeCraft, Inc'
+
+  - value: 0x06B7
+    name: 'iCOGNIZE GmbH'
+
+  - value: 0x06B6
+    name: 'Sociometric Solutions, Inc.'
+
+  - value: 0x06B5
+    name: 'Wabilogic Ltd.'
+
+  - value: 0x06B4
+    name: 'Sencilion Oy'
+
+  - value: 0x06B3
+    name: 'The Hablab ApS'
+
+  - value: 0x06B2
+    name: 'Tussock Innovation 2013 Limited'
+
+  - value: 0x06B1
+    name: 'SimpliSafe, Inc.'
+
+  - value: 0x06B0
+    name: 'BRK Brands, Inc.'
+
+  - value: 0x06AF
+    name: 'Shoof Technologies'
+
+  - value: 0x06AE
+    name: 'SenseQ Inc.'
+
+  - value: 0x06AD
+    name: 'InnovaSea Systems Inc.'
+
+  - value: 0x06AC
+    name: 'Ingchips Technology Co., Ltd.'
+
+  - value: 0x06AB
+    name: 'HMS Industrial Networks AB'
+
+  - value: 0x06AA
+    name: 'Produal Oy'
+
+  - value: 0x06A9
+    name: 'Soundmax Electronics Limited'
+
+  - value: 0x06A8
+    name: 'GD Midea Air-Conditioning Equipment Co., Ltd.'
+
+  - value: 0x06A7
+    name: 'Chipsea Technologies (ShenZhen) Corp.'
+
+  - value: 0x06A6
+    name: 'Roambee Corporation'
+
+  - value: 0x06A5
+    name: 'TEKZITEL PTY LTD'
+
+  - value: 0x06A4
+    name: 'LIMNO Co. Ltd.'
+
+  - value: 0x06A3
+    name: 'Nymbus, LLC'
+
+  - value: 0x06A2
+    name: 'Globalworx GmbH'
+
+  - value: 0x06A1
+    name: 'Cardo Systems, Ltd'
+
+  - value: 0x06A0
+    name: 'OBIQ Location Technology Inc.'
+
+  - value: 0x069F
+    name: 'FlowMotion Technologies AS'
+
+  - value: 0x069E
+    name: 'Delta Electronics, Inc.'
+
+  - value: 0x069D
+    name: 'Vakaros LLC'
+
+  - value: 0x069C
+    name: 'Noomi AB'
+
+  - value: 0x069B
+    name: 'Dragonchip Limited'
+
+  - value: 0x069A
+    name: 'Adero, Inc.'
+
+  - value: 0x0699
+    name: 'RandomLab SAS'
+
+  - value: 0x0698
+    name: 'Wood IT Security, LLC'
+
+  - value: 0x0697
+    name: 'Stemco Products Inc'
+
+  - value: 0x0696
+    name: 'Gunakar Private Limited'
+
+  - value: 0x0695
+    name: 'Koki Holdings Co., Ltd.'
+
+  - value: 0x0694
+    name: 'T&A Laboratories LLC'
+
+  - value: 0x0693
+    name: 'Hach - Danaher'
+
+  - value: 0x0692
+    name: 'Georg Fischer AG'
+
+  - value: 0x0691
+    name: 'Curie Point AB'
+
+  - value: 0x0690
+    name: 'Eccrine Systems, Inc.'
+
+  - value: 0x068F
+    name: 'JRM Group Limited'
+
+  - value: 0x068E
+    name: 'Razer Inc.'
+
+  - value: 0x068D
+    name: 'JetBeep Inc.'
+
+  - value: 0x068C
+    name: 'Changzhou Sound Dragon Electronics and Acoustics Co., Ltd'
+
+  - value: 0x068B
+    name: 'Jiangsu Teranovo Tech Co., Ltd.'
+
+  - value: 0x068A
+    name: 'Raytac Corporation'
+
+  - value: 0x0689
+    name: 'Tacx b.v.'
+
+  - value: 0x0688
+    name: 'Amsted Digital Solutions Inc.'
+
+  - value: 0x0687
+    name: 'Cherry GmbH'
+
+  - value: 0x0686
+    name: 'inQs Co., Ltd.'
+
+  - value: 0x0685
+    name: 'Greenwald Industries'
+
+  - value: 0x0684
+    name: 'Dermalapps, LLC'
+
+  - value: 0x0683
+    name: 'Eltako GmbH'
+
+  - value: 0x0682
+    name: 'Photron Limited'
+
+  - value: 0x0681
+    name: 'Trade FIDES a.s.'
+
+  - value: 0x0680
+    name: 'Mannkind Corporation'
+
+  - value: 0x067F
+    name: 'NETGRID S.N.C. DI BISSOLI MATTEO, CAMPOREALE SIMONE, TOGNETTI FEDERICO'
+
+  - value: 0x067E
+    name: 'MbientLab Inc'
+
+  - value: 0x067D
+    name: 'Form Athletica Inc.'
+
+  - value: 0x067C
+    name: 'Tile, Inc.'
+
+  - value: 0x067B
+    name: 'I.FARM, INC.'
+
+  - value: 0x067A
+    name: 'The Energy Conservatory, Inc.'
+
+  - value: 0x0679
+    name: '4iiii Innovations Inc.'
+
+  - value: 0x0678
+    name: 'SABIK Offshore GmbH'
+
+  - value: 0x0677
+    name: 'Innovation First, Inc.'
+
+  - value: 0x0676
+    name: 'Expai Solutions Private Limited'
+
+  - value: 0x0675
+    name: 'Deco Enterprises, Inc.'
+
+  - value: 0x0674
+    name: 'BeSpoon'
+
+  - value: 0x0673
+    name: 'Innova Ideas Limited'
+
+  - value: 0x0672
+    name: 'Kopi'
+
+  - value: 0x0671
+    name: 'Buzz Products Ltd.'
+
+  - value: 0x0670
+    name: 'Gema Switzerland GmbH'
+
+  - value: 0x066F
+    name: 'Hug Technology Ltd'
+
+  - value: 0x066E
+    name: 'Eurotronik Kranj d.o.o.'
+
+  - value: 0x066D
+    name: 'Venso EcoSolutions AB'
+
+  - value: 0x066C
+    name: 'Ztove ApS'
+
+  - value: 0x066B
+    name: 'DewertOkin GmbH'
+
+  - value: 0x066A
+    name: 'Brady Worldwide Inc.'
+
+  - value: 0x0669
+    name: 'Livanova USA, Inc.'
+
+  - value: 0x0668
+    name: 'Bleb Technology srl'
+
+  - value: 0x0667
+    name: 'Spark Technology Labs Inc.'
+
+  - value: 0x0666
+    name: 'WTO Werkzeug-Einrichtungen GmbH'
+
+  - value: 0x0665
+    name: 'Pure International Limited'
+
+  - value: 0x0664
+    name: 'RHA TECHNOLOGIES LTD'
+
+  - value: 0x0663
+    name: 'Advanced Telemetry Systems, Inc.'
+
+  - value: 0x0662
+    name: 'Particle Industries, Inc.'
+
+  - value: 0x0661
+    name: 'Mode Lighting Limited'
+
+  - value: 0x0660
+    name: 'RTC Industries, Inc.'
+
+  - value: 0x065F
+    name: 'Ricoh Company Ltd'
+
+  - value: 0x065E
+    name: 'Alo AB'
+
+  - value: 0x065D
+    name: 'Panduit Corp.'
+
+  - value: 0x065C
+    name: 'PixArt Imaging Inc.'
+
+  - value: 0x065B
+    name: 'Sesam Solutions BV'
+
+  - value: 0x065A
+    name: 'Zound Industries International AB'
+
+  - value: 0x0659
+    name: 'UnSeen Technologies Oy'
+
+  - value: 0x0658
+    name: 'Payex Norge AS'
+
+  - value: 0x0657
+    name: 'Meshtronix Limited'
+
+  - value: 0x0656
+    name: 'ZhuHai AdvanPro Technology Company Limited'
+
+  - value: 0x0655
+    name: 'Renishaw PLC'
+
+  - value: 0x0654
+    name: 'Ledlenser GmbH & Co. KG'
+
+  - value: 0x0653
+    name: 'Meggitt SA'
+
+  - value: 0x0652
+    name: 'ITZ Innovations- und Technologiezentrum GmbH'
+
+  - value: 0x0651
+    name: 'Stasis Labs, Inc.'
+
+  - value: 0x0650
+    name: 'Coravin, Inc.'
+
+  - value: 0x064F
+    name: 'Digital Matter Pty Ltd'
+
+  - value: 0x064E
+    name: 'KRUXWorks Technologies Private Limited'
+
+  - value: 0x064D
+    name: 'iLOQ Oy'
+
+  - value: 0x064C
+    name: 'Zumtobel Group AG'
+
+  - value: 0x064B
+    name: 'Scale-Tec, Ltd'
+
+  - value: 0x064A
+    name: 'Open Research Institute, Inc.'
+
+  - value: 0x0649
+    name: 'Ryeex Technology Co.,Ltd.'
+
+  - value: 0x0648
+    name: 'Ultune Technologies'
+
+  - value: 0x0647
+    name: 'MED-EL'
+
+  - value: 0x0646
+    name: 'SGV Group Holding GmbH & Co. KG'
+
+  - value: 0x0645
+    name: 'BM3'
+
+  - value: 0x0644
+    name: 'Apogee Instruments'
+
+  - value: 0x0643
+    name: 'makita corporation'
+
+  - value: 0x0642
+    name: 'Bluetrum Technology Co.,Ltd'
+
+  - value: 0x0641
+    name: 'Revenue Collection Systems FRANCE SAS'
+
+  - value: 0x0640
+    name: 'Dish Network LLC'
+
+  - value: 0x063F
+    name: 'LDL TECHNOLOGY'
+
+  - value: 0x063E
+    name: 'The Indoor Lab, LLC'
+
+  - value: 0x063D
+    name: 'Xradio Technology Co.,Ltd.'
+
+  - value: 0x063C
+    name: 'Contec Medical Systems Co., Ltd.'
+
+  - value: 0x063B
+    name: 'Kromek Group Plc'
+
+  - value: 0x063A
+    name: 'Prolojik Limited'
+
+  - value: 0x0639
+    name: 'Shenzhen Minew Technologies Co., Ltd.'
+
+  - value: 0x0638
+    name: 'LX SOLUTIONS PTY LIMITED'
+
+  - value: 0x0637
+    name: 'GiP Innovation Tools GmbH'
+
+  - value: 0x0636
+    name: 'ELECTRONICA INTEGRAL DE SONIDO S.A.'
+
+  - value: 0x0635
+    name: 'Crookwood'
+
+  - value: 0x0634
+    name: 'Fanstel Corp'
+
+  - value: 0x0633
+    name: 'Wangi Lai PLT'
+
+  - value: 0x0632
+    name: 'Hugo Muller GmbH & Co KG'
+
+  - value: 0x0631
+    name: 'Fortiori Design LLC'
+
+  - value: 0x0630
+    name: 'Asthrea D.O.O.'
+
+  - value: 0x062F
+    name: 'ONKYO Corporation'
+
+  - value: 0x062E
+    name: 'Procept'
+
+  - value: 0x062D
+    name: 'Vossloh-Schwabe Deutschland GmbH'
+
+  - value: 0x062C
+    name: 'ASPion GmbH'
+
+  - value: 0x062B
+    name: 'MinebeaMitsumi Inc.'
+
+  - value: 0x062A
+    name: 'Lunatico Astronomia SL'
+
+  - value: 0x0629
+    name: 'PHONEPE PVT LTD'
+
+  - value: 0x0628
+    name: 'Ensto Oy'
+
+  - value: 0x0627
+    name: 'WEG S.A.'
+
+  - value: 0x0626
+    name: 'Amplifico'
+
+  - value: 0x0625
+    name: 'Square Panda, Inc.'
+
+  - value: 0x0624
+    name: 'Biovotion AG'
+
+  - value: 0x0623
+    name: 'Philadelphia Scientific (U.K.) Limited'
+
+  - value: 0x0622
+    name: 'Beam Labs, LLC'
+
+  - value: 0x0621
+    name: 'Noordung d.o.o.'
+
+  - value: 0x0620
+    name: 'Forciot Oy'
+
+  - value: 0x061F
+    name: 'Phrame Inc.'
+
+  - value: 0x061E
+    name: 'Diamond Kinetics, Inc.'
+
+  - value: 0x061D
+    name: 'SENS Innovation ApS'
+
+  - value: 0x061C
+    name: 'Univations Limited'
+
+  - value: 0x061B
+    name: 'silex technology, inc.'
+
+  - value: 0x061A
+    name: 'R.W. Beckett Corporation'
+
+  - value: 0x0619
+    name: 'Six Guys Labs, s.r.o.'
+
+  - value: 0x0618
+    name: 'Audio-Technica Corporation'
+
+  - value: 0x0617
+    name: 'WIZCONNECTED COMPANY LIMITED'
+
+  - value: 0x0616
+    name: 'OS42 UG (haftungsbeschraenkt)'
+
+  - value: 0x0615
+    name: 'INTER ACTION Corporation'
+
+  - value: 0x0614
+    name: 'OnAsset Intelligence, Inc.'
+
+  - value: 0x0613
+    name: 'Hans Dinslage GmbH'
+
+  - value: 0x0612
+    name: 'Playfinity AS'
+
+  - value: 0x0611
+    name: 'Beurer GmbH'
+
+  - value: 0x0610
+    name: 'ADH GUARDIAN USA LLC'
+
+  - value: 0x060F
+    name: 'Signify Netherlands B.V.'
+
+  - value: 0x060E
+    name: 'Blueair AB'
+
+  - value: 0x060D
+    name: 'TDK Corporation'
+
+  - value: 0x060C
+    name: 'Vuzix Corporation'
+
+  - value: 0x060B
+    name: 'Triax Technologies Inc'
+
+  - value: 0x060A
+    name: 'IQAir AG'
+
+  - value: 0x0609
+    name: 'BUCHI Labortechnik AG'
+
+  - value: 0x0608
+    name: 'KeySafe-Cloud'
+
+  - value: 0x0607
+    name: 'Rookery Technology Ltd'
+
+  - value: 0x0606
+    name: 'John Deere'
+
+  - value: 0x0605
+    name: 'FMW electronic Futterer u. Maier-Wolf OHG'
+
+  - value: 0x0604
+    name: 'Cell2Jack LLC'
+
+  - value: 0x0603
+    name: 'Fourth Evolution Inc'
+
+  - value: 0x0602
+    name: 'Geberit International AG'
+
+  - value: 0x0601
+    name: 'Schrader Electronics'
+
+  - value: 0x0600
+    name: 'iRobot Corporation'
+
+  - value: 0x05FF
+    name: 'Wellnomics Ltd'
+
+  - value: 0x05FE
+    name: 'Niko nv'
+
+  - value: 0x05FD
+    name: 'Innoseis'
+
+  - value: 0x05FC
+    name: 'Masbando GmbH'
+
+  - value: 0x05FB
+    name: 'Arblet Inc.'
+
+  - value: 0x05FA
+    name: 'Konami Sports Life Co., Ltd.'
+
+  - value: 0x05F9
+    name: 'Hagleitner Hygiene International GmbH'
+
+  - value: 0x05F8
+    name: 'Anki Inc.'
+
+  - value: 0x05F7
+    name: 'TRACMO, INC.'
+
+  - value: 0x05F6
+    name: 'DPTechnics'
+
+  - value: 0x05F5
+    name: 'GS TAG'
+
+  - value: 0x05F4
+    name: 'Clearity, LLC'
+
+  - value: 0x05F3
+    name: 'SeeScan'
+
+  - value: 0x05F2
+    name: 'Try and E CO.,LTD.'
+
+  - value: 0x05F1
+    name: 'The Linux Foundation'
+
+  - value: 0x05F0
+    name: 'beken'
+
+  - value: 0x05EF
+    name: 'SIKOM AS'
+
+  - value: 0x05EE
+    name: 'Wristcam Inc.'
+
+  - value: 0x05ED
+    name: 'Fuji Xerox Co., Ltd'
+
+  - value: 0x05EC
+    name: 'Gycom Svenska AB'
+
+  - value: 0x05EB
+    name: 'Bayerische Motoren Werke AG'
+
+  - value: 0x05EA
+    name: 'ACS-Control-System GmbH'
+
+  - value: 0x05E9
+    name: 'iconmobile GmbH'
+
+  - value: 0x05E8
+    name: 'COWBOY'
+
+  - value: 0x05E7
+    name: 'PressurePro'
+
+  - value: 0x05E6
+    name: 'Motion Instruments Inc.'
+
+  - value: 0x05E5
+    name: 'INEO ENERGY& SYSTEMS'
+
+  - value: 0x05E4
+    name: 'Taiyo Yuden Co., Ltd'
+
+  - value: 0x05E3
+    name: 'Elemental Machines, Inc.'
+
+  - value: 0x05E2
+    name: 'stAPPtronics GmbH'
+
+  - value: 0x05E1
+    name: 'Human, Incorporated'
+
+  - value: 0x05E0
+    name: 'Viper Design LLC'
+
+  - value: 0x05DF
+    name: 'VIRTUALCLINIC.DIRECT LIMITED'
+
+  - value: 0x05DE
+    name: 'QT Medical INC.'
+
+  - value: 0x05DD
+    name: 'essentim GmbH'
+
+  - value: 0x05DC
+    name: 'Petronics Inc.'
+
+  - value: 0x05DB
+    name: 'Avid Identification Systems, Inc.'
+
+  - value: 0x05DA
+    name: 'Applied Neural Research Corp'
+
+  - value: 0x05D9
+    name: 'Toyo Electronics Corporation'
+
+  - value: 0x05D8
+    name: 'Farm Jenny LLC'
+
+  - value: 0x05D7
+    name: 'modum.io AG'
+
+  - value: 0x05D6
+    name: 'Zhuhai Jieli technology Co.,Ltd'
+
+  - value: 0x05D5
+    name: 'TEGAM, Inc.'
+
+  - value: 0x05D4
+    name: 'LAMPLIGHT Co., Ltd.'
+
+  - value: 0x05D3
+    name: 'Acurable Limited'
+
+  - value: 0x05D2
+    name: 'frogblue TECHNOLOGY GmbH'
+
+  - value: 0x05D1
+    name: 'Lindab AB'
+
+  - value: 0x05D0
+    name: 'Anova Applied Electronics'
+
+  - value: 0x05CF
+    name: 'Biowatch SA'
+
+  - value: 0x05CE
+    name: 'V-ZUG Ltd'
+
+  - value: 0x05CD
+    name: 'RJ Brands LLC'
+
+  - value: 0x05CC
+    name: 'WATTS ELECTRONICS'
+
+  - value: 0x05CB
+    name: 'LucentWear LLC'
+
+  - value: 0x05CA
+    name: 'MHL Custom Inc'
+
+  - value: 0x05C9
+    name: 'TBS Electronics B.V.'
+
+  - value: 0x05C8
+    name: 'SOMFY SAS'
+
+  - value: 0x05C7
+    name: 'Lippert Components, INC'
+
+  - value: 0x05C6
+    name: 'Smart Animal Training Systems, LLC'
+
+  - value: 0x05C5
+    name: 'SELVE GmbH & Co. KG'
+
+  - value: 0x05C4
+    name: 'Codecoup sp. z o.o. sp. k.'
+
+  - value: 0x05C3
+    name: 'Runtime, Inc.'
+
+  - value: 0x05C2
+    name: 'Grote Industries'
+
+  - value: 0x05C1
+    name: 'P.I.Engineering'
+
+  - value: 0x05C0
+    name: 'Nalu Medical, Inc.'
+
+  - value: 0x05BF
+    name: 'Real-World-Systems Corporation'
+
+  - value: 0x05BE
+    name: 'RFID Global by Softwork SrL'
+
+  - value: 0x05BD
+    name: 'ULC Robotics Inc.'
+
+  - value: 0x05BC
+    name: 'Leviton Mfg. Co., Inc.'
+
+  - value: 0x05BB
+    name: 'Oxford Metrics plc'
+
+  - value: 0x05BA
+    name: 'igloohome'
+
+  - value: 0x05B9
+    name: 'Suzhou Pairlink Network Technology'
+
+  - value: 0x05B8
+    name: 'Ambystoma Labs Inc.'
+
+  - value: 0x05B7
+    name: 'Beijing Pinecone Electronics Co.,Ltd.'
+
+  - value: 0x05B6
+    name: 'Elecs Industry Co.,Ltd.'
+
+  - value: 0x05B5
+    name: 'verisilicon'
+
+  - value: 0x05B4
+    name: 'White Horse Scientific ltd'
+
+  - value: 0x05B3
+    name: 'Parabit Systems, Inc.'
+
+  - value: 0x05B2
+    name: 'CAREL INDUSTRIES S.P.A.'
+
+  - value: 0x05B1
+    name: 'Medallion Instrumentation Systems'
+
+  - value: 0x05B0
+    name: 'NewTec GmbH'
+
+  - value: 0x05AF
+    name: 'OV LOOP, INC.'
+
+  - value: 0x05AE
+    name: 'CARMATE MFG.CO.,LTD'
+
+  - value: 0x05AD
+    name: 'INIA'
+
+  - value: 0x05AC
+    name: 'GoerTek Dynaudio Co., Ltd.'
+
+  - value: 0x05AB
+    name: 'Nofence AS'
+
+  - value: 0x05AA
+    name: 'Tramex Limited'
+
+  - value: 0x05A9
+    name: 'Monidor'
+
+  - value: 0x05A8
+    name: 'Tom Allebrandi Consulting'
+
+  - value: 0x05A7
+    name: 'Sonos Inc'
+
+  - value: 0x05A6
+    name: 'Telecon Mobile Limited'
+
+  - value: 0x05A5
+    name: 'Kiiroo BV'
+
+  - value: 0x05A4
+    name: 'O. E. M. Controls, Inc.'
+
+  - value: 0x05A3
+    name: 'Axiomware Systems Incorporated'
+
+  - value: 0x05A2
+    name: 'ADHERIUM(NZ) LIMITED'
+
+  - value: 0x05A1
+    name: 'Shanghai Xiaoyi Technology Co.,Ltd.'
+
+  - value: 0x05A0
+    name: 'RCP Software Oy'
+
+  - value: 0x059F
+    name: 'Fisher & Paykel Healthcare'
+
+  - value: 0x059E
+    name: 'Polycom, Inc.'
+
+  - value: 0x059D
+    name: 'Tandem Diabetes Care'
+
+  - value: 0x059C
+    name: 'Macrogiga Electronics'
+
+  - value: 0x059B
+    name: 'Dataflow Systems Limited'
+
+  - value: 0x059A
+    name: 'Teledyne Lecroy, Inc.'
+
+  - value: 0x0599
+    name: 'Lazlo326, LLC.'
+
+  - value: 0x0598
+    name: 'rapitag GmbH'
+
+  - value: 0x0597
+    name: 'RadioPulse Inc'
+
+  - value: 0x0596
+    name: 'My Smart Blinds'
+
+  - value: 0x0595
+    name: 'Inor Process AB'
+
+  - value: 0x0594
+    name: 'Kohler Company'
+
+  - value: 0x0593
+    name: 'Spaulding Clinical Research'
+
+  - value: 0x0592
+    name: 'IZITHERM'
+
+  - value: 0x0591
+    name: 'Viasat Group S.p.A.'
+
+  - value: 0x0590
+    name: 'Pur3 Ltd'
+
+  - value: 0x058F
+    name: 'HENDON SEMICONDUCTORS PTY LTD'
+
+  - value: 0x058E
+    name: 'Meta Platforms Technologies, LLC'
+
+  - value: 0x058D
+    name: 'Jungheinrich Aktiengesellschaft'
+
+  - value: 0x058C
+    name: 'Fracarro Radioindustrie SRL'
+
+  - value: 0x058B
+    name: 'Maxim Integrated Products'
+
+  - value: 0x058A
+    name: 'START TODAY CO.,LTD.'
+
+  - value: 0x0589
+    name: 'Star Technologies'
+
+  - value: 0x0588
+    name: 'ALT-TEKNIK LLC'
+
+  - value: 0x0587
+    name: 'Derichs GmbH'
+
+  - value: 0x0586
+    name: 'LEGRAND'
+
+  - value: 0x0585
+    name: 'Hearing Lab Technology'
+
+  - value: 0x0584
+    name: 'Gira Giersiepen GmbH & Co. KG'
+
+  - value: 0x0583
+    name: 'Code Blue Communications'
+
+  - value: 0x0582
+    name: 'Breakwall Analytics, LLC'
+
+  - value: 0x0581
+    name: 'LYS TECHNOLOGIES LTD'
+
+  - value: 0x0580
+    name: 'ARANZ Medical Limited'
+
+  - value: 0x057F
+    name: 'Scuf Gaming International, LLC'
+
+  - value: 0x057E
+    name: 'Beco, Inc'
+
+  - value: 0x057D
+    name: 'Instinct Performance'
+
+  - value: 0x057C
+    name: 'Toor Technologies LLC'
+
+  - value: 0x057B
+    name: 'Duracell U.S. Operations Inc.'
+
+  - value: 0x057A
+    name: 'OMNI Remotes'
+
+  - value: 0x0579
+    name: 'Ensemble Tech Private Limited'
+
+  - value: 0x0578
+    name: 'Wellington Drive Technologies Ltd'
+
+  - value: 0x0577
+    name: 'True Wearables, Inc.'
+
+  - value: 0x0576
+    name: 'Globalstar, Inc.'
+
+  - value: 0x0575
+    name: 'Integral Memroy Plc'
+
+  - value: 0x0574
+    name: 'AFFORDABLE ELECTRONICS INC'
+
+  - value: 0x0573
+    name: 'Lighting Science Group Corp.'
+
+  - value: 0x0572
+    name: 'AntTail.com'
+
+  - value: 0x0571
+    name: 'PSIKICK, INC.'
+
+  - value: 0x0570
+    name: 'Consumer Sleep Solutions LLC'
+
+  - value: 0x056F
+    name: 'BikeFinder AS'
+
+  - value: 0x056E
+    name: 'VIZPIN INC.'
+
+  - value: 0x056D
+    name: 'Redmond Industrial Group LLC'
+
+  - value: 0x056C
+    name: 'Long Range Systems, LLC'
+
+  - value: 0x056B
+    name: 'Rion Co., Ltd.'
+
+  - value: 0x056A
+    name: 'Flipnavi Co.,Ltd.'
+
+  - value: 0x0569
+    name: 'Audionics System, INC.'
+
+  - value: 0x0568
+    name: 'Bodyport Inc.'
+
+  - value: 0x0567
+    name: 'Xiamen Everesports Goods Co., Ltd'
+
+  - value: 0x0566
+    name: 'CORE TRANSPORT TECHNOLOGIES NZ LIMITED'
+
+  - value: 0x0565
+    name: 'Beijing Smartspace Technologies Inc.'
+
+  - value: 0x0564
+    name: 'Beghelli Spa'
+
+  - value: 0x0563
+    name: 'Steinel Vertrieb GmbH'
+
+  - value: 0x0562
+    name: 'Thalmic Labs Inc.'
+
+  - value: 0x0561
+    name: 'Finder S.p.A.'
+
+  - value: 0x0560
+    name: 'Sarita CareTech APS'
+
+  - value: 0x055F
+    name: 'PROTECH S.A.S. DI GIRARDI ANDREA & C.'
+
+  - value: 0x055E
+    name: 'Hekatron Vertriebs GmbH'
+
+  - value: 0x055D
+    name: 'Valve Corporation'
+
+  - value: 0x055C
+    name: 'Lely'
+
+  - value: 0x055B
+    name: 'FRANKLIN TECHNOLOGY INC'
+
+  - value: 0x055A
+    name: 'CANDY HOUSE, Inc.'
+
+  - value: 0x0559
+    name: 'Newcon Optik'
+
+  - value: 0x0558
+    name: 'benegear, inc.'
+
+  - value: 0x0557
+    name: 'Arwin Technology Limited'
+
+  - value: 0x0556
+    name: 'Otodynamics Ltd'
+
+  - value: 0x0555
+    name: 'KROHNE Messtechnik GmbH'
+
+  - value: 0x0554
+    name: 'National Instruments'
+
+  - value: 0x0553
+    name: 'Nintendo Co., Ltd.'
+
+  - value: 0x0552
+    name: 'Avempace SARL'
+
+  - value: 0x0551
+    name: 'Sylero'
+
+  - value: 0x0550
+    name: 'Versa Networks, Inc.'
+
+  - value: 0x054F
+    name: 'Sinnoz'
+
+  - value: 0x054E
+    name: 'FORTRONIK storitve d.o.o.'
+
+  - value: 0x054D
+    name: 'Sensome'
+
+  - value: 0x054C
+    name: 'Carefree Scott Fetzer Co Inc'
+
+  - value: 0x054B
+    name: 'Advanced Electronic Designs, Inc.'
+
+  - value: 0x054A
+    name: 'Linough Inc.'
+
+  - value: 0x0549
+    name: 'Smart Technologies and Investment Limited'
+
+  - value: 0x0548
+    name: 'Knick Elektronische Messgeraete GmbH & Co. KG'
+
+  - value: 0x0547
+    name: 'LOGICDATA Electronic & Software Entwicklungs GmbH'
+
+  - value: 0x0546
+    name: 'Apexar Technologies S.A.'
+
+  - value: 0x0545
+    name: 'Candy Hoover Group s.r.l'
+
+  - value: 0x0544
+    name: 'OrthoSensor, Inc.'
+
+  - value: 0x0543
+    name: 'MIWA LOCK CO.,Ltd'
+
+  - value: 0x0542
+    name: 'Mist Systems, Inc.'
+
+  - value: 0x0541
+    name: 'Sharknet srl'
+
+  - value: 0x0540
+    name: 'SilverPlus, Inc'
+
+  - value: 0x053F
+    name: 'Silergy Corp'
+
+  - value: 0x053E
+    name: 'CLIM8 LIMITED'
+
+  - value: 0x053D
+    name: 'TESA SA'
+
+  - value: 0x053C
+    name: 'Screenovate Technologies Ltd'
+
+  - value: 0x053B
+    name: 'prodigy'
+
+  - value: 0x053A
+    name: 'Savitech Corp.,'
+
+  - value: 0x0539
+    name: 'OPPLE Lighting Co., Ltd'
+
+  - value: 0x0538
+    name: 'Medela AG'
+
+  - value: 0x0537
+    name: 'MetaLogics Corporation'
+
+  - value: 0x0536
+    name: 'ZTR Control Systems LLC'
+
+  - value: 0x0535
+    name: 'Smart Component Technologies Limited'
+
+  - value: 0x0534
+    name: 'Frontiergadget, Inc.'
+
+  - value: 0x0533
+    name: 'Nura Operations Pty Ltd'
+
+  - value: 0x0532
+    name: 'CRESCO Wireless, Inc.'
+
+  - value: 0x0531
+    name: 'D&M Holdings Inc.'
+
+  - value: 0x0530
+    name: 'Adolene, Inc.'
+
+  - value: 0x052F
+    name: 'Center ID Corp.'
+
+  - value: 0x052E
+    name: 'LEDVANCE GmbH'
+
+  - value: 0x052D
+    name: 'EXFO, Inc.'
+
+  - value: 0x052C
+    name: 'Geosatis SA'
+
+  - value: 0x052B
+    name: 'Novartis AG'
+
+  - value: 0x052A
+    name: 'Keynes Controls Ltd'
+
+  - value: 0x0529
+    name: 'Lumen UAB'
+
+  - value: 0x0528
+    name: 'Lunera Lighting Inc.'
+
+  - value: 0x0527
+    name: 'Albrecht JUNG'
+
+  - value: 0x0526
+    name: 'Honeywell International Inc.'
+
+  - value: 0x0525
+    name: 'HONGKONG NANO IC TECHNOLOGIES  CO., LIMITED'
+
+  - value: 0x0524
+    name: 'Hangzhou iMagic Technology Co., Ltd'
+
+  - value: 0x0523
+    name: 'MTG Co., Ltd.'
+
+  - value: 0x0522
+    name: 'NS Tech, Inc.'
+
+  - value: 0x0521
+    name: 'IAI Corporation'
+
+  - value: 0x0520
+    name: 'Target Corporation'
+
+  - value: 0x051F
+    name: 'Setec Pty Ltd'
+
+  - value: 0x051E
+    name: 'Detect Blue Limited'
+
+  - value: 0x051D
+    name: 'OFF Line Co., Ltd.'
+
+  - value: 0x051C
+    name: 'EDPS'
+
+  - value: 0x051B
+    name: 'Angee Technologies Ltd.'
+
+  - value: 0x051A
+    name: 'Leica Camera AG'
+
+  - value: 0x0519
+    name: 'Tyto Life LLC'
+
+  - value: 0x0518
+    name: 'MAMORIO.inc'
+
+  - value: 0x0517
+    name: 'Amtronic Sverige AB'
+
+  - value: 0x0516
+    name: 'Footmarks'
+
+  - value: 0x0515
+    name: 'RB Controls Co., Ltd.'
+
+  - value: 0x0514
+    name: 'FIBRO GmbH'
+
+  - value: 0x0513
+    name: '9974091 Canada Inc.'
+
+  - value: 0x0512
+    name: 'Soprod SA'
+
+  - value: 0x0511
+    name: 'Brookfield Equinox LLC'
+
+  - value: 0x0510
+    name: 'UNI-ELECTRONICS, INC.'
+
+  - value: 0x050F
+    name: 'Foundation Engineering LLC'
+
+  - value: 0x050E
+    name: 'Yichip Microelectronics (Hangzhou) Co.,Ltd.'
+
+  - value: 0x050D
+    name: 'TRSystems GmbH'
+
+  - value: 0x050C
+    name: 'OSRAM GmbH'
+
+  - value: 0x050B
+    name: 'Vibrissa Inc.'
+
+  - value: 0x050A
+    name: 'Shake-on B.V.'
+
+  - value: 0x0509
+    name: 'Garage Smart, Inc.'
+
+  - value: 0x0508
+    name: 'Axes System sp. z o. o.'
+
+  - value: 0x0507
+    name: 'Yellowcog'
+
+  - value: 0x0506
+    name: 'Hager'
+
+  - value: 0x0505
+    name: 'InPlay, Inc.'
+
+  - value: 0x0504
+    name: 'PHYPLUS Inc'
+
+  - value: 0x0503
+    name: 'Locoroll, Inc'
+
+  - value: 0x0502
+    name: 'Specifi-Kali LLC'
+
+  - value: 0x0501
+    name: 'Polaris IND'
+
+  - value: 0x0500
+    name: 'Wiliot LTD.'
+
+  - value: 0x04FF
+    name: 'Microsemi Corporation'
+
+  - value: 0x04FE
+    name: 'Woosim Systems Inc.'
+
+  - value: 0x04FD
+    name: 'Tapkey GmbH'
+
+  - value: 0x04FC
+    name: 'SwingLync L. L. C.'
+
+  - value: 0x04FB
+    name: 'Benchmark Drives GmbH & Co. KG'
+
+  - value: 0x04FA
+    name: 'Androtec GmbH'
+
+  - value: 0x04F9
+    name: 'Interactio'
+
+  - value: 0x04F8
+    name: 'Convergence Systems Limited'
+
+  - value: 0x04F7
+    name: 'Shenzhen Goodix Technology Co., Ltd'
+
+  - value: 0x04F6
+    name: 'McLear Limited'
+
+  - value: 0x04F5
+    name: 'Pirelli Tyre S.P.A.'
+
+  - value: 0x04F4
+    name: 'ZanCompute Inc.'
+
+  - value: 0x04F3
+    name: 'Cerevast Medical'
+
+  - value: 0x04F2
+    name: 'InDreamer Techsol Private Limited'
+
+  - value: 0x04F1
+    name: 'Theben AG'
+
+  - value: 0x04F0
+    name: 'Kosi Limited'
+
+  - value: 0x04EF
+    name: 'DaisyWorks, Inc'
+
+  - value: 0x04EE
+    name: 'Auxivia'
+
+  - value: 0x04ED
+    name: 'R9 Technology, Inc.'
+
+  - value: 0x04EC
+    name: 'Motorola Solutions'
+
+  - value: 0x04EB
+    name: 'Bird Home Automation GmbH'
+
+  - value: 0x04EA
+    name: 'Pacific Bioscience Laboratories, Inc'
+
+  - value: 0x04E9
+    name: 'Busch Jaeger Elektro GmbH'
+
+  - value: 0x04E8
+    name: 'STABILO International'
+
+  - value: 0x04E7
+    name: 'REHABTRONICS INC.'
+
+  - value: 0x04E6
+    name: 'Smart Solution Technology, Inc.'
+
+  - value: 0x04E5
+    name: 'Avack Oy'
+
+  - value: 0x04E4
+    name: 'Woodenshark'
+
+  - value: 0x04E3
+    name: 'Under Armour'
+
+  - value: 0x04E2
+    name: 'EllieGrid'
+
+  - value: 0x04E1
+    name: 'REACTEC LIMITED'
+
+  - value: 0x04E0
+    name: 'Guardtec, Inc.'
+
+  - value: 0x04DF
+    name: 'Emerson Electric Co.'
+
+  - value: 0x04DE
+    name: 'Lutron Electronics Co., Inc.'
+
+  - value: 0x04DD
+    name: '4MOD Technology'
+
+  - value: 0x04DC
+    name: 'IOTTIVE (OPC) PRIVATE LIMITED'
+
+  - value: 0x04DB
+    name: 'Engineered Audio, LLC.'
+
+  - value: 0x04DA
+    name: 'Franceschi Marina snc'
+
+  - value: 0x04D9
+    name: 'RM Acquisition LLC'
+
+  - value: 0x04D8
+    name: 'FUJIFILM Corporation'
+
+  - value: 0x04D7
+    name: 'Blincam, Inc.'
+
+  - value: 0x04D6
+    name: 'LUGLOC LLC'
+
+  - value: 0x04D5
+    name: 'Gooee Limited'
+
+  - value: 0x04D4
+    name: '5th Element Ltd'
+
+  - value: 0x04D3
+    name: 'Queercon, Inc'
+
+  - value: 0x04D2
+    name: 'Anloq Technologies Inc.'
+
+  - value: 0x04D1
+    name: 'KTS GmbH'
+
+  - value: 0x04D0
+    name: 'Olympus Corporation'
+
+  - value: 0x04CF
+    name: 'DOM Sicherheitstechnik GmbH & Co. KG'
+
+  - value: 0x04CE
+    name: 'GOOOLED S.R.L.'
+
+  - value: 0x04CD
+    name: 'Safetech Products LLC'
+
+  - value: 0x04CC
+    name: 'Enflux Inc.'
+
+  - value: 0x04CB
+    name: 'Novo Nordisk A/S'
+
+  - value: 0x04CA
+    name: 'Steiner-Optik GmbH'
+
+  - value: 0x04C9
+    name: 'Thornwave Labs Inc'
+
+  - value: 0x04C8
+    name: 'Shanghai Flyco Electrical Appliance Co., Ltd.'
+
+  - value: 0x04C7
+    name: 'Svantek Sp. z o.o.'
+
+  - value: 0x04C6
+    name: 'Insta GmbH'
+
+  - value: 0x04C5
+    name: 'Seibert Williams Glass, LLC'
+
+  - value: 0x04C4
+    name: 'TeAM Hutchins AB'
+
+  - value: 0x04C3
+    name: 'Mantracourt Electronics Limited'
+
+  - value: 0x04C2
+    name: 'Dmet Products Corp.'
+
+  - value: 0x04C1
+    name: 'Sospitas, s.r.o.'
+
+  - value: 0x04C0
+    name: 'Statsports International'
+
+  - value: 0x04BF
+    name: 'VIT Initiative, LLC'
+
+  - value: 0x04BE
+    name: 'Averos FZCO'
+
+  - value: 0x04BD
+    name: 'AlbynMedical'
+
+  - value: 0x04BC
+    name: 'Draegerwerk AG & Co. KGaA'
+
+  - value: 0x04BB
+    name: 'Neatebox Ltd'
+
+  - value: 0x04BA
+    name: 'Crestron Electronics, Inc.'
+
+  - value: 0x04B9
+    name: 'CSR Building Products Limited'
+
+  - value: 0x04B8
+    name: 'Soraa Inc.'
+
+  - value: 0x04B7
+    name: 'Analog Devices, Inc.'
+
+  - value: 0x04B6
+    name: 'Diagnoptics Technologies'
+
+  - value: 0x04B5
+    name: 'Swiftronix AB'
+
+  - value: 0x04B4
+    name: 'Inuheat Group AB'
+
+  - value: 0x04B3
+    name: 'mobike (Hong Kong) Limited'
+
+  - value: 0x04B2
+    name: 'The Shadow on the Moon'
+
+  - value: 0x04B1
+    name: 'Kartographers Technologies Pvt. Ltd.'
+
+  - value: 0x04B0
+    name: 'Weba Sport und Med. Artikel GmbH'
+
+  - value: 0x04AF
+    name: 'BIOROWER Handelsagentur GmbH'
+
+  - value: 0x04AE
+    name: 'ERM Electronic Systems LTD'
+
+  - value: 0x04AD
+    name: 'Shure Inc'
+
+  - value: 0x04AC
+    name: 'Undagrid B.V.'
+
+  - value: 0x04AB
+    name: 'Harbortronics, Inc.'
+
+  - value: 0x04AA
+    name: 'LINKIO SAS'
+
+  - value: 0x04A9
+    name: 'DISCOVERY SOUND TECHNOLOGY, LLC'
+
+  - value: 0x04A8
+    name: 'BioTex, Inc.'
+
+  - value: 0x04A7
+    name: 'Dallas Logic Corporation'
+
+  - value: 0x04A6
+    name: 'Vinetech Co., Ltd'
+
+  - value: 0x04A5
+    name: 'Guangzhou FiiO Electronics Technology Co.,Ltd'
+
+  - value: 0x04A4
+    name: 'Herbert Waldmann GmbH & Co. KG'
+
+  - value: 0x04A3
+    name: 'GT-tronics HK Ltd'
+
+  - value: 0x04A2
+    name: 'ovrEngineered, LLC'
+
+  - value: 0x04A1
+    name: 'PNI Sensor Corporation'
+
+  - value: 0x04A0
+    name: 'Vypin, LLC'
+
+  - value: 0x049F
+    name: 'Popper Pay AB'
+
+  - value: 0x049E
+    name: 'AND!XOR LLC'
+
+  - value: 0x049D
+    name: 'Uhlmann & Zacher GmbH'
+
+  - value: 0x049C
+    name: 'DyOcean'
+
+  - value: 0x049B
+    name: 'nVisti, LLC'
+
+  - value: 0x049A
+    name: 'Situne AS'
+
+  - value: 0x0499
+    name: 'Ruuvi Innovations Ltd.'
+
+  - value: 0x0498
+    name: 'METER Group, Inc. USA'
+
+  - value: 0x0497
+    name: 'Cochlear Limited'
+
+  - value: 0x0496
+    name: 'Polymorphic Labs LLC'
+
+  - value: 0x0495
+    name: 'LMT Mercer Group, Inc'
+
+  - value: 0x0494
+    name: 'SENNHEISER electronic GmbH & Co. KG'
+
+  - value: 0x0493
+    name: 'Lynxemi Pte Ltd'
+
+  - value: 0x0492
+    name: 'ADC Technology, Inc.'
+
+  - value: 0x0491
+    name: 'SOREX - Wireless Solutions GmbH'
+
+  - value: 0x0490
+    name: 'Matting AB'
+
+  - value: 0x048F
+    name: 'BlueKitchen GmbH'
+
+  - value: 0x048E
+    name: 'Companion Medical, Inc.'
+
+  - value: 0x048D
+    name: 'S-Labs Sp. z o.o.'
+
+  - value: 0x048C
+    name: 'Vectronix AG'
+
+  - value: 0x048B
+    name: 'CP Electronics Limited'
+
+  - value: 0x048A
+    name: 'Taelek Oy'
+
+  - value: 0x0489
+    name: 'Igarashi Engineering'
+
+  - value: 0x0488
+    name: 'Automotive Data Solutions Inc'
+
+  - value: 0x0487
+    name: 'Centrica Connected Home'
+
+  - value: 0x0486
+    name: 'DEV TECNOLOGIA INDUSTRIA, COMERCIO E MANUTENCAO DE EQUIPAMENTOS LTDA. - ME'
+
+  - value: 0x0485
+    name: 'SKIDATA AG'
+
+  - value: 0x0484
+    name: 'Revol Technologies Inc'
+
+  - value: 0x0483
+    name: 'Multi Care Systems B.V.'
+
+  - value: 0x0482
+    name: 'POS Tuning Udo Vosshenrich GmbH & Co. KG'
+
+  - value: 0x0481
+    name: 'Quintrax Limited'
+
+  - value: 0x0480
+    name: 'Dynometrics Inc.'
+
+  - value: 0x047F
+    name: 'Pro-Mark, Inc.'
+
+  - value: 0x047E
+    name: 'OurHub Dev IvS'
+
+  - value: 0x047D
+    name: 'Occly LLC'
+
+  - value: 0x047C
+    name: 'POWERMAT LTD'
+
+  - value: 0x047B
+    name: 'MIYOSHI ELECTRONICS CORPORATION'
+
+  - value: 0x047A
+    name: 'Sinosun Technology Co., Ltd.'
+
+  - value: 0x0479
+    name: 'mywerk system GmbH'
+
+  - value: 0x0478
+    name: 'FarSite Communications Limited'
+
+  - value: 0x0477
+    name: 'Blue Spark Technologies'
+
+  - value: 0x0476
+    name: 'Oxstren Wearable Technologies Private Limited'
+
+  - value: 0x0475
+    name: 'Icom inc.'
+
+  - value: 0x0474
+    name: 'iApartment co., ltd.'
+
+  - value: 0x0473
+    name: 'Steelcase, Inc.'
+
+  - value: 0x0472
+    name: 'Control-J Pty Ltd'
+
+  - value: 0x0471
+    name: 'TiVo Corp'
+
+  - value: 0x0470
+    name: 'iDesign s.r.l.'
+
+  - value: 0x046F
+    name: 'Develco Products A/S'
+
+  - value: 0x046E
+    name: 'Pambor Ltd.'
+
+  - value: 0x046D
+    name: 'BEGA Gantenbrink-Leuchten KG'
+
+  - value: 0x046C
+    name: 'Qingdao Realtime Technology Co., Ltd.'
+
+  - value: 0x046B
+    name: 'PMD Solutions'
+
+  - value: 0x046A
+    name: 'INSIGMA INC.'
+
+  - value: 0x0469
+    name: 'Palago AB'
+
+  - value: 0x0468
+    name: 'Kynesim Ltd'
+
+  - value: 0x0467
+    name: 'Codenex Oy'
+
+  - value: 0x0466
+    name: 'CycleLabs Solutions inc.'
+
+  - value: 0x0465
+    name: 'International Forte Group LLC'
+
+  - value: 0x0464
+    name: 'Bellman & Symfon'
+
+  - value: 0x0463
+    name: 'Fathom Systems Inc.'
+
+  - value: 0x0462
+    name: 'Bonsai Systems GmbH'
+
+  - value: 0x0461
+    name: 'vhf elektronik GmbH'
+
+  - value: 0x0460
+    name: 'Kolibree'
+
+  - value: 0x045F
+    name: 'Real Time Automation, Inc.'
+
+  - value: 0x045E
+    name: 'Nuviz, Inc.'
+
+  - value: 0x045D
+    name: 'Boston Scientific Corporation'
+
+  - value: 0x045C
+    name: 'Delta T Corporation'
+
+  - value: 0x045B
+    name: 'SPACEEK LTD'
+
+  - value: 0x045A
+    name: '2048450 Ontario Inc'
+
+  - value: 0x0459
+    name: 'Lumenetix, Inc'
+
+  - value: 0x0458
+    name: 'Mini Solution Co., Ltd.'
+
+  - value: 0x0457
+    name: 'RF INNOVATION'
+
+  - value: 0x0456
+    name: 'Nemik Consulting Inc'
+
+  - value: 0x0455
+    name: 'Atomation'
+
+  - value: 0x0454
+    name: 'Sphinx Electronics GmbH & Co KG'
+
+  - value: 0x0453
+    name: 'Qorvo Utrecht B.V.'
+
+  - value: 0x0452
+    name: 'Svep Design Center AB'
+
+  - value: 0x0451
+    name: 'Tunstall Nordic AB'
+
+  - value: 0x0450
+    name: 'Teenage Engineering AB'
+
+  - value: 0x044F
+    name: 'TTS Tooltechnic Systems AG & Co. KG'
+
+  - value: 0x044E
+    name: 'Xtrava Inc.'
+
+  - value: 0x044D
+    name: 'VEGA Grieshaber KG'
+
+  - value: 0x044C
+    name: 'LifeStyle Lock, LLC'
+
+  - value: 0x044B
+    name: 'Nain Inc.'
+
+  - value: 0x044A
+    name: 'SHIMANO INC.'
+
+  - value: 0x0449
+    name: '1UP USA.com llc'
+
+  - value: 0x0448
+    name: 'Grand Centrix GmbH'
+
+  - value: 0x0447
+    name: 'Fabtronics Australia Pty Ltd'
+
+  - value: 0x0446
+    name: 'NETGEAR, Inc.'
+
+  - value: 0x0445
+    name: 'Kobian Canada Inc.'
+
+  - value: 0x0444
+    name: 'Metanate Limited'
+
+  - value: 0x0443
+    name: 'Tucker International LLC'
+
+  - value: 0x0442
+    name: 'SECOM CO., LTD.'
+
+  - value: 0x0441
+    name: 'iProtoXi Oy'
+
+  - value: 0x0440
+    name: 'Valencell, Inc.'
+
+  - value: 0x043F
+    name: 'Tentacle Sync GmbH'
+
+  - value: 0x043E
+    name: 'Thermomedics, Inc.'
+
+  - value: 0x043D
+    name: 'Coiler Corporation'
+
+  - value: 0x043C
+    name: 'DeLaval'
+
+  - value: 0x043B
+    name: 'Appside co., ltd.'
+
+  - value: 0x043A
+    name: 'Nuheara Limited'
+
+  - value: 0x0439
+    name: 'Radiance Technologies'
+
+  - value: 0x0438
+    name: 'Helvar Ltd'
+
+  - value: 0x0437
+    name: 'eBest IOT Inc.'
+
+  - value: 0x0436
+    name: 'Drayson Technologies (Europe) Limited'
+
+  - value: 0x0435
+    name: 'Blocks Wearables Ltd.'
+
+  - value: 0x0434
+    name: 'Hatch Baby, Inc.'
+
+  - value: 0x0433
+    name: 'Pillsy Inc.'
+
+  - value: 0x0432
+    name: 'Silk Labs, Inc.'
+
+  - value: 0x0431
+    name: 'Alticor Inc.'
+
+  - value: 0x0430
+    name: 'SnapStyk Inc.'
+
+  - value: 0x042F
+    name: 'Danfoss A/S'
+
+  - value: 0x042E
+    name: 'MemCachier Inc.'
+
+  - value: 0x042D
+    name: 'Meshtech AS'
+
+  - value: 0x042C
+    name: 'Ticto N.V.'
+
+  - value: 0x042B
+    name: 'iMicroMed Incorporated'
+
+  - value: 0x042A
+    name: 'BD Medical'
+
+  - value: 0x0429
+    name: 'Prolon Inc.'
+
+  - value: 0x0428
+    name: 'SmallLoop, LLC'
+
+  - value: 0x0427
+    name: 'Focus fleet and fuel management inc'
+
+  - value: 0x0426
+    name: 'Husqvarna AB'
+
+  - value: 0x0425
+    name: 'Unify Software and Solutions GmbH & Co. KG'
+
+  - value: 0x0424
+    name: 'Trainesense Ltd.'
+
+  - value: 0x0423
+    name: 'Chargifi Limited'
+
+  - value: 0x0422
+    name: 'DELSEY SA'
+
+  - value: 0x0421
+    name: 'Backbone Labs, Inc.'
+
+  - value: 0x0420
+    name: 'TecBakery GmbH'
+
+  - value: 0x041F
+    name: 'Kopin Corporation'
+
+  - value: 0x041E
+    name: 'Dell Computer Corporation'
+
+  - value: 0x041D
+    name: 'Benning Elektrotechnik und Elektronik GmbH & Co. KG'
+
+  - value: 0x041C
+    name: 'WaterGuru, Inc.'
+
+  - value: 0x041B
+    name: 'OrthoAccel Technologies'
+
+  - value: 0x041A
+    name: 'Friday Labs Limited'
+
+  - value: 0x0419
+    name: 'Novalogy LTD'
+
+  - value: 0x0418
+    name: 'Reserved'
+
+  - value: 0x0417
+    name: 'Fatigue Science'
+
+  - value: 0x0416
+    name: 'SODA GmbH'
+
+  - value: 0x0415
+    name: 'Uber Technologies Inc'
+
+  - value: 0x0414
+    name: 'Lightning Protection International Pty Ltd'
+
+  - value: 0x0413
+    name: 'Wireless Cables Inc'
+
+  - value: 0x0412
+    name: 'SEFAM'
+
+  - value: 0x0411
+    name: 'Luidia Inc'
+
+  - value: 0x0410
+    name: 'Fender Musical Instruments'
+
+  - value: 0x040F
+    name: 'CO-AX Technology, Inc.'
+
+  - value: 0x040E
+    name: 'SKF (U.K.) Limited'
+
+  - value: 0x040D
+    name: 'NorthStar Battery Company, LLC'
+
+  - value: 0x040C
+    name: 'Senix Corporation'
+
+  - value: 0x040B
+    name: 'Jana Care Inc.'
+
+  - value: 0x040A
+    name: 'ZF OPENMATICS s.r.o.'
+
+  - value: 0x0409
+    name: 'RYSE INC.'
+
+  - value: 0x0408
+    name: 'ToGetHome Inc.'
+
+  - value: 0x0407
+    name: 'Swiss Audio SA'
+
+  - value: 0x0406
+    name: 'Airtago'
+
+  - value: 0x0405
+    name: 'Vertex International, Inc.'
+
+  - value: 0x0404
+    name: 'Authomate Inc'
+
+  - value: 0x0403
+    name: 'Gantner Electronic GmbH'
+
+  - value: 0x0402
+    name: 'Sears Holdings Corporation'
+
+  - value: 0x0401
+    name: 'Relations Inc.'
+
+  - value: 0x0400
+    name: 'i-developer IT Beratung UG'
+
+  - value: 0x03FF
+    name: 'Withings'
+
+  - value: 0x03FE
+    name: 'Littelfuse'
+
+  - value: 0x03FD
+    name: 'Trimble Inc.'
+
+  - value: 0x03FC
+    name: 'Kimberly-Clark'
+
+  - value: 0x03FB
+    name: 'Nox Medical'
+
+  - value: 0x03FA
+    name: 'Vyassoft Technologies Inc'
+
+  - value: 0x03F9
+    name: 'Becon Technologies Co.,Ltd.'
+
+  - value: 0x03F8
+    name: 'Rockford Corp.'
+
+  - value: 0x03F7
+    name: 'Owl Labs Inc.'
+
+  - value: 0x03F6
+    name: 'Iton Technology Corp.'
+
+  - value: 0x03F5
+    name: 'WHERE, Inc.'
+
+  - value: 0x03F4
+    name: 'PAL Technologies Ltd'
+
+  - value: 0x03F3
+    name: 'Flowscape AB'
+
+  - value: 0x03F2
+    name: 'WindowMaster A/S'
+
+  - value: 0x03F1
+    name: 'Hestan Smart Cooking Inc.'
+
+  - value: 0x03F0
+    name: 'CLINK'
+
+  - value: 0x03EF
+    name: 'foolography GmbH'
+
+  - value: 0x03EE
+    name: 'CUBE TECHNOLOGIES'
+
+  - value: 0x03ED
+    name: 'BASIC MICRO.COM,INC.'
+
+  - value: 0x03EC
+    name: 'Jigowatts Inc.'
+
+  - value: 0x03EB
+    name: 'Ozo Edu, Inc.'
+
+  - value: 0x03EA
+    name: 'Hello Inc.'
+
+  - value: 0x03E9
+    name: 'SHENZHEN LEMONJOY TECHNOLOGY CO., LTD.'
+
+  - value: 0x03E8
+    name: 'Reiner Kartengeraete GmbH & Co. KG.'
+
+  - value: 0x03E7
+    name: 'TRUE Fitness Technology'
+
+  - value: 0x03E6
+    name: 'IoT Instruments Oy'
+
+  - value: 0x03E5
+    name: 'ffly4u'
+
+  - value: 0x03E4
+    name: 'Chip-ing AG'
+
+  - value: 0x03E3
+    name: 'Qualcomm Life Inc'
+
+  - value: 0x03E2
+    name: 'Sensoan Oy'
+
+  - value: 0x03E1
+    name: 'SPD Development Company Ltd'
+
+  - value: 0x03E0
+    name: 'Actions (Zhuhai) Technology Co., Limited'
+
+  - value: 0x03DF
+    name: 'Grob Technologies, LLC'
+
+  - value: 0x03DE
+    name: 'Nathan Rhoades LLC'
+
+  - value: 0x03DD
+    name: 'Andreas Stihl AG & Co. KG'
+
+  - value: 0x03DC
+    name: 'Nima Labs'
+
+  - value: 0x03DB
+    name: 'Instabeat, Inc'
+
+  - value: 0x03DA
+    name: 'EnOcean GmbH'
+
+  - value: 0x03D9
+    name: '3IWare Co., Ltd.'
+
+  - value: 0x03D8
+    name: 'Zen-Me Labs Ltd'
+
+  - value: 0x03D7
+    name: 'FINSECUR'
+
+  - value: 0x03D6
+    name: 'Yota Devices LTD'
+
+  - value: 0x03D5
+    name: 'Wyzelink Systems Inc.'
+
+  - value: 0x03D4
+    name: 'PEG PEREGO SPA'
+
+  - value: 0x03D3
+    name: 'Sigma Connectivity AB'
+
+  - value: 0x03D2
+    name: 'IOT Pot India Private Limited'
+
+  - value: 0x03D1
+    name: 'Density Inc.'
+
+  - value: 0x03D0
+    name: 'Watteam Ltd'
+
+  - value: 0x03CF
+    name: 'MIRA, Inc.'
+
+  - value: 0x03CE
+    name: 'CONTRINEX S.A.'
+
+  - value: 0x03CD
+    name: 'Wynd Technologies, Inc.'
+
+  - value: 0x03CC
+    name: 'Vonkil Technologies Ltd'
+
+  - value: 0x03CB
+    name: 'SYSDEV Srl'
+
+  - value: 0x03CA
+    name: 'In2things Automation Pvt. Ltd.'
+
+  - value: 0x03C9
+    name: 'Gallagher Group'
+
+  - value: 0x03C8
+    name: 'Avvel International'
+
+  - value: 0x03C7
+    name: 'Structural Health Systems, Inc.'
+
+  - value: 0x03C6
+    name: 'Intricon'
+
+  - value: 0x03C5
+    name: 'St. Jude Medical, Inc.'
+
+  - value: 0x03C4
+    name: 'Pico Technology Inc.'
+
+  - value: 0x03C3
+    name: 'Casambi Technologies Oy'
+
+  - value: 0x03C2
+    name: 'Snapchat Inc'
+
+  - value: 0x03C1
+    name: 'Ember Technologies, Inc.'
+
+  - value: 0x03C0
+    name: 'Arch Systems Inc.'
+
+  - value: 0x03BF
+    name: 'iLumi Solutions Inc.'
+
+  - value: 0x03BE
+    name: 'Applied Science, Inc.'
+
+  - value: 0x03BD
+    name: 'amadas'
+
+  - value: 0x03BC
+    name: 'ASB Bank Ltd'
+
+  - value: 0x03BB
+    name: 'Abbott'
+
+  - value: 0x03BA
+    name: 'Maxscend Microelectronics Company Limited'
+
+  - value: 0x03B9
+    name: 'FREDERIQUE CONSTANT SA'
+
+  - value: 0x03B8
+    name: 'A-Safe Limited'
+
+  - value: 0x03B7
+    name: 'Airbly Inc.'
+
+  - value: 0x03B6
+    name: 'Mattel'
+
+  - value: 0x03B5
+    name: 'petPOMM, Inc'
+
+  - value: 0x03B4
+    name: 'Alpha Nodus, inc.'
+
+  - value: 0x03B3
+    name: 'Midwest Instruments & Controls'
+
+  - value: 0x03B2
+    name: 'Propagation Systems Limited'
+
+  - value: 0x03B1
+    name: 'Otodata Wireless Network Inc.'
+
+  - value: 0x03B0
+    name: 'VIBRADORM GmbH'
+
+  - value: 0x03AF
+    name: 'Comm-N-Sense Corp DBA Verigo'
+
+  - value: 0x03AE
+    name: 'Allswell Inc.'
+
+  - value: 0x03AD
+    name: 'XiQ'
+
+  - value: 0x03AC
+    name: 'Smablo LTD'
+
+  - value: 0x03AB
+    name: 'Meizu Technology Co., Ltd.'
+
+  - value: 0x03AA
+    name: 'Exon Sp. z o.o.'
+
+  - value: 0x03A9
+    name: 'THINKERLY SRL'
+
+  - value: 0x03A8
+    name: 'Esrille Inc.'
+
+  - value: 0x03A7
+    name: 'AeroScout'
+
+  - value: 0x03A6
+    name: 'Medela, Inc'
+
+  - value: 0x03A5
+    name: 'ACE CAD Enterprise Co., Ltd. (ACECAD)'
+
+  - value: 0x03A4
+    name: 'Token Zero Ltd'
+
+  - value: 0x03A3
+    name: 'SmartMovt Technology Co., Ltd'
+
+  - value: 0x03A2
+    name: 'Candura Instruments'
+
+  - value: 0x03A1
+    name: 'Alpine Labs LLC'
+
+  - value: 0x03A0
+    name: 'IVT Wireless Limited'
+
+  - value: 0x039F
+    name: 'Molex Corporation'
+
+  - value: 0x039E
+    name: 'SchoolBoard Limited'
+
+  - value: 0x039D
+    name: 'CareView Communications, Inc.'
+
+  - value: 0x039C
+    name: 'ALE International'
+
+  - value: 0x039B
+    name: 'South Silicon Valley Microelectronics'
+
+  - value: 0x039A
+    name: 'NeST'
+
+  - value: 0x0399
+    name: 'Nikon Corporation'
+
+  - value: 0x0398
+    name: 'Thetatronics Ltd'
+
+  - value: 0x0397
+    name: 'LEGO System A/S'
+
+  - value: 0x0396
+    name: 'BLOKS GmbH'
+
+  - value: 0x0395
+    name: 'SDATAWAY'
+
+  - value: 0x0394
+    name: 'Netclearance Systems, Inc.'
+
+  - value: 0x0393
+    name: 'LAVAZZA S.p.A.'
+
+  - value: 0x0392
+    name: 'T&D'
+
+  - value: 0x0391
+    name: 'Thingsquare AB'
+
+  - value: 0x0390
+    name: 'INFOTECH s.r.o.'
+
+  - value: 0x038F
+    name: 'Xiaomi Inc.'
+
+  - value: 0x038E
+    name: 'Crownstone B.V.'
+
+  - value: 0x038D
+    name: 'Resmed Ltd'
+
+  - value: 0x038C
+    name: 'Appion Inc.'
+
+  - value: 0x038B
+    name: 'Noke'
+
+  - value: 0x038A
+    name: 'Kohler Mira Limited'
+
+  - value: 0x0389
+    name: 'ActiveBlu Corporation'
+
+  - value: 0x0388
+    name: 'Kapsch TrafficCom AB'
+
+  - value: 0x0387
+    name: 'BluStor PMC, Inc.'
+
+  - value: 0x0386
+    name: 'Aterica Inc.'
+
+  - value: 0x0385
+    name: 'Embedded Electronic Solutions Ltd. dba e2Solutions'
+
+  - value: 0x0384
+    name: 'OCOSMOS Co., Ltd.'
+
+  - value: 0x0383
+    name: 'Kronos Incorporated'
+
+  - value: 0x0382
+    name: 'Precision Outcomes Ltd'
+
+  - value: 0x0381
+    name: 'Sharp Corporation'
+
+  - value: 0x0380
+    name: 'LLC "MEGA-F service"'
+
+  - value: 0x037F
+    name: 'Société des Produits Nestlé S.A.'
+
+  - value: 0x037E
+    name: 'lulabytes S.L.'
+
+  - value: 0x037D
+    name: 'MICRODIA Ltd.'
+
+  - value: 0x037C
+    name: 'Cronologics Corporation'
+
+  - value: 0x037B
+    name: 'Apption Labs Inc.'
+
+  - value: 0x037A
+    name: 'Algoria'
+
+  - value: 0x0379
+    name: 'Shenzhen iMCO Electronic Technology Co.,Ltd'
+
+  - value: 0x0378
+    name: 'Propeller Health'
+
+  - value: 0x0377
+    name: 'Plejd AB'
+
+  - value: 0x0376
+    name: 'Electronic Temperature Instruments Ltd'
+
+  - value: 0x0375
+    name: 'Expain AS'
+
+  - value: 0x0374
+    name: 'Holman Industries'
+
+  - value: 0x0373
+    name: 'AppNearMe Ltd'
+
+  - value: 0x0372
+    name: 'Nixie Labs, Inc.'
+
+  - value: 0x0371
+    name: 'ORBCOMM'
+
+  - value: 0x0370
+    name: 'Wazombi Labs OÜ'
+
+  - value: 0x036F
+    name: 'Motiv, Inc.'
+
+  - value: 0x036E
+    name: 'MOTIVE TECHNOLOGIES, INC.'
+
+  - value: 0x036D
+    name: 'AirBolt Pty Ltd'
+
+  - value: 0x036C
+    name: 'Zipcar'
+
+  - value: 0x036B
+    name: 'BRControls Products BV'
+
+  - value: 0x036A
+    name: 'SetPoint Medical'
+
+  - value: 0x0369
+    name: 'littleBits'
+
+  - value: 0x0368
+    name: 'Metormote AB'
+
+  - value: 0x0367
+    name: 'Saphe International'
+
+  - value: 0x0366
+    name: 'BOLTT Sports technologies Private limited'
+
+  - value: 0x0365
+    name: 'BioMech Sensor LLC'
+
+  - value: 0x0364
+    name: 'Favero Electronics Srl'
+
+  - value: 0x0363
+    name: 'FREELAP SA'
+
+  - value: 0x0362
+    name: 'ON Semiconductor'
+
+  - value: 0x0361
+    name: 'Wellinks Inc.'
+
+  - value: 0x0360
+    name: 'Insulet Corporation'
+
+  - value: 0x035F
+    name: 'Acromag'
+
+  - value: 0x035E
+    name: 'Naya Health, Inc.'
+
+  - value: 0x035D
+    name: 'KYS'
+
+  - value: 0x035C
+    name: 'Eaton Corporation'
+
+  - value: 0x035B
+    name: 'Matrix Inc.'
+
+  - value: 0x035A
+    name: 'Phillips-Medisize A/S'
+
+  - value: 0x0359
+    name: 'Novotec Medical GmbH'
+
+  - value: 0x0358
+    name: 'MagniWare Ltd.'
+
+  - value: 0x0357
+    name: 'Polymap Wireless'
+
+  - value: 0x0356
+    name: 'Spectrum Brands, Inc.'
+
+  - value: 0x0355
+    name: 'Sigma Designs, Inc.'
+
+  - value: 0x0354
+    name: 'TOPPAN FORMS CO.,LTD.'
+
+  - value: 0x0353
+    name: 'Alpha Audiotronics, Inc.'
+
+  - value: 0x0352
+    name: 'iRiding(Xiamen)Technology Co.,Ltd.'
+
+  - value: 0x0351
+    name: 'Pieps GmbH'
+
+  - value: 0x0350
+    name: 'Bitstrata Systems Inc.'
+
+  - value: 0x034F
+    name: 'Heartland Payment Systems'
+
+  - value: 0x034E
+    name: 'SafeTrust Inc.'
+
+  - value: 0x034D
+    name: 'TASER International, Inc.'
+
+  - value: 0x034C
+    name: 'HM Electronics, Inc.'
+
+  - value: 0x034B
+    name: 'Libratone A/S'
+
+  - value: 0x034A
+    name: 'Vaddio'
+
+  - value: 0x0349
+    name: 'VersaMe'
+
+  - value: 0x0348
+    name: 'Arioneo'
+
+  - value: 0x0347
+    name: 'Prevent Biometrics'
+
+  - value: 0x0346
+    name: 'Acuity Brands Lighting, Inc'
+
+  - value: 0x0345
+    name: 'Locus Positioning'
+
+  - value: 0x0344
+    name: 'Whirl Inc'
+
+  - value: 0x0343
+    name: 'Drekker Development Pty. Ltd.'
+
+  - value: 0x0342
+    name: 'GERTEC BRASIL LTDA.'
+
+  - value: 0x0341
+    name: 'Etesian Technologies LLC'
+
+  - value: 0x0340
+    name: 'Letsense s.r.l.'
+
+  - value: 0x033F
+    name: 'Automation Components, Inc.'
+
+  - value: 0x033E
+    name: 'Monitra SA'
+
+  - value: 0x033D
+    name: 'TPV Technology Limited'
+
+  - value: 0x033C
+    name: 'Virtuosys'
+
+  - value: 0x033B
+    name: 'Courtney Thorne Limited'
+
+  - value: 0x033A
+    name: 'Appception, Inc.'
+
+  - value: 0x0339
+    name: 'Blue Sky Scientific, LLC'
+
+  - value: 0x0338
+    name: 'COBI GmbH'
+
+  - value: 0x0337
+    name: 'AJP2 Holdings, LLC'
+
+  - value: 0x0336
+    name: 'GISTIC'
+
+  - value: 0x0335
+    name: 'Enlighted Inc'
+
+  - value: 0x0334
+    name: 'Airthings ASA'
+
+  - value: 0x0333
+    name: 'Mul-T-Lock'
+
+  - value: 0x0332
+    name: 'Electrocompaniet A.S.'
+
+  - value: 0x0331
+    name: '3flares Technologies Inc.'
+
+  - value: 0x0330
+    name: 'North Pole Engineering'
+
+  - value: 0x032F
+    name: 'OttoQ Inc'
+
+  - value: 0x032E
+    name: 'indoormap'
+
+  - value: 0x032D
+    name: 'BM innovations GmbH'
+
+  - value: 0x032C
+    name: 'NIPPON SMT.CO.,Ltd'
+
+  - value: 0x032B
+    name: 'ESYLUX'
+
+  - value: 0x032A
+    name: 'Electronic Design Lab'
+
+  - value: 0x0329
+    name: 'Eargo, Inc.'
+
+  - value: 0x0328
+    name: 'Grundfos A/S'
+
+  - value: 0x0327
+    name: 'Essex Electronics'
+
+  - value: 0x0326
+    name: 'Healthwear Technologies (Changzhou)Ltd'
+
+  - value: 0x0325
+    name: 'Amotus Solutions'
+
+  - value: 0x0324
+    name: 'Astro, Inc.'
+
+  - value: 0x0323
+    name: 'Rotor Bike Components'
+
+  - value: 0x0322
+    name: 'Compumedics Limited'
+
+  - value: 0x0321
+    name: 'Jewelbots'
+
+  - value: 0x0320
+    name: 'SONO ELECTRONICS. CO., LTD'
+
+  - value: 0x031F
+    name: 'MetaSystem S.p.A.'
+
+  - value: 0x031E
+    name: 'Eyefi, Inc.'
+
+  - value: 0x031D
+    name: 'Enterlab ApS'
+
+  - value: 0x031C
+    name: 'Lab Sensor Solutions'
+
+  - value: 0x031B
+    name: 'HQ Inc'
+
+  - value: 0x031A
+    name: 'Wurth Elektronik eiSos GmbH & Co. KG'
+
+  - value: 0x0319
+    name: 'Eugster Frismag AG'
+
+  - value: 0x0318
+    name: 'Aspenta International'
+
+  - value: 0x0317
+    name: 'CHUO Electronics CO., LTD.'
+
+  - value: 0x0316
+    name: 'AG Measurematics Pvt. Ltd.'
+
+  - value: 0x0315
+    name: 'Thermo Fisher Scientific'
+
+  - value: 0x0314
+    name: 'RIIG AI Sp. z o.o.'
+
+  - value: 0x0313
+    name: 'DiveNav, Inc.'
+
+  - value: 0x0312
+    name: 'Ducere Technologies Pvt Ltd'
+
+  - value: 0x0311
+    name: 'PEEQ DATA'
+
+  - value: 0x0310
+    name: 'SGL Italia S.r.l.'
+
+  - value: 0x030F
+    name: 'Shortcut Labs'
+
+  - value: 0x030E
+    name: 'Deviceworx'
+
+  - value: 0x030D
+    name: 'Devdata S.r.l.'
+
+  - value: 0x030C
+    name: 'Hilti AG'
+
+  - value: 0x030B
+    name: 'Magnitude Lighting Converters'
+
+  - value: 0x030A
+    name: 'Ellisys'
+
+  - value: 0x0309
+    name: 'Dolby Labs'
+
+  - value: 0x0308
+    name: 'Surefire, LLC'
+
+  - value: 0x0307
+    name: 'FUJI INDUSTRIAL CO.,LTD.'
+
+  - value: 0x0306
+    name: 'Life Laboratory Inc.'
+
+  - value: 0x0305
+    name: 'Swipp ApS'
+
+  - value: 0x0304
+    name: 'Proxy Technologies, Inc.'
+
+  - value: 0x0303
+    name: 'IACA electronique'
+
+  - value: 0x0302
+    name: 'Loop Devices, Inc'
+
+  - value: 0x0301
+    name: 'Giatec Scientific Inc.'
+
+  - value: 0x0300
+    name: 'World Moto Inc.'
+
+  - value: 0x02FF
+    name: 'Silicon Laboratories'
+
+  - value: 0x02FE
+    name: 'Lierda Science & Technology Group Co., Ltd.'
+
+  - value: 0x02FD
+    name: 'Uwanna, Inc.'
+
+  - value: 0x02FC
+    name: 'Shanghai Frequen Microelectronics Co., Ltd.'
+
+  - value: 0x02FB
+    name: 'Clarius Mobile Health Corp.'
+
+  - value: 0x02FA
+    name: 'CoSTAR TEchnologies'
+
+  - value: 0x02F9
+    name: 'IMAGINATION TECHNOLOGIES LTD'
+
+  - value: 0x02F8
+    name: 'Runteq Oy Ltd'
+
+  - value: 0x02F7
+    name: 'DreamVisions co., Ltd.'
+
+  - value: 0x02F6
+    name: 'Intemo Technologies'
+
+  - value: 0x02F5
+    name: 'Indagem Tech LLC'
+
+  - value: 0x02F4
+    name: 'Vensi, Inc.'
+
+  - value: 0x02F3
+    name: 'AuthAir, Inc'
+
+  - value: 0x02F2
+    name: 'GoPro, Inc.'
+
+  - value: 0x02F1
+    name: 'The Idea Cave, LLC'
+
+  - value: 0x02F0
+    name: 'Blackrat Software'
+
+  - value: 0x02EF
+    name: 'SMART-INNOVATION.inc'
+
+  - value: 0x02EE
+    name: 'Citizen Holdings Co., Ltd.'
+
+  - value: 0x02ED
+    name: 'HTC Corporation'
+
+  - value: 0x02EC
+    name: 'Delta Systems, Inc'
+
+  - value: 0x02EB
+    name: 'Ardic Technology'
+
+  - value: 0x02EA
+    name: 'Fujitsu Limited'
+
+  - value: 0x02E9
+    name: 'Sensogram Technologies, Inc.'
+
+  - value: 0x02E8
+    name: 'American Music Environments'
+
+  - value: 0x02E7
+    name: 'Connected Yard, Inc.'
+
+  - value: 0x02E6
+    name: 'Unwire'
+
+  - value: 0x02E5
+    name: 'Espressif Systems (Shanghai) Co., Ltd.'
+
+  - value: 0x02E4
+    name: 'Bytestorm Ltd.'
+
+  - value: 0x02E3
+    name: 'Carmanah Technologies Corp.'
+
+  - value: 0x02E2
+    name: 'NTT docomo'
+
+  - value: 0x02E1
+    name: 'Victron Energy BV'
+
+  - value: 0x02E0
+    name: 'University of Michigan'
+
+  - value: 0x02DF
+    name: 'Blur Product Development'
+
+  - value: 0x02DE
+    name: 'Samsung SDS Co., Ltd.'
+
+  - value: 0x02DD
+    name: 'Flint Rehabilitation Devices, LLC'
+
+  - value: 0x02DC
+    name: 'DeWalch Technologies, Inc.'
+
+  - value: 0x02DB
+    name: 'Digi International Inc (R)'
+
+  - value: 0x02DA
+    name: 'Gilvader'
+
+  - value: 0x02D9
+    name: 'Fliegl Agrartechnik GmbH'
+
+  - value: 0x02D8
+    name: 'Neosfar'
+
+  - value: 0x02D7
+    name: 'NIPPON SYSTEMWARE CO.,LTD.'
+
+  - value: 0x02D6
+    name: 'Send Solutions'
+
+  - value: 0x02D5
+    name: 'OMRON Corporation'
+
+  - value: 0x02D4
+    name: 'Secuyou ApS'
+
+  - value: 0x02D3
+    name: 'Powercast Corporation'
+
+  - value: 0x02D2
+    name: 'Afero, Inc.'
+
+  - value: 0x02D1
+    name: 'Empatica Srl'
+
+  - value: 0x02D0
+    name: '3M'
+
+  - value: 0x02CF
+    name: 'Anima'
+
+  - value: 0x02CE
+    name: 'Teva Branded Pharmaceutical Products R&D, Inc.'
+
+  - value: 0x02CD
+    name: 'BMA ergonomics b.v.'
+
+  - value: 0x02CC
+    name: 'Eijkelkamp Soil & Water'
+
+  - value: 0x02CB
+    name: 'AINA-Wireless Inc.'
+
+  - value: 0x02CA
+    name: 'ABOV Semiconductor'
+
+  - value: 0x02C9
+    name: 'PayRange Inc.'
+
+  - value: 0x02C8
+    name: 'OneSpan'
+
+  - value: 0x02C7
+    name: 'Electronics Tomorrow Limited'
+
+  - value: 0x02C6
+    name: 'Ayatan Sensors'
+
+  - value: 0x02C5
+    name: 'Lenovo (Singapore) Pte Ltd.'
+
+  - value: 0x02C4
+    name: 'Wilson Sporting Goods'
+
+  - value: 0x02C3
+    name: 'Techtronic Power Tools Technology Limited'
+
+  - value: 0x02C2
+    name: 'Guillemot Corporation'
+
+  - value: 0x02C1
+    name: 'LINE Corporation'
+
+  - value: 0x02C0
+    name: 'Dash Robotics'
+
+  - value: 0x02BF
+    name: 'Redbird Flight Simulations'
+
+  - value: 0x02BE
+    name: 'Seguro Technology Sp. z o.o.'
+
+  - value: 0x02BD
+    name: 'Chemtronics'
+
+  - value: 0x02BC
+    name: 'Genevac Ltd'
+
+  - value: 0x02BB
+    name: 'Koha.,Co.Ltd'
+
+  - value: 0x02BA
+    name: 'Swissprime Technologies AG'
+
+  - value: 0x02B9
+    name: 'Rinnai Corporation'
+
+  - value: 0x02B8
+    name: 'Chrono Therapeutics'
+
+  - value: 0x02B7
+    name: 'Oort Technologies LLC'
+
+  - value: 0x02B6
+    name: 'Schneider Electric'
+
+  - value: 0x02B5
+    name: 'HANSHIN ELECTRIC RAILWAY CO.,LTD.'
+
+  - value: 0x02B4
+    name: 'Hyginex, Inc.'
+
+  - value: 0x02B3
+    name: 'CLABER S.P.A.'
+
+  - value: 0x02B2
+    name: 'Oura Health Oy'
+
+  - value: 0x02B1
+    name: 'Raden Inc'
+
+  - value: 0x02B0
+    name: 'Bestechnic(Shanghai),Ltd'
+
+  - value: 0x02AF
+    name: 'Technicolor USA Inc.'
+
+  - value: 0x02AE
+    name: 'WeatherFlow, Inc.'
+
+  - value: 0x02AD
+    name: 'Rx Networks, Inc.'
+
+  - value: 0x02AC
+    name: 'RTB Elektronik GmbH & Co. KG'
+
+  - value: 0x02AB
+    name: 'BBPOS Limited'
+
+  - value: 0x02AA
+    name: 'Doppler Lab'
+
+  - value: 0x02A9
+    name: 'Chargelib'
+
+  - value: 0x02A8
+    name: 'miSport Ltd.'
+
+  - value: 0x02A7
+    name: 'Illuxtron international B.V.'
+
+  - value: 0x02A6
+    name: 'Robert Bosch GmbH'
+
+  - value: 0x02A5
+    name: 'Tendyron Corporation'
+
+  - value: 0x02A4
+    name: 'Pacific Lock Company'
+
+  - value: 0x02A3
+    name: 'Itude'
+
+  - value: 0x02A2
+    name: 'Sera4 Ltd.'
+
+  - value: 0x02A1
+    name: 'InventureTrack Systems'
+
+  - value: 0x02A0
+    name: 'Impossible Camera GmbH'
+
+  - value: 0x029F
+    name: 'Areus Engineering GmbH'
+
+  - value: 0x029E
+    name: 'Kupson spol. s r.o.'
+
+  - value: 0x029D
+    name: 'ALOTTAZS LABS, LLC'
+
+  - value: 0x029C
+    name: 'Blue Sky Scientific, LLC'
+
+  - value: 0x029B
+    name: 'C2 Development, Inc.'
+
+  - value: 0x029A
+    name: 'Currant, Inc.'
+
+  - value: 0x0299
+    name: 'Inexess Technology Simma KG'
+
+  - value: 0x0298
+    name: 'EISST Ltd'
+
+  - value: 0x0297
+    name: 'storm power ltd'
+
+  - value: 0x0296
+    name: 'Petzl'
+
+  - value: 0x0295
+    name: 'Sivantos GmbH'
+
+  - value: 0x0294
+    name: 'ELIAS GmbH'
+
+  - value: 0x0293
+    name: 'Blue Bite'
+
+  - value: 0x0292
+    name: 'SwiftSensors'
+
+  - value: 0x0291
+    name: 'CliniCloud Inc'
+
+  - value: 0x0290
+    name: 'Multibit Oy'
+
+  - value: 0x028F
+    name: 'Church & Dwight Co., Inc'
+
+  - value: 0x028E
+    name: 'RF Digital Corp'
+
+  - value: 0x028D
+    name: 'IF, LLC'
+
+  - value: 0x028C
+    name: 'NANOLINK APS'
+
+  - value: 0x028B
+    name: 'Code Gears LTD'
+
+  - value: 0x028A
+    name: 'Jetro AS'
+
+  - value: 0x0289
+    name: 'SK Telecom'
+
+  - value: 0x0288
+    name: 'Willowbank Electronics Ltd'
+
+  - value: 0x0287
+    name: 'Wally Ventures S.L.'
+
+  - value: 0x0286
+    name: 'RF Code, Inc.'
+
+  - value: 0x0285
+    name: 'WOWTech Canada Ltd.'
+
+  - value: 0x0284
+    name: 'Synapse Electronics'
+
+  - value: 0x0283
+    name: 'Maven Machines, Inc.'
+
+  - value: 0x0282
+    name: 'Sonova AG'
+
+  - value: 0x0281
+    name: 'StoneL'
+
+  - value: 0x0280
+    name: 'ITEC corporation'
+
+  - value: 0x027F
+    name: 'ruwido austria gmbh'
+
+  - value: 0x027E
+    name: 'HabitAware, LLC'
+
+  - value: 0x027D
+    name: 'HUAWEI Technologies Co., Ltd.'
+
+  - value: 0x027C
+    name: 'Aseptika Ltd'
+
+  - value: 0x027B
+    name: 'DEFA AS'
+
+  - value: 0x027A
+    name: 'Ekomini inc.'
+
+  - value: 0x0279
+    name: 'steute Schaltgerate GmbH & Co. KG'
+
+  - value: 0x0278
+    name: 'Johnson Outdoors Inc'
+
+  - value: 0x0277
+    name: 'bewhere inc'
+
+  - value: 0x0276
+    name: 'E.G.O. Elektro-Geraetebau GmbH'
+
+  - value: 0x0275
+    name: 'Geotab'
+
+  - value: 0x0274
+    name: 'Motsai Research'
+
+  - value: 0x0273
+    name: 'OCEASOFT'
+
+  - value: 0x0272
+    name: 'Alps Alpine Co., Ltd.'
+
+  - value: 0x0271
+    name: 'Animas Corp'
+
+  - value: 0x0270
+    name: 'LSI ADL Technology'
+
+  - value: 0x026F
+    name: 'Aptcode Solutions'
+
+  - value: 0x026E
+    name: 'FLEURBAEY BVBA'
+
+  - value: 0x026D
+    name: 'Technogym SPA'
+
+  - value: 0x026C
+    name: 'Domster Tadeusz Szydlowski'
+
+  - value: 0x026B
+    name: 'DEKA Research & Development Corp.'
+
+  - value: 0x026A
+    name: 'Gemalto'
+
+  - value: 0x0269
+    name: 'Torrox GmbH & Co KG'
+
+  - value: 0x0268
+    name: 'Cerevo'
+
+  - value: 0x0267
+    name: 'XMI Systems SA'
+
+  - value: 0x0266
+    name: 'Schawbel Technologies LLC'
+
+  - value: 0x0265
+    name: 'SMK Corporation'
+
+  - value: 0x0264
+    name: 'DDS, Inc.'
+
+  - value: 0x0263
+    name: 'Identiv, Inc.'
+
+  - value: 0x0262
+    name: 'Glacial Ridge Technologies'
+
+  - value: 0x0261
+    name: 'SECVRE GmbH'
+
+  - value: 0x0260
+    name: 'SensaRx'
+
+  - value: 0x025F
+    name: 'Yardarm Technologies'
+
+  - value: 0x025E
+    name: 'Fluke Corporation'
+
+  - value: 0x025D
+    name: 'Lexmark International Inc.'
+
+  - value: 0x025C
+    name: 'NetEase(Hangzhou)Network co.Ltd.'
+
+  - value: 0x025B
+    name: 'Five Interactive, LLC dba Zendo'
+
+  - value: 0x025A
+    name: 'University of Applied Sciences Valais/Haute Ecole Valaisanne'
+
+  - value: 0x0259
+    name: 'ALTYOR'
+
+  - value: 0x0258
+    name: 'Devialet SA'
+
+  - value: 0x0257
+    name: 'AdBabble Local Commerce Inc.'
+
+  - value: 0x0256
+    name: 'G24 Power Limited'
+
+  - value: 0x0255
+    name: 'Dai Nippon Printing Co., Ltd.'
+
+  - value: 0x0254
+    name: 'Playbrush'
+
+  - value: 0x0253
+    name: 'Xicato Inc.'
+
+  - value: 0x0252
+    name: 'UKC Technosolution'
+
+  - value: 0x0251
+    name: 'Lumo Bodytech Inc.'
+
+  - value: 0x0250
+    name: 'Sapphire Circuits LLC'
+
+  - value: 0x024F
+    name: 'Schneider Schreibgeräte GmbH'
+
+  - value: 0x024E
+    name: 'Microtronics Engineering GmbH'
+
+  - value: 0x024D
+    name: 'M-Way Solutions GmbH'
+
+  - value: 0x024C
+    name: 'Blue Clover Devices'
+
+  - value: 0x024B
+    name: 'Orlan LLC'
+
+  - value: 0x024A
+    name: 'Uwatec AG'
+
+  - value: 0x0249
+    name: 'Transcranial Ltd'
+
+  - value: 0x0248
+    name: 'Parker Hannifin Corp'
+
+  - value: 0x0247
+    name: 'FiftyThree Inc.'
+
+  - value: 0x0246
+    name: 'ACKme Networks, Inc.'
+
+  - value: 0x0245
+    name: 'Endress+Hauser'
+
+  - value: 0x0244
+    name: 'Iotera Inc'
+
+  - value: 0x0243
+    name: 'Masimo Corp'
+
+  - value: 0x0242
+    name: '16Lab Inc'
+
+  - value: 0x0241
+    name: 'Bragi GmbH'
+
+  - value: 0x0240
+    name: 'Argenox Technologies'
+
+  - value: 0x023F
+    name: 'WaveWare Technologies Inc.'
+
+  - value: 0x023E
+    name: 'Raven Industries'
+
+  - value: 0x023D
+    name: 'ViCentra B.V.'
+
+  - value: 0x023C
+    name: 'Awarepoint'
+
+  - value: 0x023B
+    name: 'Beijing CarePulse Electronic Technology Co, Ltd'
+
+  - value: 0x023A
+    name: 'Alatech Tehnology'
+
+  - value: 0x0239
+    name: 'JIN CO, Ltd'
+
+  - value: 0x0238
+    name: 'Trakm8 Ltd'
+
+  - value: 0x0237
+    name: 'MSHeli s.r.l.'
+
+  - value: 0x0236
+    name: 'Pitpatpet Ltd'
+
+  - value: 0x0235
+    name: 'Qrio Inc'
+
+  - value: 0x0234
+    name: 'FengFan (BeiJing) Technology Co, Ltd'
+
+  - value: 0x0233
+    name: 'Shenzhen SuLong Communication Ltd'
+
+  - value: 0x0232
+    name: 'x-Senso Solutions Kft'
+
+  - value: 0x0231
+    name: 'ETA SA'
+
+  - value: 0x0230
+    name: 'Foster Electric Company, Ltd'
+
+  - value: 0x022F
+    name: 'Huami (Shanghai) Culture Communication CO., LTD'
+
+  - value: 0x022E
+    name: 'Siemens AG'
+
+  - value: 0x022D
+    name: 'Lupine'
+
+  - value: 0x022C
+    name: 'Pharynks Corporation'
+
+  - value: 0x022B
+    name: 'Tesla, Inc.'
+
+  - value: 0x022A
+    name: 'Stamer Musikanlagen GMBH'
+
+  - value: 0x0229
+    name: 'Muoverti Limited'
+
+  - value: 0x0228
+    name: 'Twocanoes Labs, LLC'
+
+  - value: 0x0227
+    name: 'LifeBEAM Technologies'
+
+  - value: 0x0226
+    name: 'Merlinia A/S'
+
+  - value: 0x0225
+    name: 'Nestlé Nespresso S.A.'
+
+  - value: 0x0224
+    name: 'Comarch SA'
+
+  - value: 0x0223
+    name: 'Philip Morris Products S.A.'
+
+  - value: 0x0222
+    name: 'Praxis Dynamics'
+
+  - value: 0x0221
+    name: 'Mobiquity Networks Inc'
+
+  - value: 0x0220
+    name: 'Manus Machina BV'
+
+  - value: 0x021F
+    name: 'Luster Leaf Products  Inc'
+
+  - value: 0x021E
+    name: 'Goodnet, Ltd'
+
+  - value: 0x021D
+    name: 'Edamic'
+
+  - value: 0x021C
+    name: 'Mobicomm Inc'
+
+  - value: 0x021B
+    name: 'Cisco Systems, Inc'
+
+  - value: 0x021A
+    name: 'Blue Speck Labs, LLC'
+
+  - value: 0x0219
+    name: 'DOTT Limited'
+
+  - value: 0x0218
+    name: 'Hiotech AB'
+
+  - value: 0x0217
+    name: 'Tech4home, Lda'
+
+  - value: 0x0216
+    name: 'MTI Ltd'
+
+  - value: 0x0215
+    name: 'Lukoton Experience Oy'
+
+  - value: 0x0214
+    name: 'IK Multimedia Production srl'
+
+  - value: 0x0213
+    name: 'Wyler AG'
+
+  - value: 0x0212
+    name: 'Interplan Co., Ltd'
+
+  - value: 0x0211
+    name: 'Telink Semiconductor Co. Ltd'
+
+  - value: 0x0210
+    name: 'ikeGPS'
+
+  - value: 0x020F
+    name: 'Comodule GMBH'
+
+  - value: 0x020E
+    name: 'Omron Healthcare Co., LTD'
+
+  - value: 0x020D
+    name: 'Simplo Technology Co., LTD'
+
+  - value: 0x020C
+    name: 'CoroWare Technologies, Inc'
+
+  - value: 0x020B
+    name: 'Jaguar Land Rover Limited'
+
+  - value: 0x020A
+    name: 'Macnica Inc.'
+
+  - value: 0x0209
+    name: 'InvisionHeart Inc.'
+
+  - value: 0x0208
+    name: 'LumiGeek LLC'
+
+  - value: 0x0207
+    name: 'STEMP Inc.'
+
+  - value: 0x0206
+    name: 'Otter Products, LLC'
+
+  - value: 0x0205
+    name: 'Smartbotics Inc.'
+
+  - value: 0x0204
+    name: 'Tapcentive Inc.'
+
+  - value: 0x0203
+    name: 'Kemppi Oy'
+
+  - value: 0x0202
+    name: 'Rigado LLC'
+
+  - value: 0x0201
+    name: 'AR Timing'
+
+  - value: 0x0200
+    name: 'Verifone Systems Pte Ltd. Taiwan Branch'
+
+  - value: 0x01FF
+    name: 'Freescale Semiconductor, Inc.'
+
+  - value: 0x01FE
+    name: 'Radio Systems Corporation'
+
+  - value: 0x01FD
+    name: 'Kontakt Micro-Location Sp. z o.o.'
+
+  - value: 0x01FC
+    name: 'Wahoo Fitness, LLC'
+
+  - value: 0x01FB
+    name: 'Form Lifting, LLC'
+
+  - value: 0x01FA
+    name: 'Gozio Inc.'
+
+  - value: 0x01F9
+    name: 'Medtronic Inc.'
+
+  - value: 0x01F8
+    name: 'Anyka (Guangzhou) Microelectronics Technology Co, LTD'
+
+  - value: 0x01F7
+    name: 'Gelliner Limited'
+
+  - value: 0x01F6
+    name: 'DJO Global'
+
+  - value: 0x01F5
+    name: 'Cool Webthings Limited'
+
+  - value: 0x01F4
+    name: 'UTC Fire and Security'
+
+  - value: 0x01F3
+    name: 'The University of Tokyo'
+
+  - value: 0x01F2
+    name: 'Itron, Inc.'
+
+  - value: 0x01F1
+    name: 'Zebra Technologies Corporation'
+
+  - value: 0x01F0
+    name: 'KloudNation'
+
+  - value: 0x01EF
+    name: 'Fullpower Technologies, Inc.'
+
+  - value: 0x01EE
+    name: 'Valeo Service'
+
+  - value: 0x01ED
+    name: 'CuteCircuit LTD'
+
+  - value: 0x01EC
+    name: 'Spreadtrum Communications Shanghai Ltd'
+
+  - value: 0x01EB
+    name: 'AutoMap LLC'
+
+  - value: 0x01EA
+    name: 'Advanced Application Design, Inc.'
+
+  - value: 0x01E9
+    name: 'Sano, Inc.'
+
+  - value: 0x01E8
+    name: 'STIR'
+
+  - value: 0x01E7
+    name: 'IPS Group Inc.'
+
+  - value: 0x01E6
+    name: 'Technology Solutions (UK) Ltd'
+
+  - value: 0x01E5
+    name: 'Dynamic Devices Ltd'
+
+  - value: 0x01E4
+    name: 'Freedom Innovations'
+
+  - value: 0x01E3
+    name: 'Caterpillar Inc'
+
+  - value: 0x01E2
+    name: 'Lectronix, Inc.'
+
+  - value: 0x01E1
+    name: 'Jolla Ltd'
+
+  - value: 0x01E0
+    name: 'Widex A/S'
+
+  - value: 0x01DF
+    name: 'Bison Group Ltd.'
+
+  - value: 0x01DE
+    name: 'Minelab Electronics Pty Limited'
+
+  - value: 0x01DD
+    name: 'Koninklijke Philips N.V.'
+
+  - value: 0x01DC
+    name: 'iParking Ltd.'
+
+  - value: 0x01DB
+    name: 'Innblue Consulting'
+
+  - value: 0x01DA
+    name: 'Logitech International SA'
+
+  - value: 0x01D9
+    name: 'Savant Systems LLC'
+
+  - value: 0x01D8
+    name: 'Code Corporation'
+
+  - value: 0x01D7
+    name: 'Squadrone Systems Inc.'
+
+  - value: 0x01D6
+    name: 'G-wearables inc.'
+
+  - value: 0x01D5
+    name: 'ELAD srl'
+
+  - value: 0x01D4
+    name: 'Newlab S.r.l.'
+
+  - value: 0x01D3
+    name: 'Sky Wave Design'
+
+  - value: 0x01D2
+    name: 'Gill Electronics'
+
+  - value: 0x01D1
+    name: 'August Home, Inc'
+
+  - value: 0x01D0
+    name: 'Primus Inter Pares Ltd'
+
+  - value: 0x01CF
+    name: 'BSH'
+
+  - value: 0x01CE
+    name: 'HOUWA SYSTEM DESIGN, k.k.'
+
+  - value: 0x01CD
+    name: 'Chengdu Synwing Technology Ltd'
+
+  - value: 0x01CC
+    name: 'Sam Labs Ltd.'
+
+  - value: 0x01CB
+    name: 'Fetch My Pet'
+
+  - value: 0x01CA
+    name: 'Laerdal Medical AS'
+
+  - value: 0x01C9
+    name: 'Avi-on'
+
+  - value: 0x01C8
+    name: 'Poly-Control ApS'
+
+  - value: 0x01C7
+    name: 'Abiogenix Inc.'
+
+  - value: 0x01C6
+    name: 'HASWARE Inc.'
+
+  - value: 0x01C5
+    name: 'Bitcraze AB'
+
+  - value: 0x01C4
+    name: 'DME Microelectronics'
+
+  - value: 0x01C3
+    name: 'Bunch'
+
+  - value: 0x01C2
+    name: 'Transenergooil AG'
+
+  - value: 0x01C1
+    name: 'BRADATECH Corp.'
+
+  - value: 0x01C0
+    name: 'pironex GmbH'
+
+  - value: 0x01BF
+    name: 'Hong Kong HunterSun Electronic Limited'
+
+  - value: 0x01BE
+    name: 'Pulsate Mobile Ltd.'
+
+  - value: 0x01BD
+    name: 'Syszone Co., Ltd'
+
+  - value: 0x01BC
+    name: 'SenionLab AB'
+
+  - value: 0x01BB
+    name: 'Cochlear Bone Anchored Solutions AB'
+
+  - value: 0x01BA
+    name: 'Stages Cycling LLC'
+
+  - value: 0x01B9
+    name: 'HANA Micron'
+
+  - value: 0x01B8
+    name: 'i+D3 S.L.'
+
+  - value: 0x01B7
+    name: 'General Electric Company'
+
+  - value: 0x01B6
+    name: 'LM Technologies Ltd'
+
+  - value: 0x01B5
+    name: 'Nest Labs Inc.'
+
+  - value: 0x01B4
+    name: 'Trineo Sp. z o.o.'
+
+  - value: 0x01B3
+    name: 'Nytec, Inc.'
+
+  - value: 0x01B2
+    name: 'Nymi Inc.'
+
+  - value: 0x01B1
+    name: 'Netizens Sp. z o.o.'
+
+  - value: 0x01B0
+    name: 'Star Micronics Co., Ltd.'
+
+  - value: 0x01AF
+    name: 'Sunrise Micro Devices, Inc.'
+
+  - value: 0x01AE
+    name: 'Earlens Corporation'
+
+  - value: 0x01AD
+    name: 'FlightSafety International'
+
+  - value: 0x01AC
+    name: 'Trividia Health, Inc.'
+
+  - value: 0x01AB
+    name: 'Meta Platforms, Inc.'
+
+  - value: 0x01AA
+    name: 'Geophysical Technology Inc.'
+
+  - value: 0x01A9
+    name: 'Canon Inc.'
+
+  - value: 0x01A8
+    name: 'Taobao'
+
+  - value: 0x01A7
+    name: 'ENERGOUS CORPORATION'
+
+  - value: 0x01A6
+    name: 'Wille Engineering'
+
+  - value: 0x01A5
+    name: 'Icon Health and Fitness'
+
+  - value: 0x01A4
+    name: 'MSA Innovation, LLC'
+
+  - value: 0x01A3
+    name: 'EROAD'
+
+  - value: 0x01A2
+    name: 'GIGALANE.CO.,LTD'
+
+  - value: 0x01A1
+    name: 'FIAMM'
+
+  - value: 0x01A0
+    name: 'Channel Enterprises (HK) Ltd.'
+
+  - value: 0x019F
+    name: 'Strainstall Ltd'
+
+  - value: 0x019E
+    name: 'Ceruus'
+
+  - value: 0x019D
+    name: 'CVS Health'
+
+  - value: 0x019C
+    name: 'Cokiya Incorporated'
+
+  - value: 0x019B
+    name: 'CUBETECH s.r.o.'
+
+  - value: 0x019A
+    name: 'TRON Forum'
+
+  - value: 0x0199
+    name: 'SALTO SYSTEMS S.L.'
+
+  - value: 0x0198
+    name: 'VENGIT Korlatolt Felelossegu Tarsasag'
+
+  - value: 0x0197
+    name: 'WiSilica Inc.'
+
+  - value: 0x0196
+    name: 'Paxton Access Ltd'
+
+  - value: 0x0195
+    name: 'Zuli'
+
+  - value: 0x0194
+    name: 'Acoustic Stream Corporation'
+
+  - value: 0x0193
+    name: 'Maveric Automation LLC'
+
+  - value: 0x0192
+    name: 'Cloudleaf, Inc'
+
+  - value: 0x0191
+    name: 'FDK CORPORATION'
+
+  - value: 0x0190
+    name: 'Intelletto Technologies Inc.'
+
+  - value: 0x018F
+    name: 'Fireflies Systems'
+
+  - value: 0x018E
+    name: 'Fitbit, Inc.'
+
+  - value: 0x018D
+    name: 'Extron Design Services'
+
+  - value: 0x018C
+    name: 'Wilo SE'
+
+  - value: 0x018B
+    name: 'Konica Minolta, Inc.'
+
+  - value: 0x018A
+    name: 'Able Trend Technology Limited'
+
+  - value: 0x0189
+    name: 'Physical Enterprises Inc.'
+
+  - value: 0x0188
+    name: 'Unico RBC'
+
+  - value: 0x0187
+    name: 'Seraphim Sense Ltd'
+
+  - value: 0x0186
+    name: 'CORE Lighting Ltd'
+
+  - value: 0x0185
+    name: "bel'apps LLC"
+
+  - value: 0x0184
+    name: 'Nectar'
+
+  - value: 0x0183
+    name: 'Walt Disney'
+
+  - value: 0x0182
+    name: 'HOP Ubiquitous'
+
+  - value: 0x0181
+    name: 'Gecko Health Innovations, Inc.'
+
+  - value: 0x0180
+    name: 'Gigaset Communications GmbH'
+
+  - value: 0x017F
+    name: 'XTel Wireless ApS'
+
+  - value: 0x017E
+    name: 'BluDotz Ltd'
+
+  - value: 0x017D
+    name: 'BatAndCat'
+
+  - value: 0x017C
+    name: 'Mercedes-Benz Group AG'
+
+  - value: 0x017B
+    name: 'taskit GmbH'
+
+  - value: 0x017A
+    name: 'Telemonitor, Inc.'
+
+  - value: 0x0179
+    name: 'LAPIS Semiconductor Co.,Ltd'
+
+  - value: 0x0178
+    name: 'CASIO COMPUTER CO., LTD.'
+
+  - value: 0x0177
+    name: 'I-SYST inc.'
+
+  - value: 0x0176
+    name: 'SentriLock'
+
+  - value: 0x0175
+    name: 'Dynamic Controls'
+
+  - value: 0x0174
+    name: 'Everykey Inc.'
+
+  - value: 0x0173
+    name: 'Kocomojo, LLC'
+
+  - value: 0x0172
+    name: 'Connovate Technology Private Limited'
+
+  - value: 0x0171
+    name: 'Amazon.com Services LLC'
+
+  - value: 0x0170
+    name: 'Roche Diabetes Care AG'
+
+  - value: 0x016F
+    name: 'Podo Labs, Inc'
+
+  - value: 0x016E
+    name: 'Volantic AB'
+
+  - value: 0x016D
+    name: 'LifeScan Inc'
+
+  - value: 0x016C
+    name: 'MYSPHERA'
+
+  - value: 0x016B
+    name: 'Qblinks'
+
+  - value: 0x016A
+    name: 'Emerson Digital Cold Chain, Inc.'
+
+  - value: 0x0169
+    name: 'emberlight'
+
+  - value: 0x0168
+    name: 'Spicebox LLC'
+
+  - value: 0x0167
+    name: 'Ascensia Diabetes Care US Inc.'
+
+  - value: 0x0166
+    name: 'MISHIK Pte Ltd'
+
+  - value: 0x0165
+    name: 'Milwaukee Electric Tools'
+
+  - value: 0x0164
+    name: 'Qingdao Yeelink Information Technology Co., Ltd.'
+
+  - value: 0x0163
+    name: 'PCH International'
+
+  - value: 0x0162
+    name: 'MADSGlobalNZ Ltd.'
+
+  - value: 0x0161
+    name: 'yikes'
+
+  - value: 0x0160
+    name: 'AwoX'
+
+  - value: 0x015F
+    name: 'Timer Cap Co.'
+
+  - value: 0x015E
+    name: 'Unikey Technologies, Inc.'
+
+  - value: 0x015D
+    name: 'Estimote, Inc.'
+
+  - value: 0x015C
+    name: 'Pitius Tec S.L.'
+
+  - value: 0x015B
+    name: 'Biomedical Research Ltd.'
+
+  - value: 0x015A
+    name: 'micas AG'
+
+  - value: 0x0159
+    name: 'ChefSteps, Inc.'
+
+  - value: 0x0158
+    name: 'Inmite s.r.o.'
+
+  - value: 0x0157
+    name: 'Anhui Huami Information Technology Co., Ltd.'
+
+  - value: 0x0156
+    name: 'Accumulate AB'
+
+  - value: 0x0155
+    name: 'NETATMO'
+
+  - value: 0x0154
+    name: 'Pebble Technology'
+
+  - value: 0x0153
+    name: 'ROL Ergo'
+
+  - value: 0x0152
+    name: 'Vernier Software & Technology'
+
+  - value: 0x0151
+    name: 'OnBeep'
+
+  - value: 0x0150
+    name: 'Pioneer Corporation'
+
+  - value: 0x014F
+    name: 'B&W Group Ltd.'
+
+  - value: 0x014E
+    name: 'Tangerine, Inc.'
+
+  - value: 0x014D
+    name: 'HUIZHOU DESAY SV AUTOMOTIVE CO., LTD.'
+
+  - value: 0x014C
+    name: 'Mesh-Net Ltd'
+
+  - value: 0x014B
+    name: 'Master Lock'
+
+  - value: 0x014A
+    name: 'Tivoli Audio, LLC'
+
+  - value: 0x0149
+    name: 'Perytons Ltd.'
+
+  - value: 0x0148
+    name: 'Ambimat Electronics'
+
+  - value: 0x0147
+    name: 'Mighty Cast, Inc.'
+
+  - value: 0x0146
+    name: 'Ciright'
+
+  - value: 0x0145
+    name: 'Novatel Wireless'
+
+  - value: 0x0144
+    name: 'Lintech GmbH'
+
+  - value: 0x0143
+    name: 'Bkon Connect'
+
+  - value: 0x0142
+    name: 'Grape Systems Inc.'
+
+  - value: 0x0141
+    name: 'FedEx Services'
+
+  - value: 0x0140
+    name: 'Alpine Electronics (China) Co., Ltd'
+
+  - value: 0x013F
+    name: 'B&B Manufacturing Company'
+
+  - value: 0x013E
+    name: 'Nod, Inc.'
+
+  - value: 0x013D
+    name: 'WirelessWERX'
+
+  - value: 0x013C
+    name: 'Murata Manufacturing Co., Ltd.'
+
+  - value: 0x013B
+    name: 'Allegion'
+
+  - value: 0x013A
+    name: 'Tencent Holdings Ltd.'
+
+  - value: 0x0139
+    name: 'Focus Systems Corporation'
+
+  - value: 0x0138
+    name: 'NTEO Inc.'
+
+  - value: 0x0137
+    name: 'Prestigio Plaza Ltd.'
+
+  - value: 0x0136
+    name: 'Silvair, Inc.'
+
+  - value: 0x0135
+    name: 'Aireware LLC'
+
+  - value: 0x0134
+    name: 'Resolution Products, Ltd.'
+
+  - value: 0x0133
+    name: 'Blue Maestro Limited'
+
+  - value: 0x0132
+    name: 'MADS Inc'
+
+  - value: 0x0131
+    name: 'Cypress Semiconductor'
+
+  - value: 0x0130
+    name: 'Warehouse Innovations'
+
+  - value: 0x012F
+    name: 'Clarion Co. Inc.'
+
+  - value: 0x012E
+    name: 'ASSA ABLOY'
+
+  - value: 0x012D
+    name: 'Sony Corporation'
+
+  - value: 0x012C
+    name: 'TEMEC Instruments B.V.'
+
+  - value: 0x012B
+    name: 'SportIQ'
+
+  - value: 0x012A
+    name: 'Changzhou Yongse Infotech  Co., Ltd.'
+
+  - value: 0x0129
+    name: 'Nimble Devices Oy'
+
+  - value: 0x0128
+    name: 'GPSI Group Pty Ltd'
+
+  - value: 0x0127
+    name: 'Salutica Allied Solutions'
+
+  - value: 0x0126
+    name: 'Promethean Ltd.'
+
+  - value: 0x0125
+    name: 'SEAT es'
+
+  - value: 0x0124
+    name: 'HID Global'
+
+  - value: 0x0123
+    name: 'Kinsa, Inc'
+
+  - value: 0x0122
+    name: 'AirTurn, Inc.'
+
+  - value: 0x0121
+    name: 'Sino Wealth Electronic Ltd.'
+
+  - value: 0x0120
+    name: 'Porsche AG'
+
+  - value: 0x011F
+    name: 'Volkswagen AG'
+
+  - value: 0x011E
+    name: 'Skoda Auto a.s.'
+
+  - value: 0x011D
+    name: 'Arendi AG'
+
+  - value: 0x011C
+    name: 'Baidu'
+
+  - value: 0x011B
+    name: 'Hewlett Packard Enterprise'
+
+  - value: 0x011A
+    name: 'Qualcomm Labs, Inc.'
+
+  - value: 0x0119
+    name: 'Wize Technology Co., Ltd.'
+
+  - value: 0x0118
+    name: 'Radius Networks, Inc.'
+
+  - value: 0x0117
+    name: 'Wimoto Technologies Inc'
+
+  - value: 0x0116
+    name: '10AK Technologies'
+
+  - value: 0x0115
+    name: 'e.solutions'
+
+  - value: 0x0114
+    name: 'Xensr'
+
+  - value: 0x0113
+    name: 'Openbrain Technologies, Co., Ltd.'
+
+  - value: 0x0112
+    name: 'Visybl Inc.'
+
+  - value: 0x0111
+    name: 'Steelseries ApS'
+
+  - value: 0x0110
+    name: 'Nippon Seiki Co., Ltd.'
+
+  - value: 0x010F
+    name: 'HiSilicon Technologies CO., LIMITED'
+
+  - value: 0x010E
+    name: 'Audi AG'
+
+  - value: 0x010D
+    name: 'DENSO TEN Limited'
+
+  - value: 0x010C
+    name: 'Transducers Direct, LLC'
+
+  - value: 0x010B
+    name: 'ERi, Inc'
+
+  - value: 0x010A
+    name: 'Codegate Ltd'
+
+  - value: 0x0109
+    name: 'Atus BV'
+
+  - value: 0x0108
+    name: 'Chicony Electronics Co., Ltd.'
+
+  - value: 0x0107
+    name: 'Demant A/S'
+
+  - value: 0x0106
+    name: 'Innovative Yachtter Solutions'
+
+  - value: 0x0105
+    name: 'Ubiquitous Computing Technology Corporation'
+
+  - value: 0x0104
+    name: 'PLUS Location Systems Pty Ltd'
+
+  - value: 0x0103
+    name: 'Bang & Olufsen A/S'
+
+  - value: 0x0102
+    name: 'Keiser Corporation'
+
+  - value: 0x0101
+    name: 'Fugoo, Inc.'
+
+  - value: 0x0100
+    name: 'TomTom International BV'
+
+  - value: 0x00FF
+    name: 'Typo Products, LLC'
+
+  - value: 0x00FE
+    name: 'Stanley Black and Decker'
+
+  - value: 0x00FD
+    name: 'ValenceTech Limited'
+
+  - value: 0x00FC
+    name: 'Delphi Corporation'
+
+  - value: 0x00FB
+    name: 'KOUKAAM a.s.'
+
+  - value: 0x00FA
+    name: 'Crystal Alarm AB'
+
+  - value: 0x00F9
+    name: 'StickNFind'
+
+  - value: 0x00F8
+    name: 'AceUni Corp., Ltd.'
+
+  - value: 0x00F7
+    name: 'VSN Technologies, Inc.'
+
+  - value: 0x00F6
+    name: 'Elcometer Limited'
+
+  - value: 0x00F5
+    name: 'Smartifier Oy'
+
+  - value: 0x00F4
+    name: 'Nautilus Inc.'
+
+  - value: 0x00F3
+    name: 'Kent Displays Inc.'
+
+  - value: 0x00F2
+    name: 'Morse Project Inc.'
+
+  - value: 0x00F1
+    name: 'Witron Technology Limited'
+
+  - value: 0x00F0
+    name: 'PayPal, Inc.'
+
+  - value: 0x00EF
+    name: 'Bitsplitters GmbH'
+
+  - value: 0x00EE
+    name: 'Above Average Outcomes, Inc.'
+
+  - value: 0x00ED
+    name: 'Jolly Logic, LLC'
+
+  - value: 0x00EC
+    name: 'BioResearch Associates'
+
+  - value: 0x00EB
+    name: 'Server Technology Inc.'
+
+  - value: 0x00EA
+    name: 'www.vtracksystems.com'
+
+  - value: 0x00E9
+    name: 'Vtrack Systems'
+
+  - value: 0x00E8
+    name: 'ACTS Technologies'
+
+  - value: 0x00E7
+    name: 'KS Technologies'
+
+  - value: 0x00E6
+    name: 'Freshtemp'
+
+  - value: 0x00E5
+    name: 'Eden Software Consultants Ltd.'
+
+  - value: 0x00E4
+    name: 'L.S. Research, Inc.'
+
+  - value: 0x00E3
+    name: 'inMusic Brands, Inc'
+
+  - value: 0x00E2
+    name: 'Semilink Inc'
+
+  - value: 0x00E1
+    name: 'Danlers Ltd'
+
+  - value: 0x00E0
+    name: 'Google'
+
+  - value: 0x00DF
+    name: 'Misfit Wearables Corp'
+
+  - value: 0x00DE
+    name: 'Muzik LLC'
+
+  - value: 0x00DD
+    name: 'Hosiden Corporation'
+
+  - value: 0x00DC
+    name: 'Procter & Gamble'
+
+  - value: 0x00DB
+    name: 'Snuza (Pty) Ltd'
+
+  - value: 0x00DA
+    name: 'txtr GmbH'
+
+  - value: 0x00D9
+    name: 'Voyetra Turtle Beach'
+
+  - value: 0x00D8
+    name: 'Qualcomm Connected Experiences, Inc.'
+
+  - value: 0x00D7
+    name: 'Qualcomm Technologies, Inc.'
+
+  - value: 0x00D6
+    name: 'Timex Group USA, Inc.'
+
+  - value: 0x00D5
+    name: 'Austco Communication Systems'
+
+  - value: 0x00D4
+    name: 'Kawantech'
+
+  - value: 0x00D3
+    name: 'Taixingbang Technology (HK) Co,. LTD.'
+
+  - value: 0x00D2
+    name: 'Dialog Semiconductor B.V.'
+
+  - value: 0x00D1
+    name: 'Polar Electro Europe B.V.'
+
+  - value: 0x00D0
+    name: 'Dexcom, Inc.'
+
+  - value: 0x00CF
+    name: 'ARCHOS SA'
+
+  - value: 0x00CE
+    name: 'Eve Systems GmbH'
+
+  - value: 0x00CD
+    name: 'Microchip Technology Inc.'
+
+  - value: 0x00CC
+    name: 'Beats Electronics'
+
+  - value: 0x00CB
+    name: 'Binauric SE'
+
+  - value: 0x00CA
+    name: 'MC10'
+
+  - value: 0x00C9
+    name: 'Evluma'
+
+  - value: 0x00C8
+    name: 'GeLo Inc'
+
+  - value: 0x00C7
+    name: 'Quuppa Oy.'
+
+  - value: 0x00C6
+    name: 'Selfly BV'
+
+  - value: 0x00C5
+    name: 'Onset Computer Corporation'
+
+  - value: 0x00C4
+    name: 'LG Electronics'
+
+  - value: 0x00C3
+    name: 'adidas AG'
+
+  - value: 0x00C2
+    name: 'Geneq Inc.'
+
+  - value: 0x00C1
+    name: 'Shenzhen Excelsecu Data Technology Co.,Ltd'
+
+  - value: 0x00C0
+    name: 'AMICCOM Electronics Corporation'
+
+  - value: 0x00BF
+    name: 'Stalmart Technology Limited'
+
+  - value: 0x00BE
+    name: 'AAMP of America'
+
+  - value: 0x00BD
+    name: 'Aplix Corporation'
+
+  - value: 0x00BC
+    name: 'Ace Sensor Inc'
+
+  - value: 0x00BB
+    name: 'S-Power Electronics Limited'
+
+  - value: 0x00BA
+    name: 'Starkey Hearing Technologies'
+
+  - value: 0x00B9
+    name: 'Johnson Controls, Inc.'
+
+  - value: 0x00B8
+    name: 'Qualcomm Innovation Center, Inc. (QuIC)'
+
+  - value: 0x00B7
+    name: 'TreLab Ltd'
+
+  - value: 0x00B6
+    name: 'Meso international'
+
+  - value: 0x00B5
+    name: 'Swirl Networks'
+
+  - value: 0x00B4
+    name: 'BDE Technology Co., Ltd.'
+
+  - value: 0x00B3
+    name: 'Clarinox Technologies Pty. Ltd.'
+
+  - value: 0x00B2
+    name: 'Bekey A/S'
+
+  - value: 0x00B1
+    name: 'Saris Cycling Group, Inc'
+
+  - value: 0x00B0
+    name: 'Passif Semiconductor Corp'
+
+  - value: 0x00AF
+    name: 'Cinetix'
+
+  - value: 0x00AE
+    name: 'Omegawave Oy'
+
+  - value: 0x00AD
+    name: 'Peter Systemtechnik GmbH'
+
+  - value: 0x00AC
+    name: 'Green Throttle Games'
+
+  - value: 0x00AB
+    name: 'Ingenieur-Systemgruppe Zahn GmbH'
+
+  - value: 0x00AA
+    name: 'CAEN RFID srl'
+
+  - value: 0x00A9
+    name: 'MARELLI EUROPE S.P.A.'
+
+  - value: 0x00A8
+    name: 'ARP Devices Limited'
+
+  - value: 0x00A7
+    name: 'Visteon Corporation'
+
+  - value: 0x00A6
+    name: 'Panda Ocean Inc.'
+
+  - value: 0x00A5
+    name: 'OTL Dynamics LLC'
+
+  - value: 0x00A4
+    name: 'LINAK A/S'
+
+  - value: 0x00A3
+    name: 'Meta Watch Ltd.'
+
+  - value: 0x00A2
+    name: 'Vertu Corporation Limited'
+
+  - value: 0x00A1
+    name: 'SR-Medizinelektronik'
+
+  - value: 0x00A0
+    name: 'Kensington Computer Products Group'
+
+  - value: 0x009F
+    name: 'Suunto Oy'
+
+  - value: 0x009E
+    name: 'Bose Corporation'
+
+  - value: 0x009D
+    name: 'Geoforce Inc.'
+
+  - value: 0x009C
+    name: 'Colorfy, Inc.'
+
+  - value: 0x009B
+    name: 'Jiangsu Toppower Automotive Electronics Co., Ltd.'
+
+  - value: 0x009A
+    name: 'Alpwise'
+
+  - value: 0x0099
+    name: 'i.Tech Dynamic Global Distribution Ltd.'
+
+  - value: 0x0098
+    name: 'zero1.tv GmbH'
+
+  - value: 0x0097
+    name: 'ConnecteDevice Ltd.'
+
+  - value: 0x0096
+    name: 'ODM Technology, Inc.'
+
+  - value: 0x0095
+    name: 'NEC Lighting, Ltd.'
+
+  - value: 0x0094
+    name: 'Airoha Technology Corp.'
+
+  - value: 0x0093
+    name: 'Universal Electronics, Inc.'
+
+  - value: 0x0092
+    name: 'ThinkOptics, Inc.'
+
+  - value: 0x0091
+    name: 'Advanced PANMOBIL systems GmbH & Co. KG'
+
+  - value: 0x0090
+    name: 'Funai Electric Co., Ltd.'
+
+  - value: 0x008F
+    name: 'Telit Wireless Solutions GmbH'
+
+  - value: 0x008E
+    name: 'Quintic Corp'
+
+  - value: 0x008D
+    name: 'Zscan Software'
+
+  - value: 0x008C
+    name: 'Gimbal Inc.'
+
+  - value: 0x008B
+    name: 'Topcon Positioning Systems, LLC'
+
+  - value: 0x008A
+    name: 'Jawbone'
+
+  - value: 0x0089
+    name: 'GN Hearing A/S'
+
+  - value: 0x0088
+    name: 'Ecotest'
+
+  - value: 0x0087
+    name: 'Garmin International, Inc.'
+
+  - value: 0x0086
+    name: 'Equinux AG'
+
+  - value: 0x0085
+    name: 'BlueRadios, Inc.'
+
+  - value: 0x0084
+    name: 'Ludus Helsinki Ltd.'
+
+  - value: 0x0083
+    name: 'TimeKeeping Systems, Inc.'
+
+  - value: 0x0082
+    name: 'DSEA A/S'
+
+  - value: 0x0081
+    name: 'WuXi Vimicro'
+
+  - value: 0x0080
+    name: 'DeLorme Publishing Company, Inc.'
+
+  - value: 0x007F
+    name: 'Autonet Mobile'
+
+  - value: 0x007E
+    name: 'Sports Tracking Technologies Ltd.'
+
+  - value: 0x007D
+    name: 'Seers Technology Co., Ltd.'
+
+  - value: 0x007C
+    name: 'A & R Cambridge'
+
+  - value: 0x007B
+    name: 'Hanlynn Technologies'
+
+  - value: 0x007A
+    name: 'MStar Semiconductor, Inc.'
+
+  - value: 0x0079
+    name: 'lesswire AG'
+
+  - value: 0x0078
+    name: 'Nike, Inc.'
+
+  - value: 0x0077
+    name: 'Laird Connectivity LLC'
+
+  - value: 0x0076
+    name: 'Creative Technology Ltd.'
+
+  - value: 0x0075
+    name: 'Samsung Electronics Co. Ltd.'
+
+  - value: 0x0074
+    name: 'Zomm, LLC'
+
+  - value: 0x0073
+    name: 'Group Sense Ltd.'
+
+  - value: 0x0072
+    name: 'ShangHai Super Smart Electronics Co. Ltd.'
+
+  - value: 0x0071
+    name: 'connectBlue AB'
+
+  - value: 0x0070
+    name: 'Monster, LLC'
+
+  - value: 0x006F
+    name: 'Sound ID'
+
+  - value: 0x006E
+    name: 'Summit Data Communications, Inc.'
+
+  - value: 0x006D
+    name: 'BriarTek, Inc'
+
+  - value: 0x006C
+    name: 'Beautiful Enterprise Co., Ltd.'
+
+  - value: 0x006B
+    name: 'Polar Electro OY'
+
+  - value: 0x006A
+    name: 'MindTree Ltd.'
+
+  - value: 0x0069
+    name: 'A&D Engineering, Inc.'
+
+  - value: 0x0068
+    name: 'General Motors'
+
+  - value: 0x0067
+    name: 'GN Audio A/S'
+
+  - value: 0x0066
+    name: '9Solutions Oy'
+
+  - value: 0x0065
+    name: 'HP, Inc.'
+
+  - value: 0x0064
+    name: 'Band XI International, LLC'
+
+  - value: 0x0063
+    name: 'MiCommand Inc.'
+
+  - value: 0x0062
+    name: 'Gibson Guitars'
+
+  - value: 0x0061
+    name: 'RDA Microelectronics'
+
+  - value: 0x0060
+    name: 'RivieraWaves S.A.S'
+
+  - value: 0x005F
+    name: 'Wicentric, Inc.'
+
+  - value: 0x005E
+    name: 'Stonestreet One, LLC'
+
+  - value: 0x005D
+    name: 'Realtek Semiconductor Corporation'
+
+  - value: 0x005C
+    name: 'Belkin International, Inc.'
+
+  - value: 0x005B
+    name: 'Ralink Technology Corporation'
+
+  - value: 0x005A
+    name: 'EM Microelectronic-Marin SA'
+
+  - value: 0x0059
+    name: 'Nordic Semiconductor ASA'
+
+  - value: 0x0058
+    name: 'Vizio, Inc.'
+
+  - value: 0x0057
+    name: 'Harman International Industries, Inc.'
+
+  - value: 0x0056
+    name: 'Sony Ericsson Mobile Communications'
+
+  - value: 0x0055
+    name: 'Plantronics, Inc.'
+
+  - value: 0x0054
+    name: '3DiJoy Corporation'
+
+  - value: 0x0053
+    name: 'Free2move AB'
+
+  - value: 0x0052
+    name: 'J&M Corporation'
+
+  - value: 0x0051
+    name: 'Tzero Technologies, Inc.'
+
+  - value: 0x0050
+    name: 'SiRF Technology, Inc.'
+
+  - value: 0x004F
+    name: 'APT Ltd.'
+
+  - value: 0x004E
+    name: 'Avago Technologies'
+
+  - value: 0x004D
+    name: 'Staccato Communications, Inc.'
+
+  - value: 0x004C
+    name: 'Apple, Inc.'
+
+  - value: 0x004B
+    name: 'Continental Automotive Systems'
+
+  - value: 0x004A
+    name: 'Accel Semiconductor Ltd.'
+
+  - value: 0x0049
+    name: '3DSP Corporation'
+
+  - value: 0x0048
+    name: 'Marvell Technology Group Ltd.'
+
+  - value: 0x0047
+    name: 'Bluegiga'
+
+  - value: 0x0046
+    name: 'MediaTek, Inc.'
+
+  - value: 0x0045
+    name: 'Atheros Communications, Inc.'
+
+  - value: 0x0044
+    name: 'Socket Mobile'
+
+  - value: 0x0043
+    name: 'PARROT AUTOMOTIVE SAS'
+
+  - value: 0x0042
+    name: 'CONWISE Technology Corporation Ltd'
+
+  - value: 0x0041
+    name: 'Integrated Silicon Solution Taiwan, Inc.'
+
+  - value: 0x0040
+    name: 'Seiko Epson Corporation'
+
+  - value: 0x003F
+    name: 'Bluetooth SIG, Inc'
+
+  - value: 0x003E
+    name: 'Systems and Chips, Inc'
+
+  - value: 0x003D
+    name: 'IPextreme, Inc.'
+
+  - value: 0x003C
+    name: 'BlackBerry Limited'
+
+  - value: 0x003B
+    name: 'Gennum Corporation'
+
+  - value: 0x003A
+    name: 'Panasonic Holdings Corporation'
+
+  - value: 0x0039
+    name: 'Integrated System Solution Corp.'
+
+  - value: 0x0038
+    name: 'Syntronix Corporation'
+
+  - value: 0x0037
+    name: 'Mobilian Corporation'
+
+  - value: 0x0036
+    name: 'Renesas Electronics Corporation'
+
+  - value: 0x0035
+    name: 'Eclipse (HQ Espana) S.L.'
+
+  - value: 0x0034
+    name: 'Computer Access Technology Corporation (CATC)'
+
+  - value: 0x0033
+    name: 'Commil Ltd'
+
+  - value: 0x0032
+    name: 'Red-M (Communications) Ltd'
+
+  - value: 0x0031
+    name: 'Synopsys, Inc.'
+
+  - value: 0x0030
+    name: 'ST Microelectronics'
+
+  - value: 0x002F
+    name: 'MewTel Technology Inc.'
+
+  - value: 0x002E
+    name: 'Norwood Systems'
+
+  - value: 0x002D
+    name: 'GCT Semiconductor'
+
+  - value: 0x002C
+    name: 'Macronix International Co. Ltd.'
+
+  - value: 0x002B
+    name: 'Tenovis'
+
+  - value: 0x002A
+    name: 'Symbol Technologies, Inc.'
+
+  - value: 0x0029
+    name: 'Hitachi Ltd'
+
+  - value: 0x0028
+    name: 'R F Micro Devices'
+
+  - value: 0x0027
+    name: 'Open Interface'
+
+  - value: 0x0026
+    name: 'C Technologies'
+
+  - value: 0x0025
+    name: 'NXP B.V.'
+
+  - value: 0x0024
+    name: 'Alcatel'
+
+  - value: 0x0023
+    name: 'WavePlus Technology Co., Ltd.'
+
+  - value: 0x0022
+    name: 'NEC Corporation'
+
+  - value: 0x0021
+    name: 'Mansella Ltd'
+
+  - value: 0x0020
+    name: 'BandSpeed, Inc.'
+
+  - value: 0x001F
+    name: 'AVM Berlin'
+
+  - value: 0x001E
+    name: 'Inventel'
+
+  - value: 0x001D
+    name: 'Qualcomm'
+
+  - value: 0x001C
+    name: 'Conexant Systems Inc.'
+
+  - value: 0x001B
+    name: 'Signia Technologies, Inc.'
+
+  - value: 0x001A
+    name: 'TTPCom Limited'
+
+  - value: 0x0019
+    name: 'Rohde & Schwarz GmbH & Co. KG'
+
+  - value: 0x0018
+    name: 'Transilica, Inc.'
+
+  - value: 0x0017
+    name: 'Newlogic'
+
+  - value: 0x0016
+    name: 'KC Technology Inc.'
+
+  - value: 0x0015
+    name: 'RTX A/S'
+
+  - value: 0x0014
+    name: 'Mitsubishi Electric Corporation'
+
+  - value: 0x0013
+    name: 'Atmel Corporation'
+
+  - value: 0x0012
+    name: 'Zeevo, Inc.'
+
+  - value: 0x0011
+    name: 'Widcomm, Inc.'
+
+  - value: 0x0010
+    name: 'Mitel Semiconductor'
+
+  - value: 0x000F
+    name: 'Broadcom Corporation'
+
+  - value: 0x000E
+    name: 'Parthus Technologies Inc.'
+
+  - value: 0x000D
+    name: 'Texas Instruments Inc.'
+
+  - value: 0x000C
+    name: 'Digianswer A/S'
+
+  - value: 0x000B
+    name: 'Silicon Wave'
+
+  - value: 0x000A
+    name: 'Qualcomm Technologies International, Ltd. (QTIL)'
+
+  - value: 0x0009
+    name: 'Infineon Technologies AG'
+
+  - value: 0x0008
+    name: 'Motorola'
+
+  - value: 0x0007
+    name: 'Lucent'
+
+  - value: 0x0006
+    name: 'Microsoft'
+
+  - value: 0x0005
+    name: '3Com'
+
+  - value: 0x0004
+    name: 'Toshiba Corp.'
+
+  - value: 0x0003
+    name: 'IBM Corp.'
+
+  - value: 0x0002
+    name: 'Intel Corp.'
+
+  - value: 0x0001
+    name: 'Nokia Mobile Phones'
+
+  - value: 0x0000
+    name: 'Ericsson AB'
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/MicroPython/BluetoothDialogs/data/member_uuids.yaml	Sun Jul 02 17:39:33 2023 +0200
@@ -0,0 +1,1204 @@
+# This document, regardless of its title or content, is not a Bluetooth
+# Specification as defined in the Bluetooth Patent/Copyright License Agreement
+# (“PCLA”) and Bluetooth Trademark License Agreement. Use of this document by
+# members of Bluetooth SIG is governed by the membership and other related
+# agreements between Bluetooth SIG Inc. (“Bluetooth SIG”) and its members,
+# including the PCLA and other agreements posted on Bluetooth SIG’s website
+# located at www.bluetooth.com.
+# 
+# THIS DOCUMENT IS PROVIDED “AS IS” AND BLUETOOTH SIG, ITS MEMBERS, AND THEIR
+# AFFILIATES MAKE NO REPRESENTATIONS OR WARRANTIES AND DISCLAIM ALL WARRANTIES,
+# EXPRESS OR IMPLIED, INCLUDING ANY WARRANTY OF MERCHANTABILITY, TITLE,
+# NON-INFRINGEMENT, FITNESS FOR ANY PARTICULAR PURPOSE, THAT THE CONTENT OF THIS
+# DOCUMENT IS FREE OF ERRORS.
+# 
+# TO THE EXTENT NOT PROHIBITED BY LAW, BLUETOOTH SIG, ITS MEMBERS, AND THEIR
+# AFFILIATES DISCLAIM ALL LIABILITY ARISING OUT OF OR RELATING TO USE OF THIS
+# DOCUMENT AND ANY INFORMATION CONTAINED IN THIS DOCUMENT, INCLUDING LOST REVENUE,
+# PROFITS, DATA OR PROGRAMS, OR BUSINESS INTERRUPTION, OR FOR SPECIAL, INDIRECT,
+# CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF
+# THE THEORY OF LIABILITY, AND EVEN IF BLUETOOTH SIG, ITS MEMBERS, OR THEIR
+# AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+# 
+# This document is proprietary to Bluetooth SIG. This document may contain or
+# cover subject matter that is intellectual property of Bluetooth SIG and its
+# members. The furnishing of this document does not grant any license to any
+# intellectual property of Bluetooth SIG or its members.
+# 
+# This document is subject to change without notice.
+# 
+# Copyright © 2020–2023 by Bluetooth SIG, Inc. The Bluetooth word mark and logos
+# are owned by Bluetooth SIG, Inc. Other third-party brands and names are the
+# property of their respective owners.
+
+uuids:
+ - uuid: 0xFEFF
+   name: GN Netcom
+ - uuid: 0xFEFE
+   name: GN Hearing A/S
+ - uuid: 0xFEFD
+   name: "Gimbal, Inc."
+ - uuid: 0xFEFC
+   name: "Gimbal, Inc."
+ - uuid: 0xFEFB
+   name: Telit Wireless Solutions (Formerly Stollmann E+V GmbH)
+ - uuid: 0xFEFA
+   name: "PayPal, Inc."
+ - uuid: 0xFEF9
+   name: "PayPal, Inc."
+ - uuid: 0xFEF8
+   name: Aplix Corporation
+ - uuid: 0xFEF7
+   name: Aplix Corporation
+ - uuid: 0xFEF6
+   name: "Wicentric, Inc."
+ - uuid: 0xFEF5
+   name: Dialog Semiconductor GmbH
+ - uuid: 0xFEF4
+   name: Google LLC
+ - uuid: 0xFEF3
+   name: Google LLC
+ - uuid: 0xFEF2
+   name: CSR
+ - uuid: 0xFEF1
+   name: CSR
+ - uuid: 0xFEF0
+   name: Intel
+ - uuid: 0xFEEF
+   name: Polar Electro Oy
+ - uuid: 0xFEEE
+   name: Polar Electro Oy
+ - uuid: 0xFEED
+   name: "Tile, Inc."
+ - uuid: 0xFEEC
+   name: "Tile, Inc."
+ - uuid: 0xFEEB
+   name: "Swirl Networks, Inc."
+ - uuid: 0xFEEA
+   name: "Swirl Networks, Inc."
+ - uuid: 0xFEE9
+   name: Quintic Corp.
+ - uuid: 0xFEE8
+   name: Quintic Corp.
+ - uuid: 0xFEE7
+   name: Tencent Holdings Limited.
+ - uuid: 0xFEE6
+   name: "Silvair, Inc."
+ - uuid: 0xFEE5
+   name: Nordic Semiconductor ASA
+ - uuid: 0xFEE4
+   name: Nordic Semiconductor ASA
+ - uuid: 0xFEE3
+   name: "Anki, Inc."
+ - uuid: 0xFEE2
+   name: "Anki, Inc."
+ - uuid: 0xFEE1
+   name: "Anhui Huami Information Technology Co., Ltd."
+ - uuid: 0xFEE0
+   name: "Anhui Huami Information Technology Co., Ltd."
+ - uuid: 0xFEDF
+   name: Design SHIFT
+ - uuid: 0xFEDE
+   name: "Coin, Inc."
+ - uuid: 0xFEDD
+   name: Jawbone
+ - uuid: 0xFEDC
+   name: Jawbone
+ - uuid: 0xFEDB
+   name: "Perka, Inc."
+ - uuid: 0xFEDA
+   name: ISSC Technologies Corp.
+ - uuid: 0xFED9
+   name: Pebble Technology Corporation
+ - uuid: 0xFED8
+   name: Google LLC
+ - uuid: 0xFED7
+   name: Broadcom
+ - uuid: 0xFED6
+   name: Broadcom
+ - uuid: 0xFED5
+   name: Plantronics Inc.
+ - uuid: 0xFED4
+   name: "Apple, Inc."
+ - uuid: 0xFED3
+   name: "Apple, Inc."
+ - uuid: 0xFED2
+   name: "Apple, Inc."
+ - uuid: 0xFED1
+   name: "Apple, Inc."
+ - uuid: 0xFED0
+   name: "Apple, Inc."
+ - uuid: 0xFECF
+   name: "Apple, Inc."
+ - uuid: 0xFECE
+   name: "Apple, Inc."
+ - uuid: 0xFECD
+   name: "Apple, Inc."
+ - uuid: 0xFECC
+   name: "Apple, Inc."
+ - uuid: 0xFECB
+   name: "Apple, Inc."
+ - uuid: 0xFECA
+   name: "Apple, Inc."
+ - uuid: 0xFEC9
+   name: "Apple, Inc."
+ - uuid: 0xFEC8
+   name: "Apple, Inc."
+ - uuid: 0xFEC7
+   name: "Apple, Inc."
+ - uuid: 0xFEC6
+   name: "Kocomojo, LLC"
+ - uuid: 0xFEC5
+   name: Realtek Semiconductor Corp.
+ - uuid: 0xFEC4
+   name: PLUS Location Systems
+ - uuid: 0xFEC3
+   name: "360fly, Inc."
+ - uuid: 0xFEC2
+   name: "Blue Spark Technologies, Inc."
+ - uuid: 0xFEC1
+   name: KDDI Corporation
+ - uuid: 0xFEC0
+   name: KDDI Corporation
+ - uuid: 0xFEBF
+   name: "Nod, Inc."
+ - uuid: 0xFEBE
+   name: Bose Corporation
+ - uuid: 0xFEBD
+   name: "Clover Network, Inc"
+ - uuid: 0xFEBC
+   name: Dexcom Inc
+ - uuid: 0xFEBB
+   name: adafruit industries
+ - uuid: 0xFEBA
+   name: Tencent Holdings Limited
+ - uuid: 0xFEB9
+   name: LG Electronics
+ - uuid: 0xFEB8
+   name: "Meta Platforms, Inc."
+ - uuid: 0xFEB7
+   name: "Meta Platforms, Inc."
+ - uuid: 0xFEB6
+   name: "Vencer Co., Ltd"
+ - uuid: 0xFEB5
+   name: WiSilica Inc.
+ - uuid: 0xFEB4
+   name: WiSilica Inc.
+ - uuid: 0xFEB3
+   name: Taobao
+ - uuid: 0xFEB2
+   name: Microsoft Corporation
+ - uuid: 0xFEB1
+   name: Electronics Tomorrow Limited
+ - uuid: 0xFEB0
+   name: Nest Labs Inc
+ - uuid: 0xFEAF
+   name: Nest Labs Inc
+ - uuid: 0xFEAE
+   name: Nokia
+ - uuid: 0xFEAD
+   name: Nokia
+ - uuid: 0xFEAC
+   name: Nokia
+ - uuid: 0xFEAB
+   name: Nokia
+ - uuid: 0xFEAA
+   name: Google LLC
+ - uuid: 0xFEA9
+   name: Savant Systems LLC
+ - uuid: 0xFEA8
+   name: Savant Systems LLC
+ - uuid: 0xFEA7
+   name: UTC Fire and Security
+ - uuid: 0xFEA6
+   name: "GoPro, Inc."
+ - uuid: 0xFEA5
+   name: "GoPro, Inc."
+ - uuid: 0xFEA4
+   name: Paxton Access Ltd
+ - uuid: 0xFEA3
+   name: ITT Industries
+ - uuid: 0xFEA2
+   name: "Intrepid Control Systems, Inc."
+ - uuid: 0xFEA1
+   name: "Intrepid Control Systems, Inc."
+ - uuid: 0xFEA0
+   name: Google LLC
+ - uuid: 0xFE9F
+   name: Google LLC
+ - uuid: 0xFE9E
+   name: Dialog Semiconductor B.V.
+ - uuid: 0xFE9D
+   name: Mobiquity Networks Inc
+ - uuid: 0xFE9C
+   name: "GSI Laboratories, Inc."
+ - uuid: 0xFE9B
+   name: "Samsara Networks, Inc"
+ - uuid: 0xFE9A
+   name: Estimote
+ - uuid: 0xFE99
+   name: Currant Inc
+ - uuid: 0xFE98
+   name: Currant Inc
+ - uuid: 0xFE97
+   name: Tesla Motors Inc.
+ - uuid: 0xFE96
+   name: Tesla Motors Inc.
+ - uuid: 0xFE95
+   name: Xiaomi Inc.
+ - uuid: 0xFE94
+   name: OttoQ In
+ - uuid: 0xFE93
+   name: OttoQ In
+ - uuid: 0xFE92
+   name: "Jarden Safety & Security"
+ - uuid: 0xFE91
+   name: "Shanghai Imilab Technology Co.,Ltd"
+ - uuid: 0xFE90
+   name: JUMA
+ - uuid: 0xFE8F
+   name: CSR
+ - uuid: 0xFE8E
+   name: ARM Ltd
+ - uuid: 0xFE8D
+   name: Interaxon Inc.
+ - uuid: 0xFE8C
+   name: TRON Forum
+ - uuid: 0xFE8B
+   name: "Apple, Inc."
+ - uuid: 0xFE8A
+   name: "Apple, Inc."
+ - uuid: 0xFE89
+   name: "B&O Play A/S"
+ - uuid: 0xFE88
+   name: SALTO SYSTEMS S.L.
+ - uuid: 0xFE87
+   name: "Qingdao Yeelink Information Technology Co., Ltd. ( 青岛亿联客信息技术有限公司 )"
+ - uuid: 0xFE86
+   name: "HUAWEI Technologies Co., Ltd"
+ - uuid: 0xFE85
+   name: RF Digital Corp
+ - uuid: 0xFE84
+   name: RF Digital Corp
+ - uuid: 0xFE83
+   name: Blue Bite
+ - uuid: 0xFE82
+   name: Medtronic Inc.
+ - uuid: 0xFE81
+   name: Medtronic Inc.
+ - uuid: 0xFE80
+   name: Doppler Lab
+ - uuid: 0xFE7F
+   name: Doppler Lab
+ - uuid: 0xFE7E
+   name: Awear Solutions Ltd
+ - uuid: 0xFE7D
+   name: Aterica Health Inc.
+ - uuid: 0xFE7C
+   name: Telit Wireless Solutions (Formerly Stollmann E+V GmbH)
+ - uuid: 0xFE7B
+   name: "Orion Labs, Inc."
+ - uuid: 0xFE7A
+   name: Bragi GmbH
+ - uuid: 0xFE79
+   name: Zebra Technologies
+ - uuid: 0xFE78
+   name: Hewlett-Packard Company
+ - uuid: 0xFE77
+   name: Hewlett-Packard Company
+ - uuid: 0xFE76
+   name: TangoMe
+ - uuid: 0xFE75
+   name: TangoMe
+ - uuid: 0xFE74
+   name: unwire
+ - uuid: 0xFE73
+   name: "Abbott (formerly St. Jude Medical, Inc.)"
+ - uuid: 0xFE72
+   name: "Abbott (formerly St. Jude Medical, Inc.)"
+ - uuid: 0xFE71
+   name: Plume Design Inc
+ - uuid: 0xFE70
+   name: "Beijing Jingdong Century Trading Co., Ltd."
+ - uuid: 0xFE6F
+   name: LINE Corporation
+ - uuid: 0xFE6E
+   name: The University of Tokyo
+ - uuid: 0xFE6D
+   name: The University of Tokyo
+ - uuid: 0xFE6C
+   name: "TASER International, Inc."
+ - uuid: 0xFE6B
+   name: "TASER International, Inc."
+ - uuid: 0xFE6A
+   name: Kontakt Micro-Location Sp. z o.o.
+ - uuid: 0xFE69
+   name: Capsle Technologies Inc.
+ - uuid: 0xFE68
+   name: Capsle Technologies Inc.
+ - uuid: 0xFE67
+   name: Lab Sensor Solutions
+ - uuid: 0xFE66
+   name: Intel Corporation
+ - uuid: 0xFE65
+   name: CHIPOLO d.o.o.
+ - uuid: 0xFE64
+   name: Siemens AG
+ - uuid: 0xFE63
+   name: "Connected Yard, Inc."
+ - uuid: 0xFE62
+   name: Indagem Tech LLC
+ - uuid: 0xFE61
+   name: Logitech International SA
+ - uuid: 0xFE60
+   name: "Lierda Science & Technology Group Co., Ltd."
+ - uuid: 0xFE5F
+   name: "Eyefi, Inc."
+ - uuid: 0xFE5E
+   name: Plastc Corporation
+ - uuid: 0xFE5D
+   name: Grundfos A/S
+ - uuid: 0xFE5C
+   name: million hunters GmbH
+ - uuid: 0xFE5B
+   name: GT-tronics HK Ltd
+ - uuid: 0xFE5A
+   name: Cronologics Corporation
+ - uuid: 0xFE59
+   name: Nordic Semiconductor ASA
+ - uuid: 0xFE58
+   name: Nordic Semiconductor ASA
+ - uuid: 0xFE57
+   name: Dotted Labs
+ - uuid: 0xFE56
+   name: Google LLC
+ - uuid: 0xFE55
+   name: Google LLC
+ - uuid: 0xFE54
+   name: "Motiv, Inc."
+ - uuid: 0xFE53
+   name: 3M
+ - uuid: 0xFE52
+   name: SetPoint Medical
+ - uuid: 0xFE51
+   name: SRAM
+ - uuid: 0xFE50
+   name: Google LLC
+ - uuid: 0xFE4F
+   name: "Molekule, Inc."
+ - uuid: 0xFE4E
+   name: NTT docomo
+ - uuid: 0xFE4D
+   name: Casambi Technologies Oy
+ - uuid: 0xFE4C
+   name: Volkswagen AG
+ - uuid: 0xFE4B
+   name: Signify Netherlands B.V. (formerly Philips Lighting B.V.)
+ - uuid: 0xFE4A
+   name: "OMRON HEALTHCARE Co., Ltd."
+ - uuid: 0xFE49
+   name: SenionLab AB
+ - uuid: 0xFE48
+   name: General Motors
+ - uuid: 0xFE47
+   name: General Motors
+ - uuid: 0xFE46
+   name: "B&O Play A/S"
+ - uuid: 0xFE45
+   name: Snapchat Inc
+ - uuid: 0xFE44
+   name: SK Telecom
+ - uuid: 0xFE43
+   name: "Andreas Stihl AG & Co. KG"
+ - uuid: 0xFE42
+   name: Nets A/S
+ - uuid: 0xFE41
+   name: Inugo Systems Limited
+ - uuid: 0xFE40
+   name: Inugo Systems Limited
+ - uuid: 0xFE3F
+   name: Friday Labs Limited
+ - uuid: 0xFE3E
+   name: BD Medical
+ - uuid: 0xFE3D
+   name: BD Medical
+ - uuid: 0xFE3C
+   name: alibaba
+ - uuid: 0xFE3B
+   name: Dolby Laboratories
+ - uuid: 0xFE3A
+   name: "TTS Tooltechnic Systems AG & Co. KG"
+ - uuid: 0xFE39
+   name: "TTS Tooltechnic Systems AG & Co. KG"
+ - uuid: 0xFE38
+   name: Spaceek LTD
+ - uuid: 0xFE37
+   name: Spaceek LTD
+ - uuid: 0xFE36
+   name: "HUAWEI Technologies Co., Ltd"
+ - uuid: 0xFE35
+   name: "HUAWEI Technologies Co., Ltd"
+ - uuid: 0xFE34
+   name: SmallLoop LLC
+ - uuid: 0xFE33
+   name: CHIPOLO d.o.o.
+ - uuid: 0xFE32
+   name: "Pro-Mark, Inc."
+ - uuid: 0xFE31
+   name: Volkswagen AG
+ - uuid: 0xFE30
+   name: Volkswagen AG
+ - uuid: 0xFE2F
+   name: "CRESCO Wireless, Inc"
+ - uuid: 0xFE2E
+   name: "ERi,Inc."
+ - uuid: 0xFE2D
+   name: "LAMPLIGHT Co., Ltd."
+ - uuid: 0xFE2C
+   name: Google LLC
+ - uuid: 0xFE2B
+   name: ITT Industries
+ - uuid: 0xFE2A
+   name: "DaisyWorks, Inc."
+ - uuid: 0xFE29
+   name: Gibson Innovations
+ - uuid: 0xFE28
+   name: Ayla Networks
+ - uuid: 0xFE27
+   name: Google LLC
+ - uuid: 0xFE26
+   name: Google LLC
+ - uuid: 0xFE25
+   name: "Apple, Inc."
+ - uuid: 0xFE24
+   name: August Home Inc
+ - uuid: 0xFE23
+   name: Zoll Medical Corporation
+ - uuid: 0xFE22
+   name: Zoll Medical Corporation
+ - uuid: 0xFE21
+   name: Bose Corporation
+ - uuid: 0xFE20
+   name: Emerson
+ - uuid: 0xFE1F
+   name: "Garmin International, Inc."
+ - uuid: 0xFE1E
+   name: "LAMPLIGHT Co., Ltd."
+ - uuid: 0xFE1D
+   name: Illuminati Instrument Corporation
+ - uuid: 0xFE1C
+   name: "NetMedia, Inc."
+ - uuid: 0xFE1B
+   name: Tyto Life LLC
+ - uuid: 0xFE1A
+   name: Tyto Life LLC
+ - uuid: 0xFE19
+   name: Google LLC
+ - uuid: 0xFE18
+   name: "Runtime, Inc."
+ - uuid: 0xFE17
+   name: Telit Wireless Solutions GmbH
+ - uuid: 0xFE16
+   name: "Footmarks, Inc."
+ - uuid: 0xFE15
+   name: "Amazon.com Services, Inc.."
+ - uuid: 0xFE14
+   name: Flextronics International USA Inc.
+ - uuid: 0xFE13
+   name: Apple Inc.
+ - uuid: 0xFE12
+   name: M-Way Solutions GmbH
+ - uuid: 0xFE11
+   name: GMC-I Messtechnik GmbH
+ - uuid: 0xFE10
+   name: "LAPIS Technology Co., Ltd."
+ - uuid: 0xFE0F
+   name: Signify Netherlands B.V. (formerly Philips Lighting B.V.)
+ - uuid: 0xFE0E
+   name: Setec Pty Ltd
+ - uuid: 0xFE0D
+   name: "Procter & Gamble"
+ - uuid: 0xFE0C
+   name: "Procter & Gamble"
+ - uuid: 0xFE0B
+   name: ruwido austria gmbh
+ - uuid: 0xFE0A
+   name: ruwido austria gmbh
+ - uuid: 0xFE09
+   name: "Pillsy, Inc."
+ - uuid: 0xFE08
+   name: Microsoft
+ - uuid: 0xFE07
+   name: "Sonos, Inc."
+ - uuid: 0xFE06
+   name: "Qualcomm Technologies, Inc."
+ - uuid: 0xFE05
+   name: CORE Transport Technologies NZ Limited
+ - uuid: 0xFE04
+   name: OpenPath Security Inc
+ - uuid: 0xFE03
+   name: "Amazon.com Services, Inc."
+ - uuid: 0xFE02
+   name: Robert Bosch GmbH
+ - uuid: 0xFE01
+   name: Duracell U.S. Operations Inc.
+ - uuid: 0xFE00
+   name: "Amazon.com Services, Inc."
+ - uuid: 0xFDFF
+   name: OSRAM GmbH
+ - uuid: 0xFDFE
+   name: ADHERIUM(NZ) LIMITED
+ - uuid: 0xFDFD
+   name: RecursiveSoft Inc.
+ - uuid: 0xFDFC
+   name: Optrel AG
+ - uuid: 0xFDFB
+   name: Tandem Diabetes Care
+ - uuid: 0xFDFA
+   name: Tandem Diabetes Care
+ - uuid: 0xFDF9
+   name: INIA
+ - uuid: 0xFDF8
+   name: Onvocal
+ - uuid: 0xFDF7
+   name: HP Inc.
+ - uuid: 0xFDF6
+   name: AIAIAI ApS
+ - uuid: 0xFDF5
+   name: Milwaukee Electric Tools
+ - uuid: 0xFDF4
+   name: "O. E. M. Controls, Inc."
+ - uuid: 0xFDF3
+   name: Amersports
+ - uuid: 0xFDF2
+   name: AMICCOM Electronics Corporation
+ - uuid: 0xFDF1
+   name: "LAMPLIGHT Co.,Ltd"
+ - uuid: 0xFDF0
+   name: Google LLC
+ - uuid: 0xFDEF
+   name: "ART AND PROGRAM, INC."
+ - uuid: 0xFDEE
+   name: "Huawei Technologies Co., Ltd."
+ - uuid: 0xFDED
+   name: Pole Star
+ - uuid: 0xFDEC
+   name: Mannkind Corporation
+ - uuid: 0xFDEB
+   name: Syntronix Corporation
+ - uuid: 0xFDEA
+   name: "SeeScan, Inc"
+ - uuid: 0xFDE9
+   name: Spacesaver Corporation
+ - uuid: 0xFDE8
+   name: Robert Bosch GmbH
+ - uuid: 0xFDE7
+   name: "SECOM Co., LTD"
+ - uuid: 0xFDE6
+   name: Intelletto Technologies Inc
+ - uuid: 0xFDE5
+   name: SMK Corporation
+ - uuid: 0xFDE4
+   name: "JUUL Labs, Inc."
+ - uuid: 0xFDE3
+   name: Abbott Diabetes Care
+ - uuid: 0xFDE2
+   name: Google LLC
+ - uuid: 0xFDE1
+   name: Fortin Electronic Systems
+ - uuid: 0xFDE0
+   name: John Deere
+ - uuid: 0xFDDF
+   name: Harman International
+ - uuid: 0xFDDE
+   name: Noodle Technology Inc.
+ - uuid: 0xFDDD
+   name: Arch Systems Inc
+ - uuid: 0xFDDC
+   name: 4iiii Innovations Inc.
+ - uuid: 0xFDDB
+   name: "Samsung Electronics Co., Ltd."
+ - uuid: 0xFDDA
+   name: MHCS
+ - uuid: 0xFDD9
+   name: "Jiangsu Teranovo Tech Co., Ltd."
+ - uuid: 0xFDD8
+   name: "Jiangsu Teranovo Tech Co., Ltd."
+ - uuid: 0xFDD7
+   name: Emerson
+ - uuid: 0xFDD6
+   name: Ministry of Supply
+ - uuid: 0xFDD5
+   name: Brompton Bicycle Ltd
+ - uuid: 0xFDD4
+   name: LX Solutions Pty Limited
+ - uuid: 0xFDD3
+   name: FUBA Automotive Electronics GmbH
+ - uuid: 0xFDD2
+   name: Bose Corporation
+ - uuid: 0xFDD1
+   name: "Huawei Technologies Co., Ltd"
+ - uuid: 0xFDD0
+   name: "Huawei Technologies Co., Ltd"
+ - uuid: 0xFDCF
+   name: "Nalu Medical, Inc"
+ - uuid: 0xFDCE
+   name: "SENNHEISER electronic GmbH & Co. KG"
+ - uuid: 0xFDCD
+   name: "Qingping Technology (Beijing) Co., Ltd."
+ - uuid: 0xFDCC
+   name: Shoof Technologies
+ - uuid: 0xFDCB
+   name: Meggitt SA
+ - uuid: 0xFDCA
+   name: Fortin Electronic Systems
+ - uuid: 0xFDC9
+   name: Busch-Jaeger Elektro GmbH
+ - uuid: 0xFDC8
+   name: Hach – Danaher
+ - uuid: 0xFDC7
+   name: Eli Lilly and Company
+ - uuid: 0xFDC6
+   name: Eli Lilly and Company
+ - uuid: 0xFDC5
+   name: Automatic Labs
+ - uuid: 0xFDC4
+   name: Simavita (Aust) Pty Ltd
+ - uuid: 0xFDC3
+   name: "Baidu Online Network Technology (Beijing) Co., Ltd"
+ - uuid: 0xFDC2
+   name: "Baidu Online Network Technology (Beijing) Co., Ltd"
+ - uuid: 0xFDC1
+   name: Hunter Douglas
+ - uuid: 0xFDC0
+   name: Hunter Douglas
+ - uuid: 0xFDBF
+   name: California Things Inc.
+ - uuid: 0xFDBE
+   name: California Things Inc.
+ - uuid: 0xFDBD
+   name: "Clover Network, Inc."
+ - uuid: 0xFDBC
+   name: Emerson
+ - uuid: 0xFDBB
+   name: Profoto
+ - uuid: 0xFDBA
+   name: Comcast Cable Corporation
+ - uuid: 0xFDB9
+   name: Comcast Cable Corporation
+ - uuid: 0xFDB8
+   name: LivaNova USA Inc.
+ - uuid: 0xFDB7
+   name: LivaNova USA Inc.
+ - uuid: 0xFDB6
+   name: GWA Hygiene GmbH
+ - uuid: 0xFDB5
+   name: ECSG
+ - uuid: 0xFDB4
+   name: HP Inc
+ - uuid: 0xFDB3
+   name: Audiodo AB
+ - uuid: 0xFDB2
+   name: Portable Multimedia Ltd
+ - uuid: 0xFDB1
+   name: "Proxy Technologies, Inc."
+ - uuid: 0xFDB0
+   name: "Proxy Technologies, Inc."
+ - uuid: 0xFDAF
+   name: Wiliot LTD
+ - uuid: 0xFDAE
+   name: "Houwa System Design, k.k."
+ - uuid: 0xFDAD
+   name: "Houwa System Design, k.k."
+ - uuid: 0xFDAC
+   name: Tentacle Sync GmbH
+ - uuid: 0xFDAB
+   name: Xiaomi Inc.
+ - uuid: 0xFDAA
+   name: Xiaomi Inc.
+ - uuid: 0xFDA9
+   name: "Rhombus Systems, Inc."
+ - uuid: 0xFDA8
+   name: PSA Peugeot Citroën
+ - uuid: 0xFDA7
+   name: WWZN Information Technology Company Limited
+ - uuid: 0xFDA6
+   name: WWZN Information Technology Company Limited
+ - uuid: 0xFDA5
+   name: "Neurostim OAB, Inc."
+ - uuid: 0xFDA4
+   name: Inseego Corp.
+ - uuid: 0xFDA3
+   name: Inseego Corp.
+ - uuid: 0xFDA2
+   name: "Groove X, Inc"
+ - uuid: 0xFDA1
+   name: "Groove X, Inc"
+ - uuid: 0xFDA0
+   name: Secugen Corporation
+ - uuid: 0xFD9F
+   name: VitalTech Affiliates LLC
+ - uuid: 0xFD9E
+   name: The Coca-Cola Company
+ - uuid: 0xFD9D
+   name: Gastec Corporation
+ - uuid: 0xFD9C
+   name: "Huawei Technologies Co., Ltd."
+ - uuid: 0xFD9B
+   name: "Huawei Technologies Co., Ltd."
+ - uuid: 0xFD9A
+   name: "Huawei Technologies Co., Ltd."
+ - uuid: 0xFD99
+   name: ABB Oy
+ - uuid: 0xFD98
+   name: "Disney Worldwide Services, Inc."
+ - uuid: 0xFD97
+   name: "June Life, Inc."
+ - uuid: 0xFD96
+   name: Google LLC
+ - uuid: 0xFD95
+   name: Rigado
+ - uuid: 0xFD94
+   name: Hewlett Packard Enterprise
+ - uuid: 0xFD93
+   name: Bayerische Motoren Werke AG
+ - uuid: 0xFD92
+   name: "Qualcomm Technologies International, Ltd. (QTIL)"
+ - uuid: 0xFD91
+   name: "Groove X, Inc."
+ - uuid: 0xFD90
+   name: "Guangzhou SuperSound Information Technology Co.,Ltd"
+ - uuid: 0xFD8F
+   name: Matrix ComSec Pvt. Ltd.
+ - uuid: 0xFD8E
+   name: Motorola Solutions
+ - uuid: 0xFD8D
+   name: quip NYC Inc.
+ - uuid: 0xFD8C
+   name: Google LLC
+ - uuid: 0xFD8B
+   name: Jigowatts Inc.
+ - uuid: 0xFD8A
+   name: Signify Netherlands B.V.
+ - uuid: 0xFD89
+   name: Urbanminded LTD
+ - uuid: 0xFD88
+   name: Urbanminded LTD
+ - uuid: 0xFD87
+   name: Google LLC
+ - uuid: 0xFD86
+   name: Abbott
+ - uuid: 0xFD85
+   name: Husqvarna AB
+ - uuid: 0xFD84
+   name: "Tile, Inc."
+ - uuid: 0xFD83
+   name: iNFORM Technology GmbH
+ - uuid: 0xFD82
+   name: Sony Corporation
+ - uuid: 0xFD81
+   name: "CANDY HOUSE, Inc."
+ - uuid: 0xFD80
+   name: "Phindex Technologies, Inc"
+ - uuid: 0xFD7F
+   name: Husqvarna AB
+ - uuid: 0xFD7E
+   name: "Samsung Electronics Co., Ltd."
+ - uuid: 0xFD7D
+   name: Center for Advanced Research Wernher Von Braun
+ - uuid: 0xFD7C
+   name: Toshiba Information Systems(Japan) Corporation
+ - uuid: 0xFD7B
+   name: "WYZE LABS, INC."
+ - uuid: 0xFD7A
+   name: Withings
+ - uuid: 0xFD79
+   name: Withings
+ - uuid: 0xFD78
+   name: Withings
+ - uuid: 0xFD77
+   name: Withings
+ - uuid: 0xFD76
+   name: Insulet Corporation
+ - uuid: 0xFD75
+   name: Insulet Corporation
+ - uuid: 0xFD74
+   name: BRControls Products BV
+ - uuid: 0xFD73
+   name: BRControls Products BV
+ - uuid: 0xFD72
+   name: Logitech International SA
+ - uuid: 0xFD71
+   name: GN Hearing A/S
+ - uuid: 0xFD70
+   name: "GuangDong Oppo Mobile Telecommunications Corp., Ltd"
+ - uuid: 0xFD6F
+   name: "Apple, Inc."
+ - uuid: 0xFD6E
+   name: Polidea sp. z o.o.
+ - uuid: 0xFD6D
+   name: Sigma Elektro GmbH
+ - uuid: 0xFD6C
+   name: "Samsung Electronics Co., Ltd."
+ - uuid: 0xFD6B
+   name: rapitag GmbH
+ - uuid: 0xFD6A
+   name: Emerson
+ - uuid: 0xFD69
+   name: "Samsung Electronics Co., Ltd"
+ - uuid: 0xFD68
+   name: Ubique Innovation AG
+ - uuid: 0xFD67
+   name: Montblanc Simplo GmbH
+ - uuid: 0xFD66
+   name: Zebra Technologies Corporation
+ - uuid: 0xFD65
+   name: Razer Inc.
+ - uuid: 0xFD64
+   name: INRIA
+ - uuid: 0xFD63
+   name: "Fitbit, Inc."
+ - uuid: 0xFD62
+   name: "Fitbit, Inc."
+ - uuid: 0xFD61
+   name: Arendi AG
+ - uuid: 0xFD60
+   name: Sercomm Corporation
+ - uuid: 0xFD5F
+   name: "Meta Platforms Technologies, LLC"
+ - uuid: 0xFD5E
+   name: Tapkey GmbH
+ - uuid: 0xFD5D
+   name: maxon motor ltd.
+ - uuid: 0xFD5C
+   name: React Mobile
+ - uuid: 0xFD5B
+   name: V2SOFT INC.
+ - uuid: 0xFD5A
+   name: "Samsung Electronics Co., Ltd."
+ - uuid: 0xFD59
+   name: "Samsung Electronics Co., Ltd."
+ - uuid: 0xFD58
+   name: Volvo Car Corporation
+ - uuid: 0xFD57
+   name: Volvo Car Corporation
+ - uuid: 0xFD56
+   name: Resmed Ltd
+ - uuid: 0xFD55
+   name: "Braveheart Wireless, Inc."
+ - uuid: 0xFD54
+   name: "Qingdao Haier Technology Co., Ltd."
+ - uuid: 0xFD53
+   name: PCI Private Limited
+ - uuid: 0xFD52
+   name: UTC Fire and Security
+ - uuid: 0xFD51
+   name: UTC Fire and Security
+ - uuid: 0xFD50
+   name: "Hangzhou Tuya Information  Technology Co., Ltd"
+ - uuid: 0xFD4F
+   name: Forkbeard Technologies AS
+ - uuid: 0xFD4E
+   name: "70mai Co.,Ltd."
+ - uuid: 0xFD4D
+   name: "70mai Co.,Ltd."
+ - uuid: 0xFD4C
+   name: "Adolf Wuerth GmbH & Co KG"
+ - uuid: 0xFD4B
+   name: "Samsung Electronics Co., Ltd."
+ - uuid: 0xFD4A
+   name: Sigma Elektro GmbH
+ - uuid: 0xFD49
+   name: Panasonic Corporation
+ - uuid: 0xFD48
+   name: Geberit International AG
+ - uuid: 0xFD47
+   name: Liberty Global Inc.
+ - uuid: 0xFD46
+   name: Lemco IKE
+ - uuid: 0xFD45
+   name: "GB Solution co.,Ltd"
+ - uuid: 0xFD44
+   name: Apple Inc.
+ - uuid: 0xFD43
+   name: Apple Inc.
+ - uuid: 0xFD42
+   name: "Globe (Jiangsu) Co.,Ltd"
+ - uuid: 0xFD41
+   name: Amazon Lab126
+ - uuid: 0xFD40
+   name: Beflex Inc.
+ - uuid: 0xFD3F
+   name: "Cognosos, Inc"
+ - uuid: 0xFD3E
+   name: "Pure Watercraft, inc."
+ - uuid: 0xFD3D
+   name: "Woan Technology (Shenzhen) Co., Ltd."
+ - uuid: 0xFD3C
+   name: Redline Communications Inc.
+ - uuid: 0xFD3B
+   name: Verkada Inc.
+ - uuid: 0xFD3A
+   name: Verkada Inc.
+ - uuid: 0xFD39
+   name: PREDIKTAS
+ - uuid: 0xFD38
+   name: Danfoss A/S
+ - uuid: 0xFD37
+   name: TireCheck GmbH
+ - uuid: 0xFD36
+   name: Google LLC
+ - uuid: 0xFD35
+   name: Transsion Holdings Limited
+ - uuid: 0xFD34
+   name: Aerosens LLC.
+ - uuid: 0xFD33
+   name: "DashLogic, Inc."
+ - uuid: 0xFD32
+   name: Gemalto Holding BV
+ - uuid: 0xFD31
+   name: LG Electronics Inc.
+ - uuid: 0xFD30
+   name: Sesam Solutions BV
+ - uuid: 0xFD2F
+   name: Bitstrata Systems Inc.
+ - uuid: 0xFD2E
+   name: Bitstrata Systems Inc.
+ - uuid: 0xFD2D
+   name: Xiaomi Inc.
+ - uuid: 0xFD2C
+   name: The Access Technologies
+ - uuid: 0xFD2B
+   name: The Access Technologies
+ - uuid: 0xFD2A
+   name: Sony Corporation
+ - uuid: 0xFD29
+   name: Asahi Kasei Corporation
+ - uuid: 0xFD28
+   name: Julius Blum GmbH
+ - uuid: 0xFD27
+   name: "Integrated Illumination Systems, Inc."
+ - uuid: 0xFD26
+   name: Novo Nordisk A/S
+ - uuid: 0xFD25
+   name: "GD Midea Air-Conditioning Equipment Co., Ltd."
+ - uuid: 0xFD24
+   name: "GD Midea Air-Conditioning Equipment Co., Ltd."
+ - uuid: 0xFD23
+   name: "DOM Sicherheitstechnik GmbH & Co. KG"
+ - uuid: 0xFD22
+   name: "Huawei Technologies Co., Ltd."
+ - uuid: 0xFD21
+   name: "Huawei Technologies Co., Ltd."
+ - uuid: 0xFD20
+   name: GN Hearing A/S
+ - uuid: 0xFD1F
+   name: 3M
+ - uuid: 0xFD1E
+   name: Plume Design Inc.
+ - uuid: 0xFD1D
+   name: "Samsung Electronics Co., Ltd"
+ - uuid: 0xFD1C
+   name: Brady Worldwide Inc.
+ - uuid: 0xFD1B
+   name: "Helios Sports, Inc."
+ - uuid: 0xFD1A
+   name: CSIRO
+ - uuid: 0xFD19
+   name: "Smith & Nephew Medical Limited"
+ - uuid: 0xFD18
+   name: LEGIC Identsystems AG
+ - uuid: 0xFD17
+   name: LEGIC Identsystems AG
+ - uuid: 0xFD16
+   name: "Sensitech, Inc."
+ - uuid: 0xFD15
+   name: Panasonic Corporation
+ - uuid: 0xFD14
+   name: "BRG Sports, Inc."
+ - uuid: 0xFD13
+   name: "BRG Sports, Inc."
+ - uuid: 0xFD12
+   name: "AEON MOTOR CO.,LTD."
+ - uuid: 0xFD11
+   name: "AEON MOTOR CO.,LTD."
+ - uuid: 0xFD10
+   name: "AEON MOTOR CO.,LTD."
+ - uuid: 0xFD0F
+   name: "AEON MOTOR CO.,LTD."
+ - uuid: 0xFD0E
+   name: "HerdDogg, Inc"
+ - uuid: 0xFD0D
+   name: Blecon Ltd
+ - uuid: 0xFD0C
+   name: OSM HK Limited
+ - uuid: 0xFD0B
+   name: "Luminostics, Inc."
+ - uuid: 0xFD0A
+   name: "Luminostics, Inc."
+ - uuid: 0xFD09
+   name: Cousins and Sears LLC
+ - uuid: 0xFD08
+   name: Bull Group Incorporated Company
+ - uuid: 0xFD07
+   name: Swedlock AB
+ - uuid: 0xFD06
+   name: RACE-AI LLC
+ - uuid: 0xFD05
+   name: "Qualcomm Technologies, Inc."
+ - uuid: 0xFD04
+   name: Shure Inc.
+ - uuid: 0xFD03
+   name: Quuppa Oy
+ - uuid: 0xFD02
+   name: LEGO System A/S
+ - uuid: 0xFD01
+   name: Sanvita Medical Corporation
+ - uuid: 0xFD00
+   name: "FUTEK Advanced Sensor Technology, Inc."
+ - uuid: 0xFCFF
+   name: 701x
+ - uuid: 0xFCFE
+   name: Sennheiser Consumer Audio GmbH
+ - uuid: 0xFCFD
+   name: "Barrot Technology Co.,Ltd."
+ - uuid: 0xFCFC
+   name: "Barrot Technology Co.,Ltd."
+ - uuid: 0xFCFB
+   name: "Shenzhen Benwei Media Co., Ltd."
+ - uuid: 0xFCFA
+   name: "Leupold & Stevens, Inc."
+ - uuid: 0xFCF9
+   name: "Leupold & Stevens, Inc."
+ - uuid: 0xFCF8
+   name: "Honor Device Co., Ltd."
+ - uuid: 0xFCF7
+   name: "Honor Device Co., Ltd."
+ - uuid: 0xFCF6
+   name: The Linux Foundation
+ - uuid: 0xFCF5
+   name: "Trident Communication Technology, LLC"
+ - uuid: 0xFCF4
+   name: Allegion
+ - uuid: 0xFCF3
+   name: Armatura LLC
+ - uuid: 0xFCF2
+   name: Bitwards Oy
+ - uuid: 0xFCF1
+   name: Google LLC
+ - uuid: 0xFCF0
+   name: "Security Enhancement Systems, LLC"
+ - uuid: 0xFCEF
+   name: Divesoft s.r.o.
+ - uuid: 0xFCEE
+   name: "Velentium, LLC"
+ - uuid: 0xFCED
+   name: Workaround Gmbh
+ - uuid: 0xFCEC
+   name: Griffwerk GmbH
+ - uuid: 0xFCEB
+   name: Avi-On
+ - uuid: 0xFCEA
+   name: Chess Wise B.V.
+ - uuid: 0xFCE9
+   name: "MindRhythm, Inc."
+ - uuid: 0xFCE8
+   name: ITT Industries
+ - uuid: 0xFCE7
+   name: TKH Security B.V.
+ - uuid: 0xFCE6
+   name: Guard RFID Solutions Inc.
+ - uuid: 0xFCE5
+   name: "Samsara Networks, Inc"
+ - uuid: 0xFCE4
+   name: "Samsara Networks, Inc"
+ - uuid: 0xFCE3
+   name: "Smith & Nephew Medical Limited"
+ - uuid: 0xFCE2
+   name: Baracoda Daily Healthtech
+ - uuid: 0xFCE1
+   name: Sony Group Corporation
+ - uuid: 0xFCE0
+   name: Akciju sabiedriba "SAF TEHNIKA"
+ - uuid: 0xFCDF
+   name: "NIO USA, Inc."
+ - uuid: 0xFCDE
+   name: "ARCTOP, INC."
+ - uuid: 0xFCDD
+   name: Mobilaris AB
+ - uuid: 0xFCDC
+   name: "Amazon.com Services, LLC"
+ - uuid: 0xFCDB
+   name: aconno GmbH
+ - uuid: 0xFCDA
+   name: Draeger
+ - uuid: 0xFCD9
+   name: "Huso, INC"
+ - uuid: 0xFCD8
+   name: Appex Factory S.L.
+ - uuid: 0xFCD7
+   name: PowerPal Pty Ltd
+ - uuid: 0xFCD6
+   name: SWISSINNO SOLUTIONS AG
+ - uuid: 0xFCD5
+   name: "Nortek Security & Control"
+ - uuid: 0xFCD4
+   name: OMRON HEALTHCARE
+ - uuid: 0xFCD3
+   name: "Fisher & Paykel Healthcare"
+ - uuid: 0xFCD2
+   name: Allterco Robotics ltd
+ - uuid: 0xFCD1
+   name: "Shenzhen Benwei Media Co.,Ltd."
+ - uuid: 0xFCD0
+   name: Laerdal Medical AS
+ - uuid: 0xFCCF
+   name: Google LLC
+ - uuid: 0xFCCE
+   name: "Luna Health, Inc."
+ - uuid: 0xFCCD
+   name: Zound Industries International AB
+ - uuid: 0xFCCC
+   name: WiFi Alliance
+ - uuid: 0xFCCB
+   name: TOTO LTD.
+ - uuid: 0xFCCA
+   name: Cosmed s.r.l.
+ - uuid: 0xFCC9
+   name: SkyHawke Technologies
+ - uuid: 0xFCC8
+   name: "Allthenticate, Inc."
+ - uuid: 0xFCC7
+   name: PB INC.
+ - uuid: 0xFCC6
+   name: Wiliot LTD.
+ - uuid: 0xFCC5
+   name: "OMRON(DALIAN) CO,.LTD."
+ - uuid: 0xFCC4
+   name: "OMRON(DALIAN) CO,.LTD."
+ - uuid: 0xFCC3
+   name: HP Inc.
+ - uuid: 0xFCC2
+   name: "Qualcomm Technologies, Inc."
+ - uuid: 0xFCC1
+   name: TIMECODE SYSTEMS LIMITED
+ - uuid: 0xFCC0
+   name: Xiaomi Inc.
+ - uuid: 0xFCBF
+   name: ASSA ABLOY Opening Solutions Sweden AB
+ - uuid: 0xFCBE
+   name: "Musen Connect, Inc."
+ - uuid: 0xFCBD
+   name: Toshiba Corporation
+ - uuid: 0xFCBC
+   name: "Drowsy Digital, Inc."
+ - uuid: 0xFCBB
+   name: SharkNinja Operating LLC
+ - uuid: 0xFCBA
+   name: BlueID GmbH
+ - uuid: 0xFCB9
+   name: "Lumi United Technology Co., Ltd"
+ - uuid: 0xFCB8
+   name: "Ribbiot, INC."
+ - uuid: 0xFCB7
+   name: T-Mobile USA
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/MicroPython/BluetoothDialogs/data/sdo_uuids.yaml	Sun Jul 02 17:39:33 2023 +0200
@@ -0,0 +1,58 @@
+# This document, regardless of its title or content, is not a Bluetooth
+# Specification as defined in the Bluetooth Patent/Copyright License Agreement
+# (“PCLA”) and Bluetooth Trademark License Agreement. Use of this document by
+# members of Bluetooth SIG is governed by the membership and other related
+# agreements between Bluetooth SIG Inc. (“Bluetooth SIG”) and its members,
+# including the PCLA and other agreements posted on Bluetooth SIG’s website
+# located at www.bluetooth.com.
+# 
+# THIS DOCUMENT IS PROVIDED “AS IS” AND BLUETOOTH SIG, ITS MEMBERS, AND THEIR
+# AFFILIATES MAKE NO REPRESENTATIONS OR WARRANTIES AND DISCLAIM ALL WARRANTIES,
+# EXPRESS OR IMPLIED, INCLUDING ANY WARRANTY OF MERCHANTABILITY, TITLE,
+# NON-INFRINGEMENT, FITNESS FOR ANY PARTICULAR PURPOSE, THAT THE CONTENT OF THIS
+# DOCUMENT IS FREE OF ERRORS.
+# 
+# TO THE EXTENT NOT PROHIBITED BY LAW, BLUETOOTH SIG, ITS MEMBERS, AND THEIR
+# AFFILIATES DISCLAIM ALL LIABILITY ARISING OUT OF OR RELATING TO USE OF THIS
+# DOCUMENT AND ANY INFORMATION CONTAINED IN THIS DOCUMENT, INCLUDING LOST REVENUE,
+# PROFITS, DATA OR PROGRAMS, OR BUSINESS INTERRUPTION, OR FOR SPECIAL, INDIRECT,
+# CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF
+# THE THEORY OF LIABILITY, AND EVEN IF BLUETOOTH SIG, ITS MEMBERS, OR THEIR
+# AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+# 
+# This document is proprietary to Bluetooth SIG. This document may contain or
+# cover subject matter that is intellectual property of Bluetooth SIG and its
+# members. The furnishing of this document does not grant any license to any
+# intellectual property of Bluetooth SIG or its members.
+# 
+# This document is subject to change without notice.
+# 
+# Copyright © 2020–2023 by Bluetooth SIG, Inc. The Bluetooth word mark and logos
+# are owned by Bluetooth SIG, Inc. Other third-party brands and names are the
+# property of their respective owners.
+
+uuids:
+ - uuid: 0xFFFE
+   name: Wireless Power Transfer Service
+ - uuid: 0xFFFD
+   name: Universal Second Factor Authenticator Service
+ - uuid: 0xFFFC
+   name: Wireless Power Transfer (WPT) Service
+ - uuid: 0xFFFB
+   name: Direct Thread Commissioning
+ - uuid: 0xFFFA
+   name: ASTM Remote ID
+ - uuid: 0xFFF9
+   name: FIDO2 secure client-to-authenticator transport
+ - uuid: 0xFFF8
+   name: Mopria Alliance BLE Service
+ - uuid: 0xFFF7
+   name: ZigBee Alliance
+ - uuid: 0xFFF6
+   name: ZigBee Alliance
+ - uuid: 0xFFF5
+   name: "Car Connectivity Consortium, LLC"
+ - uuid: 0xFFF4
+   name: FiRa Consortium
+ - uuid: 0xFFF3
+   name: FiRa Consortium
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/MicroPython/BluetoothDialogs/data/service_uuids.yaml	Sun Jul 02 17:39:33 2023 +0200
@@ -0,0 +1,229 @@
+# This document, regardless of its title or content, is not a Bluetooth
+# Specification as defined in the Bluetooth Patent/Copyright License Agreement
+# (“PCLA”) and Bluetooth Trademark License Agreement. Use of this document by
+# members of Bluetooth SIG is governed by the membership and other related
+# agreements between Bluetooth SIG Inc. (“Bluetooth SIG”) and its members,
+# including the PCLA and other agreements posted on Bluetooth SIG’s website
+# located at www.bluetooth.com.
+# 
+# THIS DOCUMENT IS PROVIDED “AS IS” AND BLUETOOTH SIG, ITS MEMBERS, AND THEIR
+# AFFILIATES MAKE NO REPRESENTATIONS OR WARRANTIES AND DISCLAIM ALL WARRANTIES,
+# EXPRESS OR IMPLIED, INCLUDING ANY WARRANTY OF MERCHANTABILITY, TITLE,
+# NON-INFRINGEMENT, FITNESS FOR ANY PARTICULAR PURPOSE, THAT THE CONTENT OF THIS
+# DOCUMENT IS FREE OF ERRORS.
+# 
+# TO THE EXTENT NOT PROHIBITED BY LAW, BLUETOOTH SIG, ITS MEMBERS, AND THEIR
+# AFFILIATES DISCLAIM ALL LIABILITY ARISING OUT OF OR RELATING TO USE OF THIS
+# DOCUMENT AND ANY INFORMATION CONTAINED IN THIS DOCUMENT, INCLUDING LOST REVENUE,
+# PROFITS, DATA OR PROGRAMS, OR BUSINESS INTERRUPTION, OR FOR SPECIAL, INDIRECT,
+# CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF
+# THE THEORY OF LIABILITY, AND EVEN IF BLUETOOTH SIG, ITS MEMBERS, OR THEIR
+# AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+# 
+# This document is proprietary to Bluetooth SIG. This document may contain or
+# cover subject matter that is intellectual property of Bluetooth SIG and its
+# members. The furnishing of this document does not grant any license to any
+# intellectual property of Bluetooth SIG or its members.
+# 
+# This document is subject to change without notice.
+# 
+# Copyright © 2020–2023 by Bluetooth SIG, Inc. The Bluetooth word mark and logos
+# are owned by Bluetooth SIG, Inc. Other third-party brands and names are the
+# property of their respective owners.
+
+uuids:
+ - uuid: 0x1800
+   name: Generic Access
+   id: org.bluetooth.service.generic_access
+ - uuid: 0x1801
+   name: Generic Attribute
+   id: org.bluetooth.service.generic_attribute
+ - uuid: 0x1802
+   name: Immediate Alert
+   id: org.bluetooth.service.immediate_alert
+ - uuid: 0x1803
+   name: Link Loss
+   id: org.bluetooth.service.link_loss
+ - uuid: 0x1804
+   name: Tx Power
+   id: org.bluetooth.service.tx_power
+ - uuid: 0x1805
+   name: Current Time
+   id: org.bluetooth.service.current_time
+ - uuid: 0x1806
+   name: Reference Time Update
+   id: org.bluetooth.service.reference_time_update
+ - uuid: 0x1807
+   name: Next DST Change
+   id: org.bluetooth.service.next_dst_change
+ - uuid: 0x1808
+   name: Glucose
+   id: org.bluetooth.service.glucose
+ - uuid: 0x1809
+   name: Health Thermometer
+   id: org.bluetooth.service.health_thermometer
+ - uuid: 0x180A
+   name: Device Information
+   id: org.bluetooth.service.device_information
+ - uuid: 0x180D
+   name: Heart Rate
+   id: org.bluetooth.service.heart_rate
+ - uuid: 0x180E
+   name: Phone Alert Status
+   id: org.bluetooth.service.phone_alert_status
+ - uuid: 0x180F
+   name: Battery
+   id: org.bluetooth.service.battery_service
+ - uuid: 0x1810
+   name: Blood Pressure
+   id: org.bluetooth.service.blood_pressure
+ - uuid: 0x1811
+   name: Alert Notification
+   id: org.bluetooth.service.alert_notification
+ - uuid: 0x1812
+   name: Human Interface Device
+   id: org.bluetooth.service.human_interface_device
+ - uuid: 0x1813
+   name: Scan Parameters
+   id: org.bluetooth.service.scan_parameters
+ - uuid: 0x1814
+   name: Running Speed and Cadence
+   id: org.bluetooth.service.running_speed_and_cadence
+ - uuid: 0x1815
+   name: Automation IO
+   id: org.bluetooth.service.automation_io
+ - uuid: 0x1816
+   name: Cycling Speed and Cadence
+   id: org.bluetooth.service.cycling_speed_and_cadence
+ - uuid: 0x1818
+   name: Cycling Power
+   id: org.bluetooth.service.cycling_power
+ - uuid: 0x1819
+   name: Location and Navigation
+   id: org.bluetooth.service.location_and_navigation
+ - uuid: 0x181A
+   name: Environmental Sensing
+   id: org.bluetooth.service.environmental_sensing
+ - uuid: 0x181B
+   name: Body Composition
+   id: org.bluetooth.service.body_composition
+ - uuid: 0x181C
+   name: User Data
+   id: org.bluetooth.service.user_data
+ - uuid: 0x181D
+   name: Weight Scale
+   id: org.bluetooth.service.weight_scale
+ - uuid: 0x181E
+   name: Bond Management
+   id: org.bluetooth.service.bond_management
+ - uuid: 0x181F
+   name: Continuous Glucose Monitoring
+   id: org.bluetooth.service.continuous_glucose_monitoring
+ - uuid: 0x1820
+   name: Internet Protocol Support
+   id: org.bluetooth.service.internet_protocol_support
+ - uuid: 0x1821
+   name: Indoor Positioning
+   id: org.bluetooth.service.indoor_positioning
+ - uuid: 0x1822
+   name: Pulse Oximeter
+   id: org.bluetooth.service.pulse_oximeter
+ - uuid: 0x1823
+   name: HTTP Proxy
+   id: org.bluetooth.service.http_proxy
+ - uuid: 0x1824
+   name: Transport Discovery
+   id: org.bluetooth.service.transport_discovery
+ - uuid: 0x1825
+   name: Object Transfer
+   id: org.bluetooth.service.object_transfer
+ - uuid: 0x1826
+   name: Fitness Machine
+   id: org.bluetooth.service.fitness_machine
+ - uuid: 0x1827
+   name: Mesh Provisioning
+   id: org.bluetooth.service.mesh_provisioning
+ - uuid: 0x1828
+   name: Mesh Proxy
+   id: org.bluetooth.service.mesh_proxy
+ - uuid: 0x1829
+   name: Reconnection Configuration
+   id: org.bluetooth.service.reconnection_configuration
+ - uuid: 0x183A
+   name: Insulin Delivery
+   id: org.bluetooth.service.insulin_delivery
+ - uuid: 0x183B
+   name: Binary Sensor
+   id: org.bluetooth.service.binary_sensor
+ - uuid: 0x183C
+   name: Emergency Configuration
+   id: org.bluetooth.service.emergency_configuration
+ - uuid: 0x183D
+   name: Authorization Control
+   id: org.bluetooth.service.authorization_control
+ - uuid: 0x183E
+   name: Physical Activity Monitor
+   id: org.bluetooth.service.physical_activity_monitor
+ - uuid: 0x1843
+   name: Audio Input Control
+   id: org.bluetooth.service.audio_input_control
+ - uuid: 0x1844
+   name: Volume Control
+   id: org.bluetooth.service.volume_control
+ - uuid: 0x1845
+   name: Volume Offset Control
+   id: org.bluetooth.service.volume_offset
+ - uuid: 0x1846
+   name: Coordinated Set Identification
+   id: org.bluetooth.service.coordinated_set_identification
+ - uuid: 0x1847
+   name: Device Time
+   id: org.bluetooth.service.device_time
+ - uuid: 0x1848
+   name: Media Control
+   id: org.bluetooth.service.media_control
+ - uuid: 0x1849
+   name: Generic Media Control
+   id: org.bluetooth.service.generic_media_control
+ - uuid: 0x184A
+   name: Constant Tone Extension
+   id: org.bluetooth.service.constant_tone_extension
+ - uuid: 0x184B
+   name: Telephone Bearer
+   id: org.bluetooth.service.telephone_bearer
+ - uuid: 0x184C
+   name: Generic Telephone Bearer
+   id: org.bluetooth.service.generic_telephone_bearer
+ - uuid: 0x184D
+   name: Microphone Control
+   id: org.bluetooth.service.microphone_control
+ - uuid: 0x184E
+   name: Audio Stream Control
+   id: org.bluetooth.service.audio_stream_control
+ - uuid: 0x184F
+   name: Broadcast Audio Scan
+   id: org.bluetooth.service.broadcast_audio_scan
+ - uuid: 0x1850
+   name: Published Audio Capabilities
+   id: org.bluetooth.service.published_audio_capabilities
+ - uuid: 0x1851
+   name: Basic Audio Announcement
+   id: org.bluetooth.service.basic_audio_announcement
+ - uuid: 0x1852
+   name: Broadcast Audio Announcement
+   id: org.bluetooth.service.broadcast_audio_announcement
+ - uuid: 0x1853
+   name: Common Audio
+   id: org.bluetooth.service.common_audio
+ - uuid: 0x1854
+   name: Hearing Access
+   id: org.bluetooth.service.hearing_access
+ - uuid: 0x1855
+   name: Telephony and Media Audio
+   id: org.bluetooth.service.telephony_and_media_audio
+ - uuid: 0x1856
+   name: Public Broadcast Announcement
+   id: org.bluetooth.service.public_broadcast_announcement
+ - uuid: 0x1857
+   name: Electronic Shelf Label
+   id: org.bluetooth.service.electronic_shelf_label
--- a/src/eric7/MicroPython/Devices/DeviceBase.py	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/MicroPython/Devices/DeviceBase.py	Sun Jul 02 17:39:33 2023 +0200
@@ -848,9 +848,9 @@
         if not deviceFileName:
             raise OSError("Missing device file name")
 
-        # convert eol '\r'
-        content = content.replace(b"\r\n", b"\r")
-        content = content.replace(b"\n", b"\r")
+        # convert eol to '\n'
+        content = content.replace(b"\r\n", b"\n")
+        content = content.replace(b"\r", b"\n")
 
         commands = [
             "fd = open('{0}', 'wb')".format(deviceFileName),
@@ -1345,7 +1345,7 @@
                     now.tm_year,
                     now.tm_mon,
                     now.tm_mday,
-                    now.tm_wday + 1,
+                    now.tm_wday,
                     now.tm_hour,
                     now.tm_min,
                     now.tm_sec,
--- a/src/eric7/MicroPython/Devices/RP2040Devices.py	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/MicroPython/Devices/RP2040Devices.py	Sun Jul 02 17:39:33 2023 +0200
@@ -1266,6 +1266,220 @@
         return out.decode("utf-8").strip() == "True", ""
 
     ##################################################################
+    ## Methods below implement Bluetooth related methods
+    ##################################################################
+
+    def hasBluetooth(self):
+        """
+        Public method to check the availability of Bluetooth.
+
+        @return flag indicating the availability of Bluetooth
+        @rtype bool
+        @exception OSError raised to indicate an issue with the device
+        """
+        command = """
+def has_bt():
+    try:
+        import bluetooth
+        if hasattr(bluetooth, 'BLE'):
+            return True
+    except ImportError:
+        pass
+
+    return False
+
+print(has_bt())
+del has_bt
+"""
+        out, err = self.executeCommands(command, mode=self._submitMode, timeout=10000)
+        if err:
+            raise OSError(self._shortError(err))
+        return out.strip() == b"True"
+
+    def getBluetoothStatus(self):
+        """
+        Public method to get Bluetooth status data of the connected board.
+
+        @return list of tuples containing the translated status data label and
+            the associated value
+        @rtype list of tuples of (str, str)
+        @exception OSError raised to indicate an issue with the device
+        """
+        command = """
+def ble_status():
+    import bluetooth
+    import ubinascii
+    import ujson
+
+    ble = bluetooth.BLE()
+
+    ble_active = ble.active()
+    if not ble_active:
+        ble.active(True)
+
+    res = {
+        'active': ble_active,
+        'mac': ubinascii.hexlify(ble.config('mac')[1], ':').decode(),
+        'addr_type': ble.config('mac')[0],
+        'name': ble.config('gap_name'),
+        'mtu': ble.config('mtu'),
+    }
+
+    if not ble_active:
+        ble.active(False)
+
+    print(ujson.dumps(res))
+
+ble_status()
+del ble_status
+"""
+        out, err = self.executeCommands(command, mode=self._submitMode)
+        if err:
+            raise OSError(self._shortError(err))
+
+        status = []
+        bleStatus = json.loads(out.decode("utf-8"))
+        status.append((self.tr("Active"), self.bool2str(bleStatus["active"])))
+        status.append((self.tr("Name"), bleStatus["name"]))
+        status.append((self.tr("MAC-Address"), bleStatus["mac"]))
+        status.append(
+            (
+                self.tr("Address Type"),
+                self.tr("Public") if bleStatus == 0 else self.tr("Random"),
+            )
+        )
+        status.append((self.tr("MTU"), self.tr("{0} Bytes").format(bleStatus["mtu"])))
+
+        return status
+
+    def activateBluetoothInterface(self):
+        """
+        Public method to activate the Bluetooth interface.
+
+        @return flag indicating the new state of the Bluetooth interface
+        @rtype bool
+        @exception OSError raised to indicate an issue with the device
+        """
+        command = """
+def activate_ble():
+    import bluetooth
+
+    ble = bluetooth.BLE()
+    if not ble.active():
+        ble.active(True)
+    print(ble.active())
+
+activate_ble()
+del activate_ble
+"""
+        out, err = self.executeCommands(command, mode=self._submitMode)
+        if err:
+            raise OSError(self._shortError(err))
+
+        return out.strip() == b"True"
+
+    def deactivateBluetoothInterface(self):
+        """
+        Public method to deactivate the Bluetooth interface.
+
+        @return flag indicating the new state of the Bluetooth interface
+        @rtype bool
+        @exception OSError raised to indicate an issue with the device
+        """
+        command = """
+def deactivate_ble():
+    import bluetooth
+
+    ble = bluetooth.BLE()
+    if ble.active():
+        ble.active(False)
+    print(ble.active())
+
+deactivate_ble()
+del deactivate_ble
+"""
+        out, err = self.executeCommands(command, mode=self._submitMode)
+        if err:
+            raise OSError(self._shortError(err))
+
+        return out.strip() == b"True"
+
+    def getDeviceScan(self, timeout=10):
+        """
+        Public method to perform a Bluetooth device scan.
+
+        @param timeout duration of the device scan in seconds (defaults
+            to 10)
+        @type int (optional)
+        @return tuple containing a dictionary with the scan results and
+            an error string
+        @rtype tuple of (dict, str)
+        """
+        from ..BluetoothDialogs.BluetoothAdvertisement import BluetoothAdvertisement
+
+        command = """
+_scan_done = False
+
+def ble_scan():
+    import bluetooth
+    import time
+    import ubinascii
+
+    IRQ_SCAN_RESULT = 5
+    IRQ_SCAN_DONE = 6
+
+    def _bleIrq(event, data):
+        global _scan_done
+        if event == IRQ_SCAN_RESULT:
+            addr_type, addr, adv_type, rssi, adv_data = data
+            if addr:
+                print({{
+                    'address': ubinascii.hexlify(addr,':').decode('utf-8'),
+                    'rssi': rssi,
+                    'adv_type': adv_type,
+                    'advertisement': bytes(adv_data),
+                }})
+        elif event == IRQ_SCAN_DONE:
+            _scan_done = True
+
+    ble = bluetooth.BLE()
+
+    ble_active = ble.active()
+    if not ble_active:
+        ble.active(True)
+
+    ble.irq(_bleIrq)
+    ble.gap_scan({0} * 1000, 1000000, 50000, True)
+    while not _scan_done:
+        time.sleep(0.2)
+
+    if not ble_active:
+        ble.active(False)
+
+ble_scan()
+del ble_scan, _scan_done
+""".format(
+            timeout
+        )
+        out, err = self.executeCommands(
+            command, mode=self._submitMode, timeout=(timeout + 5) * 1000
+        )
+        if err:
+            return {}, err
+
+        scanResults = {}
+        for line in out.decode("utf-8").splitlines():
+            res = ast.literal_eval(line)
+            address = res["address"]
+            if address not in scanResults:
+                scanResults[address] = BluetoothAdvertisement(address)
+            scanResults[address].update(
+                res["adv_type"], res["rssi"], res["advertisement"]
+            )
+
+        return scanResults, ""
+
+    ##################################################################
     ## Methods below implement Ethernet related methods
     ##################################################################
 
--- a/src/eric7/PipInterface/Pip.py	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/PipInterface/Pip.py	Sun Jul 02 17:39:33 2023 +0200
@@ -189,9 +189,13 @@
         @return string for the project environment
         @rtype str
         """
-        if ericApp().getObject("Project").isOpen():
-            return self.tr("<project>")
-        else:
+        try:
+            project = ericApp().getObject("Project")
+            if project.isOpen():
+                return self.tr("<project>")
+            else:
+                return ""
+        except KeyError:
             return ""
 
     def getVirtualenvInterpreter(self, venvName):
--- a/src/eric7/PipInterface/PipPackagesWidget.py	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/PipInterface/PipPackagesWidget.py	Sun Jul 02 17:39:33 2023 +0200
@@ -12,7 +12,7 @@
 import os
 import textwrap
 
-from packaging.specifiers import SpecifierSet
+from packaging.specifiers import InvalidSpecifier, SpecifierSet
 from PyQt6.QtCore import Qt, QUrl, QUrlQuery, pyqtSlot
 from PyQt6.QtGui import QIcon
 from PyQt6.QtNetwork import QNetworkReply, QNetworkRequest
@@ -177,8 +177,8 @@
 
         @param pip reference to the global pip interface
         @type Pip
-        @param parent reference to the parent widget
-        @type QWidget
+        @param parent reference to the parent widget (defaults to None)
+        @type QWidget (optional)
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -246,9 +246,10 @@
         venvManager.virtualEnvironmentRemoved.connect(self.on_refreshButton_clicked)
         self.__selectedEnvironment = None
 
-        project = ericApp().getObject("Project")
-        project.projectOpened.connect(self.__projectOpened)
-        project.projectClosed.connect(self.__projectClosed)
+        with contextlib.suppress(KeyError):
+            project = ericApp().getObject("Project")
+            project.projectOpened.connect(self.__projectOpened)
+            project.projectClosed.connect(self.__projectClosed)
 
         self.__initPipMenu()
         self.__populateEnvironments()
@@ -1554,7 +1555,28 @@
         """
         Private slot to open the configuration page.
         """
-        ericApp().getObject("UserInterface").showPreferences("pipPage")
+        try:
+            ericApp().getObject("UserInterface").showPreferences("pipPage")
+        except KeyError:
+            # we were called from outside the eric IDE
+            from eric7.Preferences.ConfigurationDialog import (  # noqa: I101
+                ConfigurationDialog,
+                ConfigurationMode,
+            )
+
+            dlg = ConfigurationDialog(
+                None,
+                "Configuration",
+                True,
+                fromEric=False,
+                displayMode=ConfigurationMode.PIPMANAGERMODE,
+            )
+            dlg.show()
+            dlg.showConfigurationPageByName("pipPage")
+            dlg.exec()
+            if dlg.result() == QDialog.DialogCode.Accepted:
+                dlg.setPreferences()
+                Preferences.syncPreferences()
 
     @pyqtSlot()
     def __showCacheInfo(self):
@@ -1848,11 +1870,17 @@
                 if dependency["required_version"][0] in "0123456789"
                 else dependency["required_version"]
             )
-            specifierSet = SpecifierSet(specifiers=spec)
-            if not specifierSet.contains(dependency["installed_version"]):
-                itm.setIcon(
+            try:
+                specifierSet = SpecifierSet(specifiers=spec)
+                if not specifierSet.contains(dependency["installed_version"]):
+                    itm.setIcon(
+                        PipPackagesWidget.DepRequiredVersionColumn,
+                        EricPixmapCache.getIcon("warning"),
+                    )
+            except InvalidSpecifier:
+                itm.setText(
                     PipPackagesWidget.DepRequiredVersionColumn,
-                    EricPixmapCache.getIcon("warning"),
+                    dependency["required_version"],
                 )
 
         elif dependency["required_version"].lower() == "any":
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/PipInterface/PipPackagesWindow.py	Sun Jul 02 17:39:33 2023 +0200
@@ -0,0 +1,59 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2023 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing the standalone pip packages management window.
+"""
+
+from PyQt6.QtCore import Qt
+from PyQt6.QtWidgets import QDialogButtonBox, QVBoxLayout, QWidget
+
+from eric7.EricWidgets.EricApplication import ericApp
+from eric7.EricWidgets.EricMainWindow import EricMainWindow
+from eric7.PipInterface.Pip import Pip
+from eric7.PipInterface.PipPackagesWidget import PipPackagesWidget
+from eric7.VirtualEnv.VirtualenvManager import VirtualenvManager
+
+
+class PipPackagesWindow(EricMainWindow):
+    """
+    Main window class for the standalone  pip packages manager.
+    """
+
+    def __init__(self, parent=None):
+        """
+        Constructor
+
+        @param parent reference to the parent widget
+        @type QWidget
+        """
+        super().__init__(parent)
+
+        self.__pip = Pip(self)
+        ericApp().registerObject("Pip", self.__pip)
+
+        self.__venvManager = VirtualenvManager(self)
+        ericApp().registerObject("VirtualEnvManager", self.__venvManager)
+
+        self.__centralWidget = QWidget(self)
+        self.__layout = QVBoxLayout(self.__centralWidget)
+        self.__centralWidget.setLayout(self.__layout)
+
+        self.__pipPackagesWidget = PipPackagesWidget(
+            self.__pip, parent=self.__centralWidget
+        )
+        self.__layout.addWidget(self.__pipPackagesWidget)
+
+        self.__buttonBox = QDialogButtonBox(
+            QDialogButtonBox.StandardButton.Close, Qt.Orientation.Horizontal, self
+        )
+        self.__layout.addWidget(self.__buttonBox)
+
+        self.setCentralWidget(self.__centralWidget)
+        self.resize(700, 900)
+        self.setWindowTitle(self.tr("Manage Packages"))
+
+        self.__buttonBox.accepted.connect(self.close)
+        self.__buttonBox.rejected.connect(self.close)
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsChecker.py	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsChecker.py	Sun Jul 02 17:39:33 2023 +0200
@@ -53,6 +53,10 @@
         ## Annotation Complexity
         "A891",
         "A892",
+        ## use of typing.Union (PEP 604)
+        "A901",
+        ## deprecated 'typing' symbols (PEP 585)
+        "A911",
     ]
 
     def __init__(self, source, filename, tree, select, ignore, expected, repeat, args):
@@ -113,6 +117,8 @@
             (self.__checkAnnotationsFuture, ("A871", "A872", "A873")),
             (self.__checkAnnotationsCoverage, ("A881",)),
             (self.__checkAnnotationComplexity, ("A891", "A892")),
+            (self.__checkAnnotationPep604, ("A901",)),
+            (self.__checkDeprecatedTypingSymbols, ("A911",)),
         ]
 
         self.__checkers = []
@@ -615,7 +621,7 @@
         return annotationLength
 
     #######################################################################
-    ## 'from __future__ import annotations' checck
+    ## 'from __future__ import annotations' check
     ##
     ## adapted from: flake8-future-annotations v1.1.0
     #######################################################################
@@ -626,6 +632,10 @@
         """
         from .AnnotationsFutureVisitor import AnnotationsFutureVisitor
 
+        if sys.version_info >= (3, 9):
+            # the __future__ typing import is only needed before Python 3.9
+            return
+
         forceFutureAnnotations = self.__args.get(
             "ForceFutureAnnotations",
             AnnotationsCheckerDefaultArgs["ForceFutureAnnotations"],
@@ -650,3 +660,60 @@
         if checkFutureAnnotations and visitor.hasSimplifiedTypes():
             simplifiedTypes = ", ".join(sorted(visitor.getSimplifiedTypes()))
             self.__error(0, 0, "A873", simplifiedTypes)
+
+    #######################################################################
+    ## check use of 'typing.Union' (see PEP 604)
+    ##
+    ## adapted from: flake8-pep604 v1.1.0
+    #######################################################################
+
+    def __checkAnnotationPep604(self):
+        """
+        Private method to check the use of typing.Union.
+        """
+        from .AnnotationsUnionVisitor import AnnotationsUnionVisitor
+
+        if sys.version_info < (3, 10):
+            # the union operator was introduced with Python 3.10
+            return
+
+        visitor = AnnotationsUnionVisitor()
+        visitor.visit(self.__tree)
+
+        for node in visitor.getIssues():
+            self.__error(node.lineno - 1, node.col_offset, "A901")
+
+    #######################################################################
+    ## check use of 'typing.Union' (see PEP 604)
+    ##
+    ## adapted from: flake8-pep585 v0.1.7
+    #######################################################################
+
+    def __checkDeprecatedTypingSymbols(self):
+        """
+        Private method to check the use of deprecated 'typing' symbols.
+        """
+        from .AnnotationsDeprecationsVisitor import (
+            AnnotationsDeprecationsVisitor,
+            AnnotationsFutureImportVisitor,
+        )
+
+        if sys.version_info < (3, 7):  # play it safe
+            return
+        elif sys.version_info < (3, 9):
+            # py 3.8: only if activated via __future__ import
+            visitor = AnnotationsFutureImportVisitor()
+            visitor.visit(self.__tree)
+            if not visitor.futureImportPresent():
+                return
+
+        visitor = AnnotationsDeprecationsVisitor(
+            self.__args.get(
+                "ExemptedTypingSymbols",
+                AnnotationsCheckerDefaultArgs["ExemptedTypingSymbols"],
+            )
+        )
+        visitor.visit(self.__tree)
+
+        for node, (name, replacement) in visitor.getIssues():
+            self.__error(node.lineno - 1, node.col_offset, "A911", name, replacement)
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsCheckerDefaults.py	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsCheckerDefaults.py	Sun Jul 02 17:39:33 2023 +0200
@@ -25,4 +25,6 @@
     # Annotations Future
     "ForceFutureAnnotations": False,
     "CheckFutureAnnotations": False,
+    # deprecated 'typing' symbols
+    "ExemptedTypingSymbols": [],
 }
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsDeprecationsVisitor.py	Sun Jul 02 17:39:33 2023 +0200
@@ -0,0 +1,203 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2023 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a node visitor for checking the use of deprecated 'typing' symbols.
+"""
+
+#
+# The visitors are adapted and extended variants of the ones found in
+# flake8-pep585 v0.1.7
+#
+
+import ast
+
+
+class AnnotationsDeprecationsVisitor(ast.NodeVisitor):
+    """
+    Class implementing a node visitor for checking the use of deprecated 'typing'
+    symbols.
+    """
+
+    NameReplacements = {
+        "Tuple": "tuple",
+        "List": "list",
+        "Dict": "dict",
+        "Set": "set",
+        "FrozenSet": "frozenset",
+        "Type": "type",
+        "Deque": "collections.deque",
+        "DefaultDict": "collections.defaultdict",
+        "OrderedDict": "collections.OrderedDict",
+        "Counter": "collections.Counter",
+        "ChainMap": "collections.ChainMap",
+        "Awaitable": "collections.abc.Awaitable",
+        "Coroutine": "collections.abc.Coroutine",
+        "AsyncIterable": "collections.abc.AsyncIterable",
+        "AsyncIterator": "collections.abc.AsyncIterator",
+        "AsyncGenerator": "collections.abc.AsyncGenerator",
+        "Iterable": "collections.abc.Iterable",
+        "Iterator": "collections.abc.Iterator",
+        "Generator": "collections.abc.Generator",
+        "Reversible": "collections.abc.Reversible",
+        "Container": "collections.abc.Container",
+        "Collection": "collections.abc.Collection",
+        "Callable": "collections.abc.Callable",
+        "AbstractSet": "collections.abc.Set",
+        "MutableSet": "collections.abc.MutableSet",
+        "Mapping": "collections.abc.Mapping",
+        "MutableMapping": "collections.abc.MutableMapping",
+        "Sequence": "collections.abc.Sequence",
+        "MutableSequence": "collections.abc.MutableSequence",
+        "ByteString": "collections.abc.ByteString",
+        "MappingView": "collections.abc.MappingView",
+        "KeysView": "collections.abc.KeysView",
+        "ItemsView": "collections.abc.ItemsView",
+        "ValuesView": "collections.abc.ValuesView",
+        "ContextManager": "contextlib.AbstractContextManager",
+        "AsyncContextManager": "contextlib.AbstractAsyncContextManager",
+        "Pattern": "re.Pattern",
+        "Match": "re.Match",
+    }
+
+    def __init__(self, exemptedList):
+        """
+        Constructor
+
+        @param exemptedList list of typing symbols exempted from checking
+        @type list of str
+        """
+        self.__exemptedList = exemptedList[:]
+        self.__typingAliases = set()
+
+        self.__issues = []
+
+    def getIssues(self):
+        """
+        Public method to get the list of detected issues.
+
+        @return list of detected issues consisting of a tuple of a reference to the node
+            and a tuple containing the used name and the suggested replacement
+        @rtype list of tuples of (ast.AST, (str, str))
+        """
+        return self.__issues
+
+    def __checkDeprecation(self, node, name):
+        """
+        Private method to check, if the given name is deprecated.
+
+        @param node reference to the node
+        @type ast.ImportFrom, ast.Attribute
+        @param name name to be checked
+        @type str
+        """
+        if name not in self.__exemptedList:
+            replacement = self.NameReplacements.get(name)
+            if replacement is not None:
+                self.__issues.append((node, (name, replacement)))
+
+    def visit_ImportFrom(self, node):
+        """
+        Public method to handle an ast.ImportFrom node.
+
+        @param node reference to the node to be handled
+        @type ast.ImportFrom
+        """
+        if node.module == "typing":
+            for alias in node.names:
+                self.__checkDeprecation(node, alias.name)
+
+    def visit_Import(self, node):
+        """
+        Public method to handle an ast.Import node.
+
+        @param node reference to the node to be handled
+        @type ast.Import
+        """
+        for alias in node.names:
+            if alias.name == "typing":
+                self.__typingAliases.add(alias.asname or "typing")
+
+    def visit_Attribute(self, node):
+        """
+        Public method to handle an ast.Attribute node.
+
+        @param node reference to the node to be handled
+        @type ast.Attribute
+        """
+        if (
+            isinstance(node.value, ast.Name)
+            and node.value.id in self.__typingAliases
+            and node.attr not in self.__exemptedList
+        ):
+            self.__checkDeprecation(node, node.attr)
+
+    def visit_AnnAssign(self, node):
+        """
+        Public method to handle an ast.AnnAssign node.
+
+        @param node reference to the node to be handled
+        @type ast.AnnAssign
+        """
+        if isinstance(node.annotation, ast.Name):
+            self.__checkDeprecation(node, node.annotation.id)
+        elif isinstance(node.annotation, ast.Subscript) and isinstance(
+            node.annotation.value, ast.Name
+        ):
+            self.__checkDeprecation(node, node.annotation.value.id)
+
+    def visit_FunctionDef(self, node):
+        """
+        Public method to handle an ast.FunctionDef or ast.AsyncFunctionDef node.
+
+        @param node reference to the node to be handled
+        @type ast.FunctionDef or ast.AsyncFunctionDef
+        """
+        for arg in node.args.args + node.args.posonlyargs + node.args.kwonlyargs:
+            if isinstance(arg.annotation, ast.Name):
+                self.__checkDeprecation(arg, arg.annotation.id)
+            elif isinstance(arg.annotation, ast.Subscript) and isinstance(
+                arg.annotation.value, ast.Name
+            ):
+                self.__checkDeprecation(arg, arg.annotation.value.id)
+
+    visit_AsyncFunctionDef = visit_FunctionDef
+
+
+class AnnotationsFutureImportVisitor(ast.NodeVisitor):
+    """
+    Class implementing a node visitor to dtermine, if the annotations __future__
+    import is present.
+
+    This class is used to determine usage of annotations for Python 3.8.
+    """
+
+    def __init__(self):
+        """
+        Constructor
+        """
+        self.__futureImport = False
+
+    def futureImportPresent(self):
+        """
+        Public method to check, if a 'from __future__ import annotations' statement
+        exists.
+
+        @return flag indicating the existence of the import statement
+        @rtype bool
+        """
+        return self.__futureImport
+
+    def visit_ImportFrom(self, node):
+        """
+        Public method to handle an ast.ImportFrom node.
+
+        @param node reference to the node to be handled
+        @type ast.ImportFrom
+        """
+        if node.module == "__future__" and "annotations" in {
+            alias.name for alias in node.names
+        }:
+            self.__futureImport = True
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsUnionVisitor.py	Sun Jul 02 17:39:33 2023 +0200
@@ -0,0 +1,105 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2023 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a node visitor for checking the import of typing.Union.
+"""
+
+#
+# The visitor is adapted from flake8-pep604 v1.1.0
+#
+
+import ast
+
+
+class AnnotationsUnionVisitor(ast.NodeVisitor):
+    """
+    Class implementing a node visitor for checking the import of typing.Union.
+    """
+
+    ModuleName = "typing"
+    AttributeName = "Union"
+    FullName = "typing.Union"
+
+    def __init__(self):
+        """
+        Constructor
+        """
+        self.__unionImports = []
+        self.__aliasedUnionImports = set()
+
+    def visit_Import(self, node):
+        """
+        Public method to handle an ast.Import node.
+
+        @param node reference to the node to be handled
+        @type ast.Import
+        """
+        for name in node.names:
+            if name.name == self.FullName:
+                self.__unionImports.append(node)
+            elif name.name == self.ModuleName and name.asname:
+                self.__aliasedUnionImports.add(name.asname)
+
+        self.generic_visit(node)
+
+    def visit_ImportFrom(self, node):
+        """
+        Public method to handle an ast.ImportFrom node.
+
+        @param node reference to the node to be handled
+        @type ast.ImportFrom
+        """
+        if node.module == self.ModuleName:
+            for name in node.names:
+                if name.name == self.AttributeName:
+                    self.__unionImports.append(node)
+                    if name.asname:
+                        self.__aliasedUnionImports.add(name.asname)
+
+        self.generic_visit(node)
+
+    def visit_Attribute(self, node):
+        """
+        Public method to handle an ast.Attribute node.
+
+        @param node reference to the node to be handled
+        @type ast.Attribute
+        """
+        if (
+            isinstance(node.value, ast.Name)
+            and (
+                node.value.id in self.__aliasedUnionImports
+                or node.value.id == self.ModuleName
+            )
+            and node.attr == self.AttributeName
+        ):
+            self.__unionImports.append(node)
+
+        self.generic_visit(node)
+
+    def visit_Subscript(self, node):
+        """
+        Public method to handle an ast.Subscript node.
+
+        @param node reference to the node to be handled
+        @type ast.Subscript
+        """
+        if isinstance(node.value, ast.Name) and (
+            node.value.id in self.__aliasedUnionImports
+            or node.value.id == self.AttributeName
+        ):
+            self.__unionImports.append(node)
+
+        self.generic_visit(node)
+
+    def getIssues(self):
+        """
+        Public method to get the collected Union nodes.
+
+        @return list of collected nodes
+        @rtype list of ast.AST
+        """
+        return self.__unionImports
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py	Sun Jul 02 17:39:33 2023 +0200
@@ -73,6 +73,14 @@
     "A892": QCoreApplication.translate(
         "AnnotationsChecker", "type annotation is too long ({0} > {1})"
     ),
+    "A901": QCoreApplication.translate(
+        "AnnotationsChecker",
+        "'typing.Union' is deprecated, use '|' instead (see PEP 604)",
+    ),
+    "A911": QCoreApplication.translate(
+        "AnnotationsChecker",
+        "'typing.{0}' is deprecated, use '{1}' instead (see PEP 585)",
+    ),
 }
 
 _annotationsMessagesSampleArgs = {
@@ -84,4 +92,5 @@
     "A881": [60],
     "A891": [5, 3],
     "A892": [10, 7],
+    "A911": ["List", "list"],
 }
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py	Sun Jul 02 17:39:33 2023 +0200
@@ -602,6 +602,11 @@
                 self.__data["AnnotationsChecker"][
                     "CheckFutureAnnotations"
                 ] = defaultParameters["AnnotationsChecker"]["CheckFutureAnnotations"]
+            if "ExemptedTypingSymbols" not in self.__data["AnnotationsChecker"]:
+                # fourth extension
+                self.__data["AnnotationsChecker"][
+                    "ExemptedTypingSymbols"
+                ] = defaultParameters["AnnotationsChecker"]["ExemptedTypingSymbols"]
 
         self.__initCategoriesList(self.__data["EnabledCheckerCategories"])
         self.excludeFilesEdit.setText(self.__data["ExcludeFiles"])
@@ -675,6 +680,9 @@
         self.overloadDecoratorEdit.setText(
             ", ".join(self.__data["AnnotationsChecker"]["OverloadDecorators"])
         )
+        self.exemptedTypingSymbolsEdit.setText(
+            ", ".join(self.__data["AnnotationsChecker"]["ExemptedTypingSymbols"])
+        )
 
         # security
         self.tmpDirectoriesEdit.setPlainText(
@@ -921,6 +929,9 @@
                 "OverloadDecorators": [
                     d.strip() for d in self.overloadDecoratorEdit.text().split(",")
                 ],
+                "ExemptedTypingSymbols": [
+                    d.strip() for d in self.exemptedTypingSymbolsEdit.text().split(",")
+                ],
             }
 
             securityArgs = {
@@ -1388,6 +1399,10 @@
                     "OverloadDecorators": [
                         d.strip() for d in self.overloadDecoratorEdit.text().split(",")
                     ],
+                    "ExemptedTypingSymbols": [
+                        d.strip()
+                        for d in self.exemptedTypingSymbolsEdit.text().split(",")
+                    ],
                 },
                 "SecurityChecker": {
                     "HardcodedTmpDirectories": [
@@ -1872,6 +1887,18 @@
                 )
             )
         )
+        self.exemptedTypingSymbolsEdit.setText(
+            ", ".join(
+                Preferences.toList(
+                    settings.value(
+                        "PEP8/ExemptedTypingSymbols",
+                        defaultParameters["AnnotationsChecker"][
+                            "ExemptedTypingSymbols"
+                        ],
+                    )
+                )
+            )
+        )
 
         # Security Checker
         self.tmpDirectoriesEdit.setPlainText(
@@ -2210,6 +2237,10 @@
             "PEP8/OverloadDecorators",
             [d.strip() for d in self.overloadDecoratorEdit.text().split(",")],
         )
+        settings.setValue(
+            "PEP8/ExemptedTypingSymbols",
+            [d.strip() for d in self.exemptedTypingSymbolsEdit.text().split(",")],
+        )
 
         # Security Checker
         settings.setValue(
@@ -2420,6 +2451,10 @@
             "PEP8/OverloadDecorators",
             defaultParameters["AnnotationsChecker"]["OverloadDecorators"],
         )
+        settings.setValue(
+            "PEP8/ExemptedTypingSymbols",
+            defaultParameters["AnnotationsChecker"]["ExemptedTypingSymbols"],
+        )
 
         # Security Checker
         settings.setValue(
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui	Sun Jul 02 17:39:33 2023 +0200
@@ -20,7 +20,7 @@
    <item>
     <widget class="QTabWidget" name="mainWidget">
      <property name="currentIndex">
-      <number>0</number>
+      <number>2</number>
      </property>
      <widget class="QWidget" name="configureTab">
       <attribute name="title">
@@ -30,7 +30,7 @@
        <item>
         <widget class="QTabWidget" name="optionsTabWidget">
          <property name="currentIndex">
-          <number>0</number>
+          <number>7</number>
          </property>
          <widget class="QWidget" name="globalOptionsTab">
           <attribute name="title">
@@ -1048,6 +1048,23 @@
                 </property>
                </widget>
               </item>
+              <item>
+               <widget class="QLabel" name="label_38">
+                <property name="text">
+                 <string>Exempted 'typing' symbols:</string>
+                </property>
+               </widget>
+              </item>
+              <item>
+               <widget class="QLineEdit" name="exemptedTypingSymbolsEdit">
+                <property name="toolTip">
+                 <string>Enter deprecated symbols of the 'typing' module exempted from PEP-585 checking separated by space</string>
+                </property>
+                <property name="clearButtonEnabled">
+                 <bool>true</bool>
+                </property>
+               </widget>
+              </item>
              </layout>
             </widget>
            </item>
@@ -2067,6 +2084,7 @@
   <tabstop>simplifiedTypesCheckBox</tabstop>
   <tabstop>dispatchDecoratorEdit</tabstop>
   <tabstop>overloadDecoratorEdit</tabstop>
+  <tabstop>exemptedTypingSymbolsEdit</tabstop>
   <tabstop>tmpDirectoriesEdit</tabstop>
   <tabstop>hashesEdit</tabstop>
   <tabstop>insecureSslProtocolsEdit</tabstop>
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/MiscellaneousChecker.py	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/MiscellaneousChecker.py	Sun Jul 02 17:39:33 2023 +0200
@@ -76,6 +76,15 @@
         "M198",
         ## Dictionaries with sorted keys
         "M201",
+        ## Property
+        "M210",
+        "M211",
+        "M212",
+        "M213",
+        "M214",
+        "M215",
+        "M216",
+        "M217",
         ## Naive datetime usage
         "M301",
         "M302",
@@ -160,7 +169,7 @@
         "M702",
         ## Gettext
         "M711",
-        ## print
+        ## print() statements
         "M801",
         ## one element tuple
         "M811",
@@ -258,6 +267,10 @@
             ),
             (self.__checkDictWithSortedKeys, ("M201",)),
             (
+                self.__checkProperties,
+                ("M210", "M211", "M212", "M213", "M214", "M215", "M216", "M217"),
+            ),
+            (
                 self.__checkDateTime,
                 (
                     "M301",
@@ -1202,6 +1215,90 @@
             reason = violation[1]
             self.__error(node.lineno - 1, node.col_offset, reason)
 
+    def __checkProperties(self):
+        """
+        Private method to check for issue with property related methods.
+        """
+        properties = []
+        for node in ast.walk(self.__tree):
+            if isinstance(node, ast.ClassDef):
+                properties.clear()
+
+            elif isinstance(node, ast.FunctionDef):
+                propertyCount = 0
+                for decorator in node.decorator_list:
+                    # property getter method
+                    if isinstance(decorator, ast.Name) and decorator.id == "property":
+                        propertyCount += 1
+                        properties.append(node.name)
+                        if len(node.args.args) != 1:
+                            self.__error(
+                                node.lineno - 1,
+                                node.col_offset,
+                                "M210",
+                                len(node.args.args),
+                            )
+
+                    if isinstance(decorator, ast.Attribute):
+                        # property setter method
+                        if decorator.attr == "setter":
+                            propertyCount += 1
+                            if node.name != decorator.value.id:
+                                if node.name in properties:
+                                    self.__error(
+                                        node.lineno - 1,
+                                        node.col_offset,
+                                        "M215",
+                                        node.name,
+                                        decorator.value.id,
+                                    )
+                                else:
+                                    self.__error(
+                                        node.lineno - 1,
+                                        node.col_offset,
+                                        "M213",
+                                        decorator.value.id,
+                                        node.name,
+                                    )
+                            if len(node.args.args) != 2:
+                                self.__error(
+                                    node.lineno - 1,
+                                    node.col_offset,
+                                    "M211",
+                                    len(node.args.args),
+                                )
+
+                        # property deleter method
+                        if decorator.attr == "deleter":
+                            propertyCount += 1
+                            if node.name != decorator.value.id:
+                                if node.name in properties:
+                                    self.__error(
+                                        node.lineno - 1,
+                                        node.col_offset,
+                                        "M216",
+                                        node.name,
+                                        decorator.value.id,
+                                    )
+                                else:
+                                    self.__error(
+                                        node.lineno - 1,
+                                        node.col_offset,
+                                        "M214",
+                                        decorator.value.id,
+                                        node.name,
+                                    )
+                            if len(node.args.args) != 1:
+                                self.__error(
+                                    node.lineno - 1,
+                                    node.col_offset,
+                                    "M212",
+                                    len(node.args.args),
+                                )
+
+                if propertyCount > 1:
+                    self.__error(node.lineno - 1, node.col_offset, "M217", node.name)
+
 
 class TextVisitor(ast.NodeVisitor):
     """
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py	Sun Jul 02 17:39:33 2023 +0200
@@ -12,18 +12,21 @@
 from PyQt6.QtCore import QCoreApplication
 
 _miscellaneousMessages = {
+    ## Coding line
     "M101": QCoreApplication.translate(
         "MiscellaneousChecker", "coding magic comment not found"
     ),
     "M102": QCoreApplication.translate(
         "MiscellaneousChecker", "unknown encoding ({0}) found in coding magic comment"
     ),
+    ## Copyright
     "M111": QCoreApplication.translate(
         "MiscellaneousChecker", "copyright notice not present"
     ),
     "M112": QCoreApplication.translate(
         "MiscellaneousChecker", "copyright notice contains invalid author"
     ),
+    ## Shadowed Builtins
     "M131": QCoreApplication.translate(
         "MiscellaneousChecker",
         '"{0}" is a Python builtin and is being shadowed; '
@@ -34,6 +37,7 @@
         '"{0}" is used as an argument and thus shadows a '
         "Python builtin; consider renaming the argument",
     ),
+    ## Comprehensions
     "M181": QCoreApplication.translate(
         "MiscellaneousChecker",
         "unnecessary generator - rewrite as a list comprehension",
@@ -100,9 +104,47 @@
         "MiscellaneousChecker",
         "unnecessary {0} passed to list() - remove the outer call to {1}()",
     ),
+    ## Dictionaries with sorted keys
     "M201": QCoreApplication.translate(
         "MiscellaneousChecker", "sort keys - '{0}' should be before '{1}'"
     ),
+    ## Property
+    "M210": QCoreApplication.translate(
+        "MiscellaneousChecker",
+        "the number of arguments for property getter method is wrong"
+        " (should be 1 instead of {0})",
+    ),
+    "M211": QCoreApplication.translate(
+        "MiscellaneousChecker",
+        "the number of arguments for property setter method is wrong"
+        " (should be 2 instead of {0})",
+    ),
+    "M212": QCoreApplication.translate(
+        "MiscellaneousChecker",
+        "the number of arguments for property deleter method is wrong"
+        " (should be 1 instead of {0})",
+    ),
+    "M213": QCoreApplication.translate(
+        "MiscellaneousChecker",
+        "the name of the setter method is wrong (should be '{0}' instead of '{1}')",
+    ),
+    "M214": QCoreApplication.translate(
+        "MiscellaneousChecker",
+        "the name of the deleter method is wrong (should be '{0}' instead of '{1}')",
+    ),
+    "M215": QCoreApplication.translate(
+        "MiscellaneousChecker",
+        "the name of the setter decorator is wrong (should be '{0}' instead of '{1}')",
+    ),
+    "M216": QCoreApplication.translate(
+        "MiscellaneousChecker",
+        "the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')",
+    ),
+    "M217": QCoreApplication.translate(
+        "MiscellaneousChecker",
+        "multiple decorators were used to declare property '{0}'",
+    ),
+    ## Naive datetime usage
     "M301": QCoreApplication.translate(
         "MiscellaneousChecker",
         "use of 'datetime.datetime()' without 'tzinfo' argument should be avoided",
@@ -166,6 +208,7 @@
         "MiscellaneousChecker",
         "use of 'datetime.time()' without 'tzinfo' argument should be avoided",
     ),
+    ## sys.version and sys.version_info usage
     "M401": QCoreApplication.translate(
         "MiscellaneousChecker",
         "'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'",
@@ -207,6 +250,7 @@
         "MiscellaneousChecker",
         "'sys.version[:1]' referenced (Python 10), use 'sys.version_info'",
     ),
+    ## Bugbear
     "M501": QCoreApplication.translate(
         "MiscellaneousChecker",
         "Do not use bare 'except:', it also catches unexpected events like memory"
@@ -369,11 +413,13 @@
         "Sets should not contain duplicate items. Duplicate items will be replaced"
         " with a single item at runtime.",
     ),
+    ## Bugbear++
     "M581": QCoreApplication.translate("MiscellaneousChecker", "unncessary f-string"),
     "M582": QCoreApplication.translate(
         "MiscellaneousChecker",
         "cannot use 'self.__class__' as first argument of 'super()' call",
     ),
+    ## Format Strings
     "M601": QCoreApplication.translate("MiscellaneousChecker", "found {0} formatter"),
     "M611": QCoreApplication.translate(
         "MiscellaneousChecker", "format string does contain unindexed parameters"
@@ -408,6 +454,7 @@
     "M632": QCoreApplication.translate(
         "MiscellaneousChecker", "format call provides unused keyword ({0})"
     ),
+    ## Logging
     "M651": QCoreApplication.translate(
         "MiscellaneousChecker", "logging statement uses string.format()"
     ),
@@ -423,6 +470,7 @@
     "M655": QCoreApplication.translate(
         "MiscellaneousChecker", "logging statement uses 'warn' instead of 'warning'"
     ),
+    ## Future statements
     "M701": QCoreApplication.translate(
         "MiscellaneousChecker",
         "expected these __future__ imports: {0}; but only got: {1}",
@@ -430,13 +478,17 @@
     "M702": QCoreApplication.translate(
         "MiscellaneousChecker", "expected these __future__ imports: {0}; but got none"
     ),
+    ## Gettext
     "M711": QCoreApplication.translate(
         "MiscellaneousChecker", "gettext import with alias _ found: {0}"
     ),
+    ##~ print() statements
     "M801": QCoreApplication.translate("MiscellaneousChecker", "print statement found"),
+    ## one element tuple
     "M811": QCoreApplication.translate(
         "MiscellaneousChecker", "one element tuple found"
     ),
+    ## Mutable Defaults
     "M821": QCoreApplication.translate(
         "MiscellaneousChecker", "mutable default argument of type {0}"
     ),
@@ -446,6 +498,7 @@
     "M823": QCoreApplication.translate(
         "MiscellaneousChecker", "mutable default argument of function call '{0}'"
     ),
+    ##~ return statements
     "M831": QCoreApplication.translate(
         "MiscellaneousChecker",
         "None should not be added at any return if function has no return"
@@ -466,11 +519,13 @@
         "a value should not be assigned to a variable if it will be used as a"
         " return value only",
     ),
+    ## line continuation
     "M841": QCoreApplication.translate(
         "MiscellaneousChecker",
         "prefer implied line continuation inside parentheses, "
         "brackets and braces as opposed to a backslash",
     ),
+    ## commented code
     "M891": QCoreApplication.translate(
         "MiscellaneousChecker", "commented code lines should be removed"
     ),
@@ -493,6 +548,14 @@
     "M197": ["tuple", "tuple"],
     "M198": ["list", "list"],
     "M201": ["bar", "foo"],
+    "M210": [2],
+    "M211": [1],
+    "M212": [2],
+    "M213": ["foo", "bar"],
+    "M214": ["foo", "bar"],
+    "M215": ["foo", "bar"],
+    "M216": ["foo", "bar"],
+    "M217": ["foo"],
     "M507": ["x"],
     "M513": ["Exception"],
     "M514": ["OSError, IOError", " as err", "OSError"],
--- a/src/eric7/Preferences/ConfigurationDialog.py	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/Preferences/ConfigurationDialog.py	Sun Jul 02 17:39:33 2023 +0200
@@ -84,6 +84,7 @@
     WEBBROWSERMODE = 3
     EDITORMODE = 4
     PDFVIEWERMODE = 5
+    PIPMANAGERMODE = 6
 
 
 class ConfigurationWidget(QWidget):
@@ -901,6 +902,37 @@
                 ],
             }
 
+        elif displayMode == ConfigurationMode.PIPMANAGERMODE:
+            self.configItems = {
+                # key : [display string, pixmap name, dialog module name or
+                #        page creation function, parent key,
+                #        reference to configuration page (must always be last)]
+                # The dialog module must have the module function 'create' to
+                # create the configuration page. This must have the method
+                # 'save' to save the settings.
+                "iconsPage": [
+                    self.tr("Icons"),
+                    "preferences-icons",
+                    "IconsPage",
+                    None,
+                    None,
+                ],
+                "interfacePage": [
+                    self.tr("Interface"),
+                    "preferences-interface",
+                    "InterfaceLightPage",
+                    None,
+                    None,
+                ],
+                "pipPage": [
+                    self.tr("Python Package Management"),
+                    "pypi",
+                    "PipPage",
+                    None,
+                    None,
+                ],
+            }
+
         else:
             # display mode for generic use
             self.configItems = {
--- a/src/eric7/UI/VersionsDialog.py	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/UI/VersionsDialog.py	Sun Jul 02 17:39:33 2023 +0200
@@ -51,8 +51,8 @@
         )
         self.__checkUpdateButton.clicked.connect(self.__checkForUpdate)
 
-        self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setDefault(True)
-        self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setFocus(
+        self.buttonBox.button(QDialogButtonBox.StandardButton.Close).setDefault(True)
+        self.buttonBox.button(QDialogButtonBox.StandardButton.Close).setFocus(
             Qt.FocusReason.OtherFocusReason
         )
 
@@ -124,8 +124,8 @@
             )
             self.__upgradeBothButton.clicked.connect(self.__ui.upgradeEricPyQt)
 
-        self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setDefault(True)
-        self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setFocus(
+        self.buttonBox.button(QDialogButtonBox.StandardButton.Close).setDefault(True)
+        self.buttonBox.button(QDialogButtonBox.StandardButton.Close).setFocus(
             Qt.FocusReason.OtherFocusReason
         )
 
--- a/src/eric7/UI/VersionsDialog.ui	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/UI/VersionsDialog.ui	Sun Jul 02 17:39:33 2023 +0200
@@ -49,7 +49,7 @@
       <enum>Qt::Horizontal</enum>
      </property>
      <property name="standardButtons">
-      <set>QDialogButtonBox::Ok</set>
+      <set>QDialogButtonBox::Close</set>
      </property>
     </widget>
    </item>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/eric7_pip.py	Sun Jul 02 17:39:33 2023 +0200
@@ -0,0 +1,83 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2023 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+eric pip Packages Manager.
+
+This is the main Python script to manage Python packages with 'pip' from
+outside of the IDE.
+"""
+
+import os
+import sys
+
+from PyQt6.QtGui import QGuiApplication
+
+for arg in sys.argv[:]:
+    if arg.startswith("--config="):
+        from eric7 import Globals
+
+        configDir = arg.replace("--config=", "")
+        Globals.setConfigDir(configDir)
+        sys.argv.remove(arg)
+    elif arg.startswith("--settings="):
+        from PyQt6.QtCore import QSettings
+
+        settingsDir = os.path.expanduser(arg.replace("--settings=", ""))
+        if not os.path.isdir(settingsDir):
+            os.makedirs(settingsDir)
+        QSettings.setPath(
+            QSettings.Format.IniFormat, QSettings.Scope.UserScope, settingsDir
+        )
+        sys.argv.remove(arg)
+
+from eric7.Globals import AppInfo
+from eric7.Toolbox import Startup
+
+
+def createMainWidget(argv):  # noqa: U100
+    """
+    Function to create the main widget.
+
+    @param argv list of commandline parameters
+    @type list of str
+    @return reference to the main widget
+    @rtype QWidget
+    """
+    from eric7.PipInterface.PipPackagesWindow import PipPackagesWindow
+
+    return PipPackagesWindow(None)
+
+
+def main():
+    """
+    Main entry point into the application.
+    """
+    QGuiApplication.setDesktopFileName("eric7_pip.desktop")
+
+    options = [
+        (
+            "--config=configDir",
+            "use the given directory as the one containing the config files",
+        ),
+        (
+            "--settings=settingsDir",
+            "use the given directory to store the settings files",
+        ),
+    ]
+    appinfo = AppInfo.makeAppInfo(
+        sys.argv,
+        "eric Package Manager",
+        "",
+        "Utility to manage Python packages with 'pip'.",
+        options,
+    )
+    res = Startup.simpleAppStartup(sys.argv, appinfo, createMainWidget)
+    sys.exit(res)
+
+
+if __name__ == "__main__":
+    main()
--- a/src/eric7/i18n/eric7_cs.ts	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/i18n/eric7_cs.ts	Sun Jul 02 17:39:33 2023 +0200
@@ -1319,6 +1319,16 @@
       <source>type annotation is too long ({0} &gt; {1})</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="76" />
+      <source>'typing.Union' is deprecated, use '|' instead (see PEP 604)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="80" />
+      <source>'typing.{0}' is deprecated, use '{1}' instead (see PEP 585)</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>ApplicationDiagramBuilder</name>
@@ -1752,42 +1762,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
+      <location filename="../Utilities/BackgroundService.py" line="217" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="219" />
+      <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>Restart background client?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Utilities/BackgroundService.py" line="232" />
-      <source>Restart background client?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Utilities/BackgroundService.py" line="233" />
       <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="262" />
+      <location filename="../Utilities/BackgroundService.py" line="261" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="497" />
+      <location filename="../Utilities/BackgroundService.py" line="502" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="506" />
+      <location filename="../Utilities/BackgroundService.py" line="511" />
       <source>Background client disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="507" />
+      <location filename="../Utilities/BackgroundService.py" line="512" />
       <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>
@@ -1850,22 +1860,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>Yes</source>
       <translation type="unfinished">Ano</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>No</source>
       <translation type="unfinished">Ne</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>yes</source>
       <translation type="unfinished">ano</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>no</source>
       <translation type="unfinished">ne</translation>
     </message>
@@ -2287,26 +2297,31 @@
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="97" />
-      <source>Complete {0}-bit Service UUID: {1}</source>
+      <source>Complete {0}-bit Service UUID: {1}{2}</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="99" />
-      <source>Incomplete {0}-bit Service UUID: {1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="110" />
-      <source>Manufacturer ID: 0x{0:x} ({1})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="114" />
+      <source>Incomplete {0}-bit Service UUID: {1}{2}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="107" />
+      <source> - {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="121" />
+      <source>Manufacturer ID: 0x{0:x} - {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="125" />
       <source>Manufacturer ID: 0x{0:x}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="123" />
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="134" />
       <source>Tx Power Level [dBm]: {0}</source>
       <translation type="unfinished" />
     </message>
@@ -2808,17 +2823,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="335" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
       <source>New Bookmark Folder</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="337" />
       <source>Enter title for new bookmark folder:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="343" />
       <source>New Folder</source>
       <translation>Nová složka</translation>
     </message>
@@ -2922,22 +2937,22 @@
       <translation>Menu záložek</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="543" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="541" />
       <source>Remove Bookmark</source>
       <translation>Odebrat záložku</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="585" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="583" />
       <source>Insert Bookmark</source>
       <translation>Vložit záložku</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="626" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="624" />
       <source>Name Change</source>
       <translation>Změnit název</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="630" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="628" />
       <source>Address Change</source>
       <translation>Změnit adresu</translation>
     </message>
@@ -2973,22 +2988,22 @@
       <translation>Chyba při ukládání záložek do &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="399" />
       <source>Export Bookmarks</source>
       <translation>Export záložek</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="403" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
       <source>XBEL bookmarks (*.xbel);;XBEL bookmarks (*.xml);;HTML Bookmarks (*.html)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="429" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="427" />
       <source>Exporting Bookmarks</source>
       <translation>Exportování záložek</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="430" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="428" />
       <source>Error exporting bookmarks to &lt;b&gt;{0}&lt;/b&gt;.</source>
       <translation>Chyba při exportu záložek &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
@@ -3246,231 +3261,231 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="238" />
+      <location filename="../UI/Browser.py" line="239" />
       <source>Show Hidden Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="244" />
+      <location filename="../UI/Browser.py" line="245" />
       <source>New</source>
       <translation type="unfinished">Nový</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="246" />
+      <location filename="../UI/Browser.py" line="247" />
       <source>Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="249" />
+      <location filename="../UI/Browser.py" line="250" />
       <source>File</source>
       <translation type="unfinished">Soubor</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="323" />
-      <location filename="../UI/Browser.py" line="285" />
-      <location filename="../UI/Browser.py" line="255" />
+      <location filename="../UI/Browser.py" line="324" />
+      <location filename="../UI/Browser.py" line="286" />
+      <location filename="../UI/Browser.py" line="256" />
       <source>Open</source>
       <translation>Otevřít</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="258" />
+      <location filename="../UI/Browser.py" line="259" />
       <source>Run Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="622" />
-      <location filename="../UI/Browser.py" line="614" />
-      <location filename="../UI/Browser.py" line="604" />
-      <location filename="../UI/Browser.py" line="595" />
-      <location filename="../UI/Browser.py" line="305" />
-      <location filename="../UI/Browser.py" line="262" />
-      <source>Show Mime-Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="266" />
-      <source>Refresh Source File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="361" />
-      <location filename="../UI/Browser.py" line="309" />
-      <location filename="../UI/Browser.py" line="271" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Kopírovat cestu do schránky</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="369" />
-      <location filename="../UI/Browser.py" line="329" />
-      <location filename="../UI/Browser.py" line="317" />
-      <location filename="../UI/Browser.py" line="279" />
-      <source>Delete</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="288" />
-      <source>Open in Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="292" />
-      <source>Open in Icon Editor</source>
-      <translation>Otevřit v editoru ikon</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="296" />
-      <source>Open in Editor</source>
-      <translation type="unfinished">Otevřít v editoru</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="300" />
-      <source>Open in PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="388" />
-      <location filename="../UI/Browser.py" line="379" />
-      <location filename="../UI/Browser.py" line="335" />
-      <source>New toplevel directory...</source>
-      <translation>Nový adresář toplevel...</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="339" />
-      <source>Add as toplevel directory</source>
-      <translation>Přidat jako toplevel adresář</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="343" />
-      <source>Remove from toplevel</source>
-      <translation>Odebrat z toplevelu</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="348" />
-      <source>Refresh directory</source>
-      <translation>Obnovit složku</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="353" />
-      <source>Find in this directory</source>
-      <translation>Hledat v tomto adresáři</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="357" />
-      <source>Find &amp;&amp; Replace in this directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="373" />
-      <source>Goto</source>
-      <translation type="unfinished">Jít na</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="491" />
-      <source>Line {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="596" />
-      <source>The mime type of the file could not be determined.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="615" />
-      <location filename="../UI/Browser.py" line="605" />
-      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="623" />
+      <location filename="../UI/Browser.py" line="615" />
+      <location filename="../UI/Browser.py" line="605" />
+      <location filename="../UI/Browser.py" line="596" />
+      <location filename="../UI/Browser.py" line="306" />
+      <location filename="../UI/Browser.py" line="263" />
+      <source>Show Mime-Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="267" />
+      <source>Refresh Source File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="362" />
+      <location filename="../UI/Browser.py" line="310" />
+      <location filename="../UI/Browser.py" line="272" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Kopírovat cestu do schránky</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="370" />
+      <location filename="../UI/Browser.py" line="330" />
+      <location filename="../UI/Browser.py" line="318" />
+      <location filename="../UI/Browser.py" line="280" />
+      <source>Delete</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="289" />
+      <source>Open in Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="293" />
+      <source>Open in Icon Editor</source>
+      <translation>Otevřit v editoru ikon</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="297" />
+      <source>Open in Editor</source>
+      <translation type="unfinished">Otevřít v editoru</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="301" />
+      <source>Open in PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="389" />
+      <location filename="../UI/Browser.py" line="380" />
+      <location filename="../UI/Browser.py" line="336" />
+      <source>New toplevel directory...</source>
+      <translation>Nový adresář toplevel...</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="340" />
+      <source>Add as toplevel directory</source>
+      <translation>Přidat jako toplevel adresář</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="344" />
+      <source>Remove from toplevel</source>
+      <translation>Odebrat z toplevelu</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="349" />
+      <source>Refresh directory</source>
+      <translation>Obnovit složku</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="354" />
+      <source>Find in this directory</source>
+      <translation>Hledat v tomto adresáři</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="358" />
+      <source>Find &amp;&amp; Replace in this directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="374" />
+      <source>Goto</source>
+      <translation type="unfinished">Jít na</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="492" />
+      <source>Line {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="597" />
+      <source>The mime type of the file could not be determined.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="616" />
+      <location filename="../UI/Browser.py" line="606" />
+      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="624" />
       <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="731" />
+      <location filename="../UI/Browser.py" line="732" />
       <source>New toplevel directory</source>
       <translation>Nový toplevel adresář</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="967" />
-      <location filename="../UI/Browser.py" line="955" />
-      <location filename="../UI/Browser.py" line="946" />
-      <source>New Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="947" />
-      <source>Name for new directory:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="994" />
-      <location filename="../UI/Browser.py" line="956" />
-      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="968" />
+      <location filename="../UI/Browser.py" line="956" />
+      <location filename="../UI/Browser.py" line="947" />
+      <source>New Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="948" />
+      <source>Name for new directory:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="995" />
+      <location filename="../UI/Browser.py" line="957" />
+      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="969" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1006" />
-      <location filename="../UI/Browser.py" line="993" />
-      <location filename="../UI/Browser.py" line="984" />
-      <source>New File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="985" />
-      <source>Name for new file:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1007" />
+      <location filename="../UI/Browser.py" line="994" />
+      <location filename="../UI/Browser.py" line="985" />
+      <source>New File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="986" />
+      <source>Name for new file:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1008" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1103" />
-      <location filename="../UI/Browser.py" line="1045" />
-      <location filename="../UI/Browser.py" line="1035" />
-      <source>Delete File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1036" />
-      <source>Do you really want to delete this file?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1104" />
       <location filename="../UI/Browser.py" line="1046" />
+      <location filename="../UI/Browser.py" line="1036" />
+      <source>Delete File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1037" />
+      <source>Do you really want to delete this file?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1105" />
+      <location filename="../UI/Browser.py" line="1047" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1071" />
-      <location filename="../UI/Browser.py" line="1061" />
-      <source>Delete Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1062" />
-      <source>Do you really want to delete this directory?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1072" />
+      <location filename="../UI/Browser.py" line="1062" />
+      <source>Delete Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1063" />
+      <source>Do you really want to delete this directory?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1073" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1092" />
-      <source>Delete Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1093" />
+      <source>Delete Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1094" />
       <source>Do you really want to delete these files?</source>
       <translation type="unfinished" />
     </message>
@@ -5119,27 +5134,27 @@
       <translation type="unfinished">Chyby: {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1210" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1221" />
       <source>{0} (ignored)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1285" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1296" />
       <source>No issues found.</source>
       <translation type="unfinished">Žádné problémy nenalezeny.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1289" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1300" />
       <source>No files found (check your ignore list).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2891" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2935" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2892" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2936" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -5625,6 +5640,16 @@
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Exempted 'typing' symbols:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Enter deprecated symbols of the 'typing' module exempted from PEP-585 checking separated by space</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
       <source>Security</source>
       <translation type="unfinished">Bezpečnost</translation>
     </message>
@@ -6514,7 +6539,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="174" />
+      <location filename="../Utilities/__init__.py" line="176" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>Nesprávné kódování '{0}' pro daný text.</translation>
     </message>
@@ -7637,374 +7662,377 @@
   <context>
     <name>ConfigurationWidget</name>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="174" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="175" />
       <source>Application</source>
       <translation>Aplikace</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="180" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="181" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="182" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="183" />
       <source>Cooperation</source>
       <translation>Spolupráce</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="189" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="190" />
       <source>Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="196" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="197" />
       <source>Email</source>
       <translation>Email</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="203" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="204" />
       <source>Graphics</source>
       <translation>Grafika</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="865" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="210" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="866" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="211" />
       <source>Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="946" />
       <location filename="../Preferences/ConfigurationDialog.py" line="914" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="882" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="851" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="754" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="639" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="217" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="883" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="852" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="755" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="640" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="218" />
       <source>Icons</source>
       <translation>Ikony</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="223" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="224" />
       <source>IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="225" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="226" />
       <source>Log-Viewer</source>
       <translation type="unfinished">Prohlížeč logu</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="232" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="233" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="239" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="240" />
       <source>MIME-Types</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="768" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="246" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="769" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="247" />
       <source>Network</source>
       <translation>Síť</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="253" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="254" />
       <source>Notifications</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="896" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="260" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="897" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="261" />
       <source>PDF Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="267" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="928" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="268" />
       <source>Python Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="274" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="275" />
       <source>Plugin Manager</source>
       <translation>Plugin Manažer</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="775" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="653" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="281" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="776" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="654" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="282" />
       <source>Printer</source>
       <translation>Tiskárna</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="288" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="289" />
       <source>Python</source>
       <translation>Python</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="294" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="295" />
       <source>Qt</source>
       <translation>Qt</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="782" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="296" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="783" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="297" />
       <source>Security</source>
       <translation type="unfinished">Bezpečnost</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="303" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="304" />
       <source>Shell</source>
       <translation>Shell</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="309" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="310" />
       <source>Tasks</source>
       <translation>Úlohy</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="311" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="312" />
       <source>Templates</source>
       <translation>Šablony</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="834" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="318" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="835" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="319" />
       <source>Tray Starter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="325" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="326" />
       <source>Version Control Systems</source>
       <translation>Version Control Systems</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="332" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="333" />
       <source>Debugger</source>
       <translation>Debugger</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="667" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="374" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="339" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="668" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="375" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="340" />
       <source>General</source>
       <translation>Hlavní</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="346" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="347" />
       <source>Python3</source>
       <translation />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="660" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="353" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="661" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="354" />
       <source>Editor</source>
       <translation>Editor</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="360" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="361" />
       <source>APIs</source>
       <translation>APIs</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="367" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="368" />
       <source>Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="674" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="381" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="675" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="382" />
       <source>Filehandling</source>
       <translation>Manažer souborů</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="681" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="388" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="682" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="389" />
       <source>Searching</source>
       <translation>Vyhledávání</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="817" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="688" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="617" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="395" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="818" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="689" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="618" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="396" />
       <source>Spell checking</source>
       <translation>Kontrola pravopisu</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="695" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="402" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="696" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="403" />
       <source>Style</source>
       <translation>Styl</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="409" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="410" />
       <source>Code Checkers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="702" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="416" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="703" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="417" />
       <source>Typing</source>
       <translation>Psaní</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="423" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="424" />
       <source>Exporters</source>
       <translation>Exportery</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="430" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="431" />
       <source>Autocompletion</source>
       <translation>Autodoplňování</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="458" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="437" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="459" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="438" />
       <source>QScintilla</source>
       <translation>QScintilla</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="514" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="465" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="444" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="515" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="466" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="445" />
       <source>Jedi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="451" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="452" />
       <source>Calltips</source>
       <translation>Rychlé tipy</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="709" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="472" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="710" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="473" />
       <source>Highlighters</source>
       <translation>Zvýrazňovače</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="716" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="479" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="717" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="480" />
       <source>Filetype Associations</source>
       <translation>Asociace typů souborů</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="723" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="486" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="724" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="487" />
       <source>Styles</source>
       <translation>Styly</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="730" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="493" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="731" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="494" />
       <source>Keywords</source>
       <translation>Klíčová slova</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="737" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="500" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="738" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="501" />
       <source>Properties</source>
       <translation>Nastavení</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="507" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="508" />
       <source>Mouse Click Handlers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="520" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="521" />
       <source>Help</source>
       <translation>Nápověda</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="789" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="522" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="790" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="523" />
       <source>Help Documentation</source>
       <translation>Dokumenty nápovědy</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="529" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="530" />
       <source>Help Viewers</source>
       <translation>Prohlížeče nápovědy</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="550" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="536" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="551" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="537" />
       <source>Project</source>
       <translation>Projekt</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="543" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="544" />
       <source>Project Viewer</source>
       <translation>Prohlížeč projektu</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="557" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="558" />
       <source>Multiproject</source>
       <translation>Multiprojekt</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="953" />
       <location filename="../Preferences/ConfigurationDialog.py" line="921" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="889" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="858" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="761" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="646" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="571" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="564" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="890" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="859" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="762" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="647" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="572" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="565" />
       <source>Interface</source>
       <translation>Interface</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="578" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="579" />
       <source>Viewmanager</source>
       <translation>Viewmanager</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="589" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="590" />
       <source>Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="796" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="596" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="797" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="597" />
       <source>Appearance</source>
       <translation>Vzhled</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="803" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="603" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="804" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="604" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="810" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="610" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="811" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="611" />
       <source>VirusTotal Interface</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1007" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1039" />
       <source>Enter search text...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1080" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1112" />
       <source>Preferences</source>
       <translation>Předvolby</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1086" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1118" />
       <source>Please select an entry of the list 
 to display the configuration page.</source>
       <translation>Pro zobrazení strany s konfigurací vyberte položku ze seznamu.</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1163" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1195" />
       <source>Configuration Page Error</source>
       <translation>Chyba na straně konfigurace</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1164" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1196" />
       <source>&lt;p&gt;The configuration page &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Konfigurační stranu &lt;b&gt;{0}&lt;/b&gt; nelze načíst.&lt;/p&gt;</translation>
     </message>
@@ -10479,26 +10507,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Add allowed host</source>
       <translation>Přidat povoleného hosta</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Zadání IP adresy povoleného hosta</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
+      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Zadaná adresa &lt;b&gt;{0}&lt;/b&gt; není validní IP v4 nebo IP v6. Zrušeno...&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
-      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Zadaná adresa &lt;b&gt;{0}&lt;/b&gt; není validní IP v4 nebo IP v6. Zrušeno...&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
       <source>Edit allowed host</source>
       <translation>Editovat povolené hosty</translation>
     </message>
@@ -12008,42 +12036,42 @@
   <context>
     <name>DownloadManager</name>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="111" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="113" />
       <source>Open</source>
       <translation type="unfinished">Otevřít</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="117" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="119" />
       <source>Cancel</source>
       <translation type="unfinished">Zrušit</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="122" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="124" />
       <source>Open Containing Folder</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="125" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="127" />
       <source>Go to Download Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="126" />
-      <source>Copy Download Link</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/Download/DownloadManager.py" line="128" />
+      <source>Copy Download Link</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="130" />
       <source>Select All</source>
       <translation type="unfinished">Vybrat vše</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="137" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="139" />
       <source>Remove From List</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="172" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="174" />
       <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
       <translation type="unfinished">
@@ -12053,34 +12081,34 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="264" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="266" />
       <source>Suspicuous URL detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="265" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="267" />
       <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="500" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="502" />
       <source>Downloads finished</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="501" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="503" />
       <source>All files have been downloaded.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/Download/DownloadManager.ui" line="0" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="586" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="509" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="588" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="511" />
       <source>Download Manager</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="619" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="621" />
       <source>{0}% of %n file(s) ({1}) {2}</source>
       <translation type="unfinished">
         <numerusform />
@@ -12089,7 +12117,7 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="627" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="629" />
       <source>{0}% - Download Manager</source>
       <translation type="unfinished" />
     </message>
@@ -12336,7 +12364,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3335" />
+      <location filename="../QScintilla/Editor.py" line="3334" />
       <location filename="../QScintilla/Editor.py" line="428" />
       <location filename="../QScintilla/Editor.py" line="413" />
       <source>Open File</source>
@@ -12408,7 +12436,7 @@
       <translation>Zrušit komentář</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9154" />
+      <location filename="../QScintilla/Editor.py" line="9152" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12681,7 +12709,7 @@
       <translation type="unfinished">Pravopis</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8272" />
+      <location filename="../QScintilla/Editor.py" line="8270" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>Zatrhnout kontrolu...</translation>
@@ -12742,7 +12770,7 @@
       <translation>Editovat breakpoint...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5932" />
+      <location filename="../QScintilla/Editor.py" line="5929" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>Aktivovat breakpoint</translation>
@@ -12934,398 +12962,398 @@
       <translation>Tisk byl zrušen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3277" />
+      <location filename="../QScintilla/Editor.py" line="3276" />
       <source>File Modified</source>
       <translation>Soubor je modifikován</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3278" />
+      <location filename="../QScintilla/Editor.py" line="3277" />
       <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="3336" />
+      <location filename="../QScintilla/Editor.py" line="3335" />
       <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="3511" />
+      <location filename="../QScintilla/Editor.py" line="3492" />
+      <location filename="../QScintilla/Editor.py" line="3454" />
+      <source>Save File</source>
+      <translation>Uložit soubor</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="3455" />
+      <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="3512" />
-      <location filename="../QScintilla/Editor.py" line="3493" />
-      <location filename="../QScintilla/Editor.py" line="3455" />
-      <source>Save File</source>
-      <translation>Uložit soubor</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3456" />
-      <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="3513" />
       <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="3649" />
+      <location filename="../QScintilla/Editor.py" line="3646" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3650" />
+      <location filename="../QScintilla/Editor.py" line="3647" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5106" />
+      <location filename="../QScintilla/Editor.py" line="5103" />
       <source>Autocompletion</source>
       <translation>Autodoplňování</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5107" />
+      <location filename="../QScintilla/Editor.py" line="5104" />
       <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="5235" />
+      <location filename="../QScintilla/Editor.py" line="5232" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5236" />
+      <location filename="../QScintilla/Editor.py" line="5233" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5528" />
+      <location filename="../QScintilla/Editor.py" line="5525" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5529" />
+      <location filename="../QScintilla/Editor.py" line="5526" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5936" />
+      <location filename="../QScintilla/Editor.py" line="5933" />
       <source>Disable breakpoint</source>
       <translation>Deaktivovat breakpoint</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6315" />
+      <location filename="../QScintilla/Editor.py" line="6312" />
       <source>Code Coverage</source>
       <translation>Pokrytí kódu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6316" />
+      <location filename="../QScintilla/Editor.py" line="6313" />
       <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="6391" />
-      <location filename="../QScintilla/Editor.py" line="6383" />
+      <location filename="../QScintilla/Editor.py" line="6388" />
+      <location filename="../QScintilla/Editor.py" line="6380" />
       <source>Show Code Coverage Annotations</source>
       <translation>Zobrazit poznámky pokrytí kódu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6384" />
+      <location filename="../QScintilla/Editor.py" line="6381" />
       <source>All lines have been covered.</source>
       <translation>Všechny řádky byly pokryty.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6392" />
+      <location filename="../QScintilla/Editor.py" line="6389" />
       <source>There is no coverage file available.</source>
       <translation>Soubor s pokrytím není dostupný.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6496" />
+      <location filename="../QScintilla/Editor.py" line="6493" />
       <source>Profile Data</source>
       <translation>Profilovat data</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6497" />
+      <location filename="../QScintilla/Editor.py" line="6494" />
       <source>Please select a profile file</source>
       <translation>Prosím, vyberte soubor s profilem</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6658" />
-      <location filename="../QScintilla/Editor.py" line="6652" />
+      <location filename="../QScintilla/Editor.py" line="6655" />
+      <location filename="../QScintilla/Editor.py" line="6649" />
       <source>Syntax Error</source>
       <translation>Chyba syntaxe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6659" />
+      <location filename="../QScintilla/Editor.py" line="6656" />
       <source>No syntax error message available.</source>
       <translation>Hlášení syntaktické chyby není dostupné.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
-      <location filename="../QScintilla/Editor.py" line="6864" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
+      <location filename="../QScintilla/Editor.py" line="6863" />
       <source>Warning</source>
       <translation type="unfinished">Varování</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
       <source>No warning messages available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6934" />
+      <location filename="../QScintilla/Editor.py" line="6933" />
       <source>Style: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6937" />
+      <location filename="../QScintilla/Editor.py" line="6936" />
       <source>Warning: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6944" />
+      <location filename="../QScintilla/Editor.py" line="6943" />
       <source>Error: {0}</source>
       <translation type="unfinished">Chyby: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Macro Name</source>
       <translation>Název makra</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Select a macro name:</source>
       <translation>Vyberte název makra:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7077" />
+      <location filename="../QScintilla/Editor.py" line="7076" />
       <source>Load macro file</source>
       <translation>Načíst soubor makra</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7123" />
-      <location filename="../QScintilla/Editor.py" line="7079" />
+      <location filename="../QScintilla/Editor.py" line="7122" />
+      <location filename="../QScintilla/Editor.py" line="7078" />
       <source>Macro files (*.macro)</source>
       <translation>Macro soubory (*.macro)</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7100" />
+      <location filename="../QScintilla/Editor.py" line="7090" />
+      <source>Error loading macro</source>
+      <translation>Chyba při načítání makra</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7091" />
+      <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="7101" />
-      <location filename="../QScintilla/Editor.py" line="7091" />
-      <source>Error loading macro</source>
-      <translation>Chyba při načítání makra</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7092" />
-      <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="7102" />
       <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="7121" />
+      <location filename="../QScintilla/Editor.py" line="7120" />
       <source>Save macro file</source>
       <translation>Uložit soubor s makrem</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7138" />
+      <source>Save macro</source>
+      <translation>Uložit makro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7139" />
-      <source>Save macro</source>
-      <translation>Uložit makro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7140" />
       <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="7154" />
+      <source>Error saving macro</source>
+      <translation>Chyba při ukládání makra</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7155" />
-      <source>Error saving macro</source>
-      <translation>Chyba při ukládání makra</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7156" />
       <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="7168" />
+      <source>Start Macro Recording</source>
+      <translation>Spustit záznam makra</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7169" />
-      <source>Start Macro Recording</source>
-      <translation>Spustit záznam makra</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7170" />
       <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="7195" />
+      <source>Macro Recording</source>
+      <translation>Záznam makra</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7196" />
-      <source>Macro Recording</source>
-      <translation>Záznam makra</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation>Vložte název makra:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7348" />
+      <location filename="../QScintilla/Editor.py" line="7346" />
       <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="7354" />
+      <location filename="../QScintilla/Editor.py" line="7352" />
       <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="7361" />
+      <location filename="../QScintilla/Editor.py" line="7359" />
       <source>File changed</source>
       <translation>Soubor změněn</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7411" />
+      <location filename="../QScintilla/Editor.py" line="7409" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7716" />
+      <location filename="../QScintilla/Editor.py" line="7714" />
       <source>Drop Error</source>
       <translation>Zahodit chybu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7717" />
+      <location filename="../QScintilla/Editor.py" line="7715" />
       <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="7735" />
+      <source>Resources</source>
+      <translation>Zdroje</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7737" />
-      <source>Resources</source>
-      <translation>Zdroje</translation>
+      <source>Add file...</source>
+      <translation>Přidat soubor...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7738" />
+      <source>Add files...</source>
+      <translation>Přidat soubory...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="7739" />
-      <source>Add file...</source>
-      <translation>Přidat soubor...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7740" />
-      <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="7741" />
-      <source>Add aliased file...</source>
-      <translation>Přidat zástupce souboru...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>Přidat lokalizované resource...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7746" />
+      <location filename="../QScintilla/Editor.py" line="7744" />
       <source>Add resource frame</source>
       <translation>Přidat resource frame</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7765" />
+      <location filename="../QScintilla/Editor.py" line="7763" />
       <source>Add file resource</source>
       <translation>Přidat soubor resource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7777" />
       <source>Add file resources</source>
       <translation>Přidat soubory resource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7797" />
+      <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7795" />
       <source>Add aliased file resource</source>
       <translation>Přidat zástupce souboru resource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7804" />
+      <location filename="../QScintilla/Editor.py" line="7802" />
       <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="7879" />
+      <location filename="../QScintilla/Editor.py" line="7877" />
       <source>Package Diagram</source>
       <translation>Diagram balíčku</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7880" />
+      <location filename="../QScintilla/Editor.py" line="7878" />
       <source>Include class attributes?</source>
       <translation>Včetně atributů třídy?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7900" />
+      <location filename="../QScintilla/Editor.py" line="7898" />
       <source>Imports Diagram</source>
       <translation>Importovat diagram</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7901" />
+      <location filename="../QScintilla/Editor.py" line="7899" />
       <source>Include imports from external modules?</source>
       <translation>Zahrnout importy z externích modulů?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7920" />
+      <location filename="../QScintilla/Editor.py" line="7918" />
       <source>Application Diagram</source>
       <translation>Diagram aplikace</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7921" />
+      <location filename="../QScintilla/Editor.py" line="7919" />
       <source>Include module names?</source>
       <translation>Včetně jmen modulů?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="8274" />
+      <source>Add to dictionary</source>
+      <translation>Přidat do slovníku</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8276" />
-      <source>Add to dictionary</source>
-      <translation>Přidat do slovníku</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>Ignorovat vše</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8696" />
+      <location filename="../QScintilla/Editor.py" line="8694" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8697" />
+      <location filename="../QScintilla/Editor.py" line="8695" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8790" />
+      <location filename="../QScintilla/Editor.py" line="8788" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8791" />
+      <location filename="../QScintilla/Editor.py" line="8789" />
       <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="8887" />
+      <location filename="../QScintilla/Editor.py" line="8885" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8893" />
+      <location filename="../QScintilla/Editor.py" line="8891" />
       <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="8961" />
+      <location filename="../QScintilla/Editor.py" line="8959" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8962" />
+      <location filename="../QScintilla/Editor.py" line="8960" />
       <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>
@@ -14943,7 +14971,7 @@
   <context>
     <name>EditorHighlightersPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="144" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="145" />
       <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="51" />
       <source>Alternative</source>
       <translation>Alternativa</translation>
@@ -20803,8 +20831,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1589" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1573" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1591" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1575" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="196" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -20815,7 +20843,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1674" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1676" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="203" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -20866,8 +20894,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1673" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1632" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1634" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="363" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
@@ -20978,17 +21006,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1574" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1576" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1588" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1590" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1633" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1635" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -21603,27 +21631,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="72" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="67" />
       <source>{0} wants to use desktop notifications.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="98" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="92" />
       <source>Remember</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="100" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="94" />
       <source>Allow</source>
       <translation type="unfinished">Povolit</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="101" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="95" />
       <source>Deny</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="126" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="120" />
       <source>{0} wants to use an unknown feature.</source>
       <translation type="unfinished" />
     </message>
@@ -21840,7 +21868,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="486" />
+      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="487" />
       <source>Error loading feed</source>
       <translation type="unfinished" />
     </message>
@@ -23092,7 +23120,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1643" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="213" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -23113,158 +23141,158 @@
       <translation type="unfinished">Úložiště projektu nelze vytvořit.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="281" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="283" />
       <source>Creating Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="296" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="298" />
       <source>Adding files to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="305" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
       <source>Initial commit to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="333" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="335" />
       <source>Cloning project from a Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="428" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="429" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="485" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="546" />
       <source>Switch</source>
       <translation type="unfinished">Přepnout</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="545" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="547" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="575" />
       <source>Synchronizing with the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="619" />
       <source>Adding files/directories to the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="691" />
       <source>Removing files/directories from the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="754" />
       <source>Renaming {0}</source>
       <translation type="unfinished">Přejmenování {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="876" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="929" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="918" />
       <source>Revert changes</source>
       <translation type="unfinished">Vrátit změny</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="919" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="930" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="936" />
       <source>Reverting changes</source>
       <translation type="unfinished">Navrácení změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="988" />
       <source>Merging</source>
       <translation type="unfinished">Merging</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1012" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1016" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1228" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1232" />
       <source>Git Command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1330" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1336" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1334" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Rodiče&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1340" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tagy&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Rodiče&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1346" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tagy&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1352" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Větve&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1357" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1356" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1362" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1361" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1367" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1366" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1372" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1371" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1377" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1383" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -23274,459 +23302,459 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1458" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. 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="../Plugins/VcsPlugins/vcsGit/git.py" line="1517" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1500" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1506" />
       <source>Git Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1507" />
       <source>&lt;p&gt;Copying the directory &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="../Plugins/VcsPlugins/vcsGit/git.py" line="1518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
       <source>&lt;p&gt;Copying the file &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="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2726" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1645" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1707" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1694" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1683" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1713" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1689" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1708" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1714" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nelze přečíst.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1760" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1766" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1796" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1802" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1835" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1841" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1869" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1894" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1924" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1951" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1957" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1954" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1960" />
       <source>Apply patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2034" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2040" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2284" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2326" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2347" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2348" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2376" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2378" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2395" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2430" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2459" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2525" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2546" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished">Neplatný bisect podpříkaz ({0}).</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2828" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2672" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2725" />
       <source>Process Generation Error</source>
       <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2771" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2754" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2736" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2738" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2755" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2772" />
       <source>&lt;p&gt;The 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="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2791" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2819" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2793" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2817" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3161" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2991" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3047" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3048" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3183" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3240" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3271" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3294" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3318" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3396" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3598" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3436" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3599" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3559" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3510" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3437" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3509" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3469" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3483" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3558" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3547" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3548" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3573" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3609" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3610" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3620" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3647" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3707" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished">Zobrazení nastavení kombinovaných konfigurací</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3729" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3798" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3804" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3815" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3821" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3839" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3905" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3945" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4012" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
-      <source>All</source>
-      <translation type="unfinished">Vše</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
-      <source>Submodule Path</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
+      <source>All</source>
+      <translation type="unfinished">Vše</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4029" />
+      <source>Submodule Path</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4030" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4079" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4112" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4143" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4266" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -24139,12 +24167,12 @@
       <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="213" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="214" />
       <source>Changed by skipped commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="215" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="216" />
       <source>Commit cannot be skipped</source>
       <translation type="unfinished" />
     </message>
@@ -25244,7 +25272,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1896" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1891" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="340" />
       <source>Branch</source>
       <translation type="unfinished">Větev</translation>
@@ -25265,9 +25293,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1957" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1868" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1952" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1840" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="356" />
       <source>Switch</source>
       <translation type="unfinished">Přepnout</translation>
@@ -25278,7 +25306,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1979" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="364" />
       <source>Show Short Log</source>
       <translation type="unfinished" />
@@ -25299,125 +25327,125 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="662" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="664" />
+      <source>Could not start the git executable.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="667" />
-      <source>Could not start the git executable.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="670" />
       <source>Git Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="799" />
       <source>{0} ({1}%)</source>
       <comment>action, confidence</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="869" />
       <source>Process Generation Error</source>
       <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="874" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="870" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1345" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1342" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1359" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1356" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1800" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1958" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1806" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1953" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1801" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished">Projekt bude znovu načten. Má se provést?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1985" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1980" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841" />
       <source>Select a branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1935" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1897" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892" />
       <source>Select a default branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1934" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1929" />
       <source>Branch &amp; Switch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2159" />
       <source>Find Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2160" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished">'{0}' nebyl nalezen.</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2209" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2204" />
       <source>Differences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2221" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2216" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2237" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2232" />
       <source>Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2262" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2257" />
       <source>There is no difference.</source>
       <translation type="unfinished">Žádné rozdíly nebyly nalezeny.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2429" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2412" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2424" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2389" />
       <source>Save Diff</source>
       <translation type="unfinished">Uložit Diff</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2391" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished">Patch soubory (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2408" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2425" />
       <source>&lt;p&gt;The patch 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;Patch soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
@@ -28819,7 +28847,7 @@
       <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="383" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="384" />
       <source>%n file(s) changed</source>
       <translation>
         <numerusform />
@@ -28828,7 +28856,7 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="386" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="387" />
       <source>%n line(s) inserted</source>
       <translation>
         <numerusform />
@@ -28837,7 +28865,7 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="390" />
       <source>%n line(s) deleted</source>
       <translation>
         <numerusform />
@@ -29002,7 +29030,7 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195" />
       <source>Commit</source>
       <translation type="unfinished" />
@@ -29033,7 +29061,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210" />
       <source>Add</source>
       <translation type="unfinished">Přidat</translation>
@@ -29064,7 +29092,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226" />
       <source>Differences</source>
       <translation type="unfinished" />
@@ -29085,7 +29113,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244" />
       <source>Revert</source>
       <translation type="unfinished">Vrátit</translation>
@@ -29096,7 +29124,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253" />
       <source>Forget Missing</source>
       <translation type="unfinished" />
@@ -29107,7 +29135,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="837" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257" />
       <source>Restore Missing</source>
       <translation type="unfinished" />
@@ -29154,98 +29182,98 @@
       <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="605" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="468" />
       <source>all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="676" />
       <source>There are no entries selected to be committed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="719" />
       <source>There are no unversioned entries available/selected.</source>
       <translation type="unfinished">Položky mimo verzi nejsou dostupné/vybrány.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="741" />
-      <source>Stage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="742" />
+      <source>Stage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="743" />
       <source>There are no stageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="765" />
-      <source>Unstage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="766" />
+      <source>Unstage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="767" />
       <source>There are no unstageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="791" />
       <source>There are no missing entries available/selected.</source>
       <translation type="unfinished">Chybějící záznamy nejsou dostupné/vybrány.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810" />
       <source>There are no uncommitted, unstaged changes available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="874" />
       <source>There are no uncommitted changes available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="923" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="899" />
-      <source>Working Tree to Staging Area</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
-      <source>Staging Area to HEAD Commit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="924" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
+      <source>Working Tree to Staging Area</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="901" />
+      <source>Staging Area to HEAD Commit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="925" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="902" />
       <source>Working Tree to HEAD Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="928" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="905" />
-      <source>Differences Side-by-Side</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="929" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="906" />
+      <source>Differences Side-by-Side</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="907" />
       <source>Select the compare method.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1239" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1240" />
       <source>Revert selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1241" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1242" />
       <source>Revert hunk</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1247" />
       <source>Are you sure you want to revert the selected changes?</source>
       <translation type="unfinished" />
     </message>
@@ -29901,12 +29929,12 @@
       <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="336" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="337" />
       <source>current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="340" />
       <source>checked out in linked worktree</source>
       <translation type="unfinished" />
     </message>
@@ -30392,101 +30420,101 @@
       <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="516" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="533" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="552" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="535" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="553" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="576" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="577" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="578" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="612" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="595" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="597" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="614" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="634" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="636" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="642" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="669" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="723" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="699" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="701" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="725" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="750" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="762" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="752" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="763" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -30542,27 +30570,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="199" />
+      <location filename="../Globals/__init__.py" line="197" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="202" />
+      <location filename="../Globals/__init__.py" line="200" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="205" />
+      <location filename="../Globals/__init__.py" line="203" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="208" />
+      <location filename="../Globals/__init__.py" line="206" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="211" />
+      <location filename="../Globals/__init__.py" line="209" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -31361,37 +31389,37 @@
   <context>
     <name>HelpSearchWidget</name>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="166" />
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
       <source>Open Link</source>
       <translation>Otevřít link</translation>
     </message>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="168" />
-      <source>Open Link in New Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
-      <source>Open Link in Background Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="171" />
-      <source>Open Link in New Tab</source>
-      <translation>Otevřít link v novém tabu</translation>
+      <source>Open Link in New Page</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="172" />
-      <source>Open Link in Background Tab</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="173" />
-      <source>Open Link in New Window</source>
-      <translation type="unfinished" />
+      <source>Open Link in Background Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="174" />
+      <source>Open Link in New Tab</source>
+      <translation>Otevřít link v novém tabu</translation>
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="175" />
+      <source>Open Link in Background Tab</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="176" />
+      <source>Open Link in New Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="178" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -31716,104 +31744,104 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="442" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="443" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Qt4 dokumentace {5 ?}</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Qt4 dokumentace {6 ?}</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">PyQt4 dokumentace {5 ?}</translation>
+      <source>Qt5 Documentation</source>
+      <translation type="unfinished">Qt4 dokumentace {5 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>PyQt6 Documentation</source>
-      <translation type="unfinished">PyQt4 dokumentace {6 ?}</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Qt4 dokumentace {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
+      <source>PyQt5 Documentation</source>
+      <translation type="unfinished">PyQt4 dokumentace {5 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
+      <source>PyQt6 Documentation</source>
+      <translation type="unfinished">PyQt4 dokumentace {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="506" />
-      <source>Open HTML File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <source>Open HTML File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
       <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="699" />
       <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="723" />
       <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="734" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="759" />
       <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="762" />
       <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="767" />
       <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="860" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="840" />
       <source>Clear History</source>
       <translation type="unfinished">Vyčistit historii</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="968" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="970" />
       <source>Updating search index</source>
       <translation type="unfinished">Aktualizovat index pro hledání</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1026" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1028" />
       <source>Filtered by: </source>
       <translation type="unfinished">Filtrováno: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1062" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1057" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1064" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
       <source>Unfiltered</source>
       <translation type="unfinished">Nefiltrováno</translation>
     </message>
@@ -33229,446 +33257,446 @@
       <translation>Úložiště projektu nelze vytvořit.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="311" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="313" />
       <source>Creating Mercurial repository</source>
       <translation>Vytváření Mercurial úložiště</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="330" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="332" />
       <source>Initial commit to Mercurial repository</source>
       <translation>Úvodní zápis změn (commit) do Mercurial úložiště</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="368" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="370" />
       <source>Cloning project from a Mercurial repository</source>
       <translation>Naklonovat projekt z Mercurial úložiště</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="468" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="470" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="469" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="471" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="531" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="533" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="623" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="625" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation>Synchronizovat s Mercurial úložištěm</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="653" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation>Přidat soubory/složky do Mercurial úložiště</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="708" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation>Odebrat soubory/složky z Mercurial úložiště</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="754" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="756" />
       <source>Renaming {0}</source>
       <translation>Přejmenování {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="879" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="881" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="927" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="916" />
       <source>Revert changes</source>
       <translation type="unfinished">Vrátit změny</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="917" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="928" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="934" />
       <source>Reverting changes</source>
       <translation>Navrácení změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="977" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="979" />
       <source>Merging</source>
       <translation>Merging</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1017" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1007" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1009" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1008" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1010" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1020" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1021" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1023" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1044" />
       <source>Current branch tip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1216" />
       <source>Mercurial command</source>
       <translation>Mercurial příkaz</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1373" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1377" />
       <source>Copying {0}</source>
       <translation>Kopírování {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1612" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1600" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1591" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1604" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1595" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1613" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1617" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nelze přečíst.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2274" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2263" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2253" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1688" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2267" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2257" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1692" />
       <source>Apply changegroups</source>
       <translation>Použít skupinu změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1691" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1695" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation>Stažení (pull) z Mercurial repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1733" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation>Odeslání (push) do Mercurial repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1875" />
       <source>Marking as 'unresolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1877" />
       <source>Marking as 'resolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1895" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1899" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1922" />
       <source>Creating branch in the Mercurial repository</source>
       <translation>Vytvoření větve v Mercurial repozitáři</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1930" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
       <source>Showing current branch</source>
       <translation>Zobrazení aktuální větve</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2022" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2026" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation>Ověřit integritu Mercurial repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2035" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2039" />
       <source>Showing the combined configuration settings</source>
       <translation>Zobrazení nastavení kombinovaných konfigurací</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2050" />
       <source>Showing aliases for remote repositories</source>
       <translation>Zobrazení aliasů pro vzdálené úložiště</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2061" />
       <source>Recovering from interrupted transaction</source>
       <translation>Obnovení z přerušené transakce</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2068" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2072" />
       <source>Identifying project directory</source>
       <translation>Rozpoznat složku projektu</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2114" />
       <source>Create .hgignore file</source>
       <translation>Vytvořit soubor .hgignore</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2111" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2115" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2212" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2186" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2216" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2190" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2172" />
       <source>Create changegroup</source>
       <translation>Vytvořit skupinu změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2170" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2174" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation>Soubory Mercurial skupiny změn (*.hg)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2187" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2191" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Preview changegroup</source>
       <translation>Náhled skupiny změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2255" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2259" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2232" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation>Soubory Mercurial skupiny změn (*.hg);;Všechny soubory (*)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2264" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2268" />
       <source>Shall the working directory be updated?</source>
       <translation>Má být pracovní adresář aktualizován?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2300" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation>Neplatný bisect podpříkaz ({0}).</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2320" />
       <source>Mercurial Bisect ({0})</source>
       <translation>Mercurial Bisect ({0})</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
       <source>Removing files from the Mercurial repository only</source>
       <translation>Odebrat soubory jen z Mercurial úložiště</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2383" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2364" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2387" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2368" />
       <source>Backing out changeset</source>
       <translation>Zálohovat skupinu změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2365" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
       <source>No revision given. Aborting...</source>
       <translation>Nebyla dána žádná revize. Ruším...</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2403" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2398" />
+      <source>Rollback last transaction</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2399" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2394" />
-      <source>Rollback last transaction</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2465" />
       <source>Import Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2513" />
       <source>Export Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2553" />
       <source>Change Phase</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2607" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2646" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2656" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2662" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2666" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2685" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2689" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2703" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2700" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2704" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2789" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2769" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2793" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2762" />
       <source>Add Sub-repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2828" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2759" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2832" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2774" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2846" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2790" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2850" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2794" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2827" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2813" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2849" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2831" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2817" />
       <source>Remove Sub-repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2818" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3062" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2925" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3066" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2929" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2930" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3063" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3067" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3179" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3183" />
       <source>Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3195" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3199" />
       <source>Delete Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3200" />
       <source>Select the bookmark to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3210" />
       <source>Delete Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3235" />
       <source>Rename Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3268" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3272" />
       <source>Move Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3341" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3345" />
       <source>Pull Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3342" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
       <source>Select the bookmark to be pulled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3354" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3358" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3380" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3384" />
       <source>Push Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3385" />
       <source>Select the bookmark to be push:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3396" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3400" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
@@ -34511,42 +34539,42 @@
   <context>
     <name>HgClient</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="91" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="98" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="140" />
-      <source>Did not receive the 'hello' message.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="142" />
-      <source>Received data on unexpected channel.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="147" />
+      <source>Did not receive the 'hello' message.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="149" />
+      <source>Received data on unexpected channel.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="154" />
       <source>Bad 'hello' message, expected 'capabilities: ' but got '{0}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="152" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="159" />
       <source>'capabilities' message did not contain any capability.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="168" />
       <source>Bad 'hello' message, expected 'encoding: ' but got '{0}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="166" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="173" />
       <source>'encoding' message did not contain any encoding.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="377" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="385" />
       <source>For message see output dialog.</source>
       <translation type="unfinished" />
     </message>
@@ -35956,7 +35984,7 @@
       <translation>Kopírovat z</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2690" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2686" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="0" />
       <source>Differences</source>
       <translation type="unfinished" />
@@ -36087,7 +36115,7 @@
       <translation type="unfinished">Záložky</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2150" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2146" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
@@ -36144,8 +36172,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2244" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2240" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2223" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343" />
       <source>Switch</source>
       <translation type="unfinished">Přepnout</translation>
@@ -36176,8 +36204,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2362" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1562" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2358" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1558" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371" />
       <source>Pull Changes</source>
       <translation type="unfinished" />
@@ -36234,7 +36262,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2501" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="424" />
       <source>Apply Changegroup</source>
       <translation type="unfinished" />
@@ -36265,7 +36293,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2408" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2404" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="454" />
       <source>Strip Changesets</source>
       <translation type="unfinished" />
@@ -36286,117 +36314,117 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="889" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="866" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="886" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="837" />
       <source>Mercurial Error</source>
       <translation>Mercurial chyba</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1210" />
       <source>{0} (large file)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1472" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1468" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1479" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1641" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1560" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1556" />
       <source>Pull Selected Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2409" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2363" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2245" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2151" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2498" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2405" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2359" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2147" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished">Projekt bude znovu načten. Má se provést?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2224" />
       <source>Select bookmark to switch to (leave empty to use revision):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2273" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2269" />
       <source>Define Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2274" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2270" />
       <source>Enter bookmark name for changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2303" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2299" />
       <source>Move Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2300" />
       <source>Select the bookmark to be moved  to changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2637" />
       <source>Find Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2638" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished">'{0}' nebyl nalezen.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2689" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2685" />
       <source>Generating differences ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2701" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2697" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2713" />
       <source>Diff to Parent {0}{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2740" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2736" />
       <source>There is no difference.</source>
       <translation type="unfinished">Žádné rozdíly nebyly nalezeny.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2891" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2875" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2857" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2853" />
       <source>Save Diff</source>
       <translation type="unfinished">Uložit Diff</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2859" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2855" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished">Patch soubory (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2876" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2872" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2892" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2888" />
       <source>&lt;p&gt;The patch 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;Patch soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
@@ -41286,22 +41314,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="85" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -46085,9 +46113,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <location filename="../Network/IRC/IrcWidget.py" line="266" />
       <location filename="../Network/IRC/IrcWidget.py" line="261" />
       <location filename="../Network/IRC/IrcWidget.py" line="254" />
@@ -46122,260 +46150,260 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <source>Server found,connecting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
       <source>Connected,logging in...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
       <source>Server disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="607" />
+      <source>Message Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="608" />
-      <source>Message Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="609" />
       <source>Unknown message received from server:&lt;br/&gt;{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1032" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1022" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1014" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1006" />
-      <location filename="../Network/IRC/IrcWidget.py" line="651" />
-      <location filename="../Network/IRC/IrcWidget.py" line="643" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1030" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1020" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1012" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1004" />
+      <location filename="../Network/IRC/IrcWidget.py" line="650" />
+      <location filename="../Network/IRC/IrcWidget.py" line="642" />
       <source>CTCP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="644" />
+      <location filename="../Network/IRC/IrcWidget.py" line="643" />
       <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="652" />
+      <location filename="../Network/IRC/IrcWidget.py" line="651" />
       <source>Received unknown CTCP-{0} response from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="678" />
+      <location filename="../Network/IRC/IrcWidget.py" line="677" />
       <source>Notice</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="688" />
+      <location filename="../Network/IRC/IrcWidget.py" line="687" />
       <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="692" />
+      <location filename="../Network/IRC/IrcWidget.py" line="691" />
       <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="696" />
+      <location filename="../Network/IRC/IrcWidget.py" line="695" />
       <source>Mode</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="704" />
+      <location filename="../Network/IRC/IrcWidget.py" line="703" />
       <source>You have left channel {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="716" />
+      <location filename="../Network/IRC/IrcWidget.py" line="715" />
       <source>You are now known as {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="722" />
+      <location filename="../Network/IRC/IrcWidget.py" line="721" />
       <source>User {0} is now known as {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="728" />
+      <location filename="../Network/IRC/IrcWidget.py" line="727" />
       <source>Received PONG from {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="733" />
+      <location filename="../Network/IRC/IrcWidget.py" line="732" />
       <source>Server Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="767" />
+      <location filename="../Network/IRC/IrcWidget.py" line="765" />
       <source>Error</source>
       <translation type="unfinished">Chyba</translation>
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="780" />
+      <source>Welcome</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="782" />
-      <source>Welcome</source>
+      <source>Support</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="784" />
-      <source>Support</source>
+      <source>User</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="786" />
-      <source>User</source>
+      <source>MOTD</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="788" />
-      <source>MOTD</source>
+      <source>Away</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="790" />
-      <source>Away</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="792" />
       <source>Info ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="794" />
+      <source>Message of the day</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="796" />
-      <source>Message of the day</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="798" />
       <source>End of message of the day</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="801" />
+      <location filename="../Network/IRC/IrcWidget.py" line="799" />
       <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="806" />
+      <location filename="../Network/IRC/IrcWidget.py" line="804" />
       <source>Current users on {0}: {1}, max. {2}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="811" />
+      <location filename="../Network/IRC/IrcWidget.py" line="809" />
       <source>Current users on the network: {0}, max. {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="813" />
+      <source>You are no longer marked as being away.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="815" />
-      <source>You are no longer marked as being away.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="817" />
       <source>You have been marked as being away.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="947" />
-      <location filename="../Network/IRC/IrcWidget.py" line="931" />
-      <location filename="../Network/IRC/IrcWidget.py" line="880" />
+      <location filename="../Network/IRC/IrcWidget.py" line="945" />
+      <location filename="../Network/IRC/IrcWidget.py" line="929" />
+      <location filename="../Network/IRC/IrcWidget.py" line="878" />
       <source>SSL Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="881" />
+      <location filename="../Network/IRC/IrcWidget.py" line="879" />
       <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
-      <location filename="../Network/IRC/IrcWidget.py" line="910" />
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
-      <location filename="../Network/IRC/IrcWidget.py" line="897" />
-      <location filename="../Network/IRC/IrcWidget.py" line="889" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
+      <location filename="../Network/IRC/IrcWidget.py" line="908" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
+      <location filename="../Network/IRC/IrcWidget.py" line="895" />
+      <location filename="../Network/IRC/IrcWidget.py" line="887" />
       <source>Socket Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="890" />
+      <location filename="../Network/IRC/IrcWidget.py" line="888" />
       <source>The host was not found. Please check the host name and port settings.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="898" />
+      <location filename="../Network/IRC/IrcWidget.py" line="896" />
       <source>The connection was refused by the peer. Please check the host name and port settings.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
       <source>The SSL handshake failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="911" />
+      <location filename="../Network/IRC/IrcWidget.py" line="909" />
       <source>The following network error occurred:&lt;br/&gt;{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
       <source>A network error occurred.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="932" />
+      <location filename="../Network/IRC/IrcWidget.py" line="930" />
       <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 type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="948" />
+      <location filename="../Network/IRC/IrcWidget.py" line="946" />
       <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1007" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1005" />
       <source>Received Version request from {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1015" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1013" />
       <source>Received CTCP-PING request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1023" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1021" />
       <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1033" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1031" />
       <source>Received unknown CTCP-{0} request from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1049" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1047" />
       <source>{0} ({1})</source>
       <comment>channel name, users count</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1071" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1069" />
       <source>Critical</source>
       <translation type="unfinished">Kritický</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1072" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1070" />
       <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
       <source>The given nickname is already in use.</source>
       <translation type="unfinished" />
     </message>
@@ -47386,7 +47414,7 @@
       <translation>Výběr alternativního lexeru pro spojení</translation>
     </message>
     <message>
-      <location filename="../Project/LexerAssociationDialog.py" line="131" />
+      <location filename="../Project/LexerAssociationDialog.py" line="132" />
       <location filename="../Project/LexerAssociationDialog.py" line="45" />
       <source>Alternative</source>
       <translation>Alternativa</translation>
@@ -49236,13 +49264,13 @@
       <translation type="unfinished">Kopírovat cestu do schránky</translation>
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="485" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="487" />
       <source>Untitled {0}</source>
       <translation>Beze jména {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="627" />
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="491" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="629" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="493" />
       <source>{0} (ro)</source>
       <translation />
     </message>
@@ -52570,317 +52598,317 @@
       <translation>&lt;b&gt;Vyčistit&lt;/b&gt;&lt;p&gt;Smazat všechnen text v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2862" />
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
       <source>About</source>
       <translation>O aplikaci</translation>
     </message>
     <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
+      <source>&amp;About</source>
+      <translation>O &amp;aplikaci</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2860" />
+      <source>Display information about this software</source>
+      <translation>Zobrazit informace a tomto software</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2862" />
-      <source>&amp;About</source>
-      <translation>O &amp;aplikaci</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2864" />
-      <source>Display information about this software</source>
-      <translation>Zobrazit informace a tomto software</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <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;O aplikaci&lt;/b&gt;&lt;p&gt;Zobrazí se informace o tomto software.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About Qt</source>
       <translation>O Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About &amp;Qt</source>
       <translation>O &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2878" />
+      <location filename="../QScintilla/MiniEditor.py" line="2874" />
       <source>Display information about the Qt toolkit</source>
       <translation>Zobrazit informace o Qt toolkitu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2881" />
+      <location filename="../QScintilla/MiniEditor.py" line="2877" />
       <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;O Qt&lt;/b&gt;&lt;p&gt;Zobrazit informace o Qt toolkitu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2890" />
+      <location filename="../QScintilla/MiniEditor.py" line="2886" />
       <source>What's This?</source>
       <translation>Co je to?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <location filename="../QScintilla/MiniEditor.py" line="2888" />
       <source>&amp;What's This?</source>
       <translation>&amp;Co je to?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2893" />
+      <location filename="../QScintilla/MiniEditor.py" line="2889" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2898" />
+      <location filename="../QScintilla/MiniEditor.py" line="2894" />
       <source>Context sensitive help</source>
       <translation>Kontextově senzitivní nápověda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2900" />
+      <location filename="../QScintilla/MiniEditor.py" line="2896" />
       <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="../QScintilla/MiniEditor.py" line="2918" />
+      <location filename="../QScintilla/MiniEditor.py" line="2914" />
       <source>Preferences</source>
       <translation type="unfinished">Nastavení</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2920" />
+      <location filename="../QScintilla/MiniEditor.py" line="2916" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished">Na&amp;stavení...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2926" />
+      <location filename="../QScintilla/MiniEditor.py" line="2922" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">Nastavení konfigurace</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2924" />
       <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;Nastavení&lt;/b&gt;&lt;p&gt;Upravit konfiguraci aplikace podle požadavků uživatele.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2942" />
+      <location filename="../QScintilla/MiniEditor.py" line="2938" />
       <source>&amp;File</source>
       <translation>S&amp;oubor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2950" />
       <source>&amp;Edit</source>
       <translation>&amp;Edit</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2964" />
+      <location filename="../QScintilla/MiniEditor.py" line="2960" />
       <source>&amp;Search</source>
       <translation type="unfinished">V&amp;yhledat</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2974" />
+      <location filename="../QScintilla/MiniEditor.py" line="2970" />
       <source>&amp;View</source>
       <translation type="unfinished">Poh&amp;led</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2980" />
+      <location filename="../QScintilla/MiniEditor.py" line="2976" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished">Nas&amp;tavení</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2985" />
+      <location filename="../QScintilla/MiniEditor.py" line="2981" />
       <source>&amp;Help</source>
       <translation>&amp;Nápověda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2997" />
+      <location filename="../QScintilla/MiniEditor.py" line="2993" />
       <source>File</source>
       <translation>Soubor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3009" />
+      <location filename="../QScintilla/MiniEditor.py" line="3005" />
       <source>Edit</source>
       <translation>Editovat</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3018" />
+      <location filename="../QScintilla/MiniEditor.py" line="3014" />
       <source>Search</source>
       <translation type="unfinished">Vyhledat</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3024" />
+      <location filename="../QScintilla/MiniEditor.py" line="3020" />
       <source>View</source>
       <translation type="unfinished">Pohled</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3030" />
+      <location filename="../QScintilla/MiniEditor.py" line="3026" />
       <source>Settings</source>
       <translation type="unfinished">Nastavení</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3033" />
+      <location filename="../QScintilla/MiniEditor.py" line="3029" />
       <source>Help</source>
       <translation>Nápověda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3046" />
+      <location filename="../QScintilla/MiniEditor.py" line="3042" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3056" />
+      <location filename="../QScintilla/MiniEditor.py" line="3052" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Tato část statusbaru zobrazuje indikátor práva zápisu editoru do souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3065" />
+      <location filename="../QScintilla/MiniEditor.py" line="3061" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Tato část status baru zobrazuje číslo řádku v editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3074" />
+      <location filename="../QScintilla/MiniEditor.py" line="3070" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Tato část status baru zobrazuje pozici kurzoru v editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3088" />
+      <location filename="../QScintilla/MiniEditor.py" line="3084" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3095" />
+      <location filename="../QScintilla/MiniEditor.py" line="3091" />
       <source>Ready</source>
       <translation>Hotovo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <location filename="../QScintilla/MiniEditor.py" line="3166" />
       <source>eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3171" />
+      <location filename="../QScintilla/MiniEditor.py" line="3167" />
       <source>The document has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="3194" />
       <source>Open File</source>
       <translation>Otevřít soubor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3199" />
+      <location filename="../QScintilla/MiniEditor.py" line="3195" />
       <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; nelze otevřít.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3227" />
+      <location filename="../QScintilla/MiniEditor.py" line="3223" />
       <source>File loaded</source>
       <translation>Soubor načten</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <location filename="../QScintilla/MiniEditor.py" line="3304" />
       <source>Save File</source>
       <translation>Uložit soubor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3309" />
+      <location filename="../QScintilla/MiniEditor.py" line="3305" />
       <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; nelze uložit.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3315" />
+      <location filename="../QScintilla/MiniEditor.py" line="3311" />
       <source>File saved</source>
       <translation>Soubor uložen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>[*] - {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>Mini Editor</source>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="3655" />
-      <location filename="../QScintilla/MiniEditor.py" line="3339" />
+      <location filename="../QScintilla/MiniEditor.py" line="3680" />
+      <location filename="../QScintilla/MiniEditor.py" line="3651" />
+      <location filename="../QScintilla/MiniEditor.py" line="3335" />
       <source>Untitled</source>
       <translation>Beze jména</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
       <source>{0}[*] - {1}</source>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3650" />
+      <location filename="../QScintilla/MiniEditor.py" line="3646" />
       <source>Printing...</source>
       <translation>Tisk...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3666" />
+      <location filename="../QScintilla/MiniEditor.py" line="3662" />
       <source>Printing completed</source>
       <translation>Tisk je hotov</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3668" />
+      <location filename="../QScintilla/MiniEditor.py" line="3664" />
       <source>Error while printing</source>
       <translation>Chyba během tisku</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3671" />
+      <location filename="../QScintilla/MiniEditor.py" line="3667" />
       <source>Printing aborted</source>
       <translation>Tisk byl zrušen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <location filename="../QScintilla/MiniEditor.py" line="3721" />
       <source>Select all</source>
       <translation>Vybrat vše</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3726" />
+      <location filename="../QScintilla/MiniEditor.py" line="3722" />
       <source>Deselect all</source>
       <translation>Zrušit celý výběr</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3739" />
+      <location filename="../QScintilla/MiniEditor.py" line="3735" />
       <source>Languages</source>
       <translation>Jazyky</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3742" />
+      <location filename="../QScintilla/MiniEditor.py" line="3738" />
       <source>No Language</source>
       <translation>Žádný jazyk</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3764" />
+      <location filename="../QScintilla/MiniEditor.py" line="3760" />
       <source>Guessed</source>
       <translation>Odhadem</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3786" />
-      <location filename="../QScintilla/MiniEditor.py" line="3768" />
+      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Alternatives</source>
       <translation>Alternativy</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3783" />
+      <location filename="../QScintilla/MiniEditor.py" line="3779" />
       <source>Alternatives ({0})</source>
       <translation>Alternativy ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <location filename="../QScintilla/MiniEditor.py" line="3810" />
       <source>Pygments Lexer</source>
       <translation>Pygments Lexer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3815" />
+      <location filename="../QScintilla/MiniEditor.py" line="3811" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Použít Pygments lexer.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4336" />
+      <location filename="../QScintilla/MiniEditor.py" line="4332" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4337" />
+      <location filename="../QScintilla/MiniEditor.py" line="4333" />
       <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>
@@ -52961,564 +52989,604 @@
   <context>
     <name>MiscellaneousChecker</name>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="15" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="16" />
       <source>coding magic comment not found</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="18" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="19" />
       <source>unknown encoding ({0}) found in coding magic comment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="21" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="23" />
       <source>copyright notice not present</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="24" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="26" />
       <source>copyright notice contains invalid author</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="27" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="30" />
       <source>"{0}" is a Python builtin and is being shadowed; consider renaming the variable</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="32" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="35" />
       <source>"{0}" is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="37" />
-      <source>unnecessary generator - rewrite as a list comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="41" />
+      <source>unnecessary generator - rewrite as a list comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="45" />
       <source>unnecessary generator - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="44" />
-      <source>unnecessary generator - rewrite as a dict comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="48" />
-      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
+      <source>unnecessary generator - rewrite as a dict comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="52" />
-      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="56" />
+      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="60" />
       <source>unnecessary {0} call - rewrite as a literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="59" />
-      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="63" />
-      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="67" />
+      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="71" />
       <source>unnecessary {0} call around {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="70" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="74" />
       <source>unnecessary {0} call within {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="73" />
-      <source>unnecessary subscript reversal of iterable within {0}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="77" />
+      <source>unnecessary subscript reversal of iterable within {0}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="81" />
       <source>unnecessary {0} literal - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="80" />
-      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="84" />
-      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
+      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="88" />
-      <source>unnecessary list call - remove the outer call to list()</source>
+      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="92" />
+      <source>unnecessary list call - remove the outer call to list()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="96" />
       <source>unnecessary {0} comprehension - rewrite using {0}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="95" />
-      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="99" />
-      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="103" />
+      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="108" />
       <source>sort keys - '{0}' should be before '{1}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="106" />
-      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="110" />
-      <source>use of 'datetime.datetime.today()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="115" />
-      <source>use of 'datetime.datetime.utcnow()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="120" />
-      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="125" />
-      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="129" />
-      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" />
-      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="112" />
+      <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="117" />
+      <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="122" />
+      <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="127" />
+      <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="131" />
+      <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" />
+      <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" />
-      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
+      <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="143" />
-      <source>use of 'datetime.date()' should be avoided.
-Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <source>multiple decorators were used to declare property '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="148" />
-      <source>use of 'datetime.date.today()' should be avoided.
-Use 'datetime.datetime.now(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="153" />
-      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="158" />
-      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="161" />
-      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="165" />
-      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="169" />
-      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="173" />
-      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="177" />
-      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="152" />
+      <source>use of 'datetime.datetime.today()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="157" />
+      <source>use of 'datetime.datetime.utcnow()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="162" />
+      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" />
+      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" />
+      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" />
+      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="181" />
-      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" />
-      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="188" />
-      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="193" />
-      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="198" />
-      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="202" />
-      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="206" />
-      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="210" />
-      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" />
-      <source>Python does not support the unary prefix increment</source>
+      <source>use of 'datetime.date()' should be avoided.
+Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" />
+      <source>use of 'datetime.date.today()' should be avoided.
+Use 'datetime.datetime.now(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" />
+      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="200" />
+      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" />
+      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="207" />
+      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="212" />
+      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="216" />
+      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="220" />
-      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="225" />
-      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="230" />
-      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="224" />
+      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" />
+      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="231" />
+      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" />
-      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
+      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" />
-      <source>do not call getattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="244" />
-      <source>do not call setattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="247" />
-      <source>do not call assert False since python -O removes these calls</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="251" />
-      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" />
-      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="262" />
-      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="267" />
-      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="272" />
-      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="276" />
-      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" />
+      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" />
+      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="254" />
+      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" />
+      <source>Python does not support the unary prefix increment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="264" />
+      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="269" />
+      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="274" />
+      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="280" />
+      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="285" />
-      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="290" />
-      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="296" />
-      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <source>do not call getattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" />
+      <source>do not call setattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" />
+      <source>do not call assert False since python -O removes these calls</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" />
+      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="301" />
-      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="306" />
-      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" />
-      <source>Function definition does not bind loop variable '{0}'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" />
-      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="322" />
-      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="327" />
-      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
+      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" />
+      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" />
+      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="329" />
+      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" />
-      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" />
-      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="347" />
-      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="352" />
-      <source>Except handlers should only be names of exception classes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="356" />
-      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" />
-      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" />
-      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="372" />
-      <source>unncessary f-string</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" />
-      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" />
-      <source>found {0} formatter</source>
+      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="340" />
+      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="345" />
+      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="350" />
+      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="355" />
+      <source>Function definition does not bind loop variable '{0}'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="359" />
+      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" />
+      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" />
+      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" />
-      <source>format string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="381" />
-      <source>docstring does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="384" />
-      <source>other string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" />
-      <source>format call uses too large index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="390" />
-      <source>format call uses missing keyword ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="393" />
-      <source>format call uses keyword arguments but no named entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="397" />
-      <source>format call uses variable arguments but no numbered entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="401" />
-      <source>format call uses implicit and explicit indexes together</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="405" />
-      <source>format call provides unused index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" />
-      <source>format call provides unused keyword ({0})</source>
+      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" />
+      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="391" />
+      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" />
+      <source>Except handlers should only be names of exception classes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="400" />
+      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="406" />
+      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" />
-      <source>logging statement uses string.format()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="414" />
-      <source>logging statement uses '%'</source>
+      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="417" />
-      <source>logging statement uses '+'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" />
-      <source>logging statement uses f-string</source>
+      <source>unncessary f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="418" />
+      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="423" />
-      <source>logging statement uses 'warn' instead of 'warning'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="426" />
-      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <source>found {0} formatter</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" />
+      <source>format string does contain unindexed parameters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="427" />
+      <source>docstring does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="430" />
-      <source>expected these __future__ imports: {0}; but got none</source>
+      <source>other string does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" />
-      <source>gettext import with alias _ found: {0}</source>
+      <source>format call uses too large index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="436" />
-      <source>print statement found</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" />
-      <source>one element tuple found</source>
+      <source>format call uses missing keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" />
+      <source>format call uses keyword arguments but no named entries</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="440" />
-      <source>mutable default argument of type {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="446" />
-      <source>mutable default argument of function call '{0}'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" />
-      <source>None should not be added at any return if function has no return value except None</source>
+      <source>format call uses variable arguments but no numbered entries</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="447" />
+      <source>format call uses implicit and explicit indexes together</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="451" />
+      <source>format call provides unused index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" />
-      <source>an explicit value at every return should be added if function has a return value except None</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="459" />
-      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <source>format call provides unused keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" />
+      <source>logging statement uses string.format()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="461" />
+      <source>logging statement uses '%'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="464" />
-      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="469" />
-      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <source>logging statement uses '+'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" />
+      <source>logging statement uses f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="470" />
+      <source>logging statement uses 'warn' instead of 'warning'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="474" />
+      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="478" />
+      <source>expected these __future__ imports: {0}; but got none</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="482" />
+      <source>gettext import with alias _ found: {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="486" />
+      <source>print statement found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="488" />
+      <source>one element tuple found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="495" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="492" />
+      <source>mutable default argument of type {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="498" />
+      <source>mutable default argument of function call '{0}'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="502" />
+      <source>None should not be added at any return if function has no return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="507" />
+      <source>an explicit value at every return should be added if function has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="512" />
+      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" />
+      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="523" />
+      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="529" />
       <source>commented code lines should be removed</source>
       <translation type="unfinished" />
     </message>
@@ -56749,103 +56817,103 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="193" />
+      <location filename="../PipInterface/Pip.py" line="195" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="216" />
+      <location filename="../PipInterface/Pip.py" line="220" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="217" />
+      <location filename="../PipInterface/Pip.py" line="221" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="257" />
+      <location filename="../PipInterface/Pip.py" line="261" />
       <source>Install PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="304" />
+      <location filename="../PipInterface/Pip.py" line="308" />
       <source>Repair PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="395" />
+      <location filename="../PipInterface/Pip.py" line="399" />
       <source>Upgrade Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="441" />
+      <location filename="../PipInterface/Pip.py" line="445" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="471" />
+      <location filename="../PipInterface/Pip.py" line="475" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="492" />
+      <location filename="../PipInterface/Pip.py" line="496" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="549" />
-      <location filename="../PipInterface/Pip.py" line="521" />
-      <location filename="../PipInterface/Pip.py" line="512" />
+      <location filename="../PipInterface/Pip.py" line="553" />
+      <location filename="../PipInterface/Pip.py" line="525" />
+      <location filename="../PipInterface/Pip.py" line="516" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="550" />
-      <location filename="../PipInterface/Pip.py" line="513" />
+      <location filename="../PipInterface/Pip.py" line="554" />
+      <location filename="../PipInterface/Pip.py" line="517" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="559" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="912" />
+      <location filename="../PipInterface/Pip.py" line="916" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="938" />
-      <location filename="../PipInterface/Pip.py" line="929" />
+      <location filename="../PipInterface/Pip.py" line="942" />
+      <location filename="../PipInterface/Pip.py" line="933" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="930" />
+      <location filename="../PipInterface/Pip.py" line="934" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="962" />
-      <location filename="../PipInterface/Pip.py" line="955" />
+      <location filename="../PipInterface/Pip.py" line="966" />
+      <location filename="../PipInterface/Pip.py" line="959" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="956" />
+      <location filename="../PipInterface/Pip.py" line="960" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="987" />
-      <location filename="../PipInterface/Pip.py" line="979" />
+      <location filename="../PipInterface/Pip.py" line="991" />
+      <location filename="../PipInterface/Pip.py" line="983" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="980" />
+      <location filename="../PipInterface/Pip.py" line="984" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -56868,12 +56936,12 @@
       <translation type="unfinished">Chyby</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="153" />
+      <location filename="../PipInterface/PipDialog.py" line="154" />
       <source>Process Generation Error</source>
       <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="154" />
+      <location filename="../PipInterface/PipDialog.py" line="155" />
       <source>The process {0} could not be started.</source>
       <translation type="unfinished" />
     </message>
@@ -57738,30 +57806,30 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="434" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="435" />
       <source>Getting installed packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="448" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="449" />
       <source>Getting outdated packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1202" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1022" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1009" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="973" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
       <source>Search PyPI</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="975" />
       <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../PipInterface/PipPackagesWidget.py" line="989" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="990" />
       <source>%n package(s) found.</source>
       <translation type="unfinished">
         <numerusform />
@@ -57770,195 +57838,203 @@
       </translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="996" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="997" />
       <source>Showing first {0} packages found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1015" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1016" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1011" />
       <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1024" />
       <source>&lt;p&gt;There were no more results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1204" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1222" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1223" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1224" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1225" />
       <source>Install Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1227" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1228" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1230" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1231" />
       <source>Repair Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1237" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1238" />
       <source>Install</source>
       <translation type="unfinished">Instalovat</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1402" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1239" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1403" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1240" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1242" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1243" />
       <source>Install Local Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1245" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1246" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1252" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1253" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1254" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1255" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1257" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1258" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1260" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1261" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1264" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1265" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1271" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1272" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1273" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1274" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1276" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1277" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1279" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1280" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1282" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1283" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1299" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1300" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1303" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1304" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1307" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1308" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1311" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1312" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1318" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1319" />
       <source>Edit User Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1321" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1322" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1326" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1327" />
       <source>Configure...</source>
       <translation type="unfinished">Konfigurovat...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1545" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1532" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1521" />
-      <source>Edit Configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1546" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1533" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1522" />
+      <source>Edit Configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1547" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1534" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1523" />
       <source>No valid configuration path determined. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1714" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1736" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1735" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1757" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1760" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1862" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1843" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1890" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1865" />
       <source>unknown</source>
       <translation type="unfinished">neznámý</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1887" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
   </context>
   <context>
+    <name>PipPackagesWindow</name>
+    <message>
+      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <source>Manage Packages</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>PipPage</name>
     <message>
       <location filename="../Preferences/ConfigurationPages/PipPage.py" line="31" />
@@ -59351,7 +59427,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="471" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -60988,8 +61064,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6671" />
-      <location filename="../Project/Project.py" line="6642" />
+      <location filename="../Project/Project.py" line="6668" />
+      <location filename="../Project/Project.py" line="6639" />
       <location filename="../Project/Project.py" line="6593" />
       <location filename="../Project/Project.py" line="4800" />
       <source>Execute Make</source>
@@ -61011,7 +61087,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6648" />
+      <location filename="../Project/Project.py" line="6645" />
       <location filename="../Project/Project.py" line="4819" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
@@ -61531,22 +61607,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6643" />
+      <location filename="../Project/Project.py" line="6640" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6651" />
+      <location filename="../Project/Project.py" line="6648" />
       <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="6656" />
+      <location filename="../Project/Project.py" line="6653" />
       <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="6672" />
+      <location filename="../Project/Project.py" line="6669" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
@@ -64440,7 +64516,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="424" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="434" />
       <location filename="../DataViews/PyCoverageDialog.py" line="69" />
       <source>LCOV Report</source>
       <translation type="unfinished" />
@@ -64470,12 +64546,12 @@
       </translation>
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="425" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="435" />
       <source>Enter the path of the output file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="429" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="439" />
       <source>LCOV Files (*.lcov);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -64752,7 +64828,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="361" />
+      <location filename="../DataViews/PyProfileDialog.py" line="371" />
       <location filename="../DataViews/PyProfileDialog.py" line="91" />
       <source>Exclude Python Library</source>
       <translation>Vyloučit Python knihovny</translation>
@@ -64803,7 +64879,7 @@
       <translation>&lt;p&gt;Profilovací data nelze ze souboru &lt;b&gt;{0}&lt;/b&gt; načíst.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="357" />
+      <location filename="../DataViews/PyProfileDialog.py" line="367" />
       <source>Include Python Library</source>
       <translation>Zahrnout Python knihovnu</translation>
     </message>
@@ -66176,38 +66252,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="213" />
+      <location filename="../UI/PythonAstViewer.py" line="214" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="223" />
+      <location filename="../UI/PythonAstViewer.py" line="224" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="229" />
+      <location filename="../UI/PythonAstViewer.py" line="230" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="247" />
+      <location filename="../UI/PythonAstViewer.py" line="248" />
       <source>Module</source>
       <translation type="unfinished">Modul</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="279" />
+      <location filename="../UI/PythonAstViewer.py" line="280" />
       <source>{0}: {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="296" />
-      <location filename="../UI/PythonAstViewer.py" line="286" />
+      <location filename="../UI/PythonAstViewer.py" line="297" />
+      <location filename="../UI/PythonAstViewer.py" line="287" />
       <source>{0},{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="303" />
+      <location filename="../UI/PythonAstViewer.py" line="304" />
       <source>{0}  -  {1}</source>
       <translation type="unfinished" />
     </message>
@@ -68773,7 +68849,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="716" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="714" />
       <source>Initializing new queue repository</source>
       <translation type="unfinished" />
     </message>
@@ -69751,50 +69827,82 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1341" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1555" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
       <source>Active</source>
       <translation type="unfinished">Aktivní</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1345" />
-      <source>Status</source>
-      <translation type="unfinished">Status</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1349" />
-      <source>Hostname</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1350" />
-      <source>IPv4 Address</source>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1343" />
+      <source>Name</source>
+      <translation type="unfinished">Jméno</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1568" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1344" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1347" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Public</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>MTU</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>{0} Bytes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1556" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1559" />
+      <source>Status</source>
+      <translation type="unfinished">Status</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1563" />
+      <source>Hostname</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1564" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1565" />
       <source>Netmask</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1352" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1566" />
       <source>Gateway</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1353" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1567" />
       <source>DNS</source>
       <translation type="unfinished" />
     </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1354" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
   </context>
   <context>
     <name>RccCompilerOptionsDialog</name>
@@ -70873,7 +70981,7 @@
       <translation>Rozlišit velké a malé znaky</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SearchWidget.py" line="98" />
+      <location filename="../WebBrowser/SearchWidget.py" line="100" />
       <source>Expression was not found.</source>
       <translation>Výraz nebyl nalezen.</translation>
     </message>
@@ -72257,45 +72365,45 @@
       <translation>Konfigurovat...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2063" />
-      <location filename="../QScintilla/Shell.py" line="1845" />
+      <location filename="../QScintilla/Shell.py" line="2059" />
+      <location filename="../QScintilla/Shell.py" line="1841" />
       <location filename="../QScintilla/Shell.py" line="408" />
       <source>Project</source>
       <translation type="unfinished">Projekt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="810" />
+      <location filename="../QScintilla/Shell.py" line="806" />
       <source>Select History</source>
       <translation>Vybrat historii</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="811" />
+      <location filename="../QScintilla/Shell.py" line="807" />
       <source>Select the history entry to execute (most recent shown last).</source>
       <translation>Vybrat vstup historie pro vykonání (nejaktuálnější zobrazen poslední).</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Shell.py" line="872" />
+      <source>Passive Debug Mode</source>
+      <translation>Pasivní debug mód</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="873" />
+      <source>
+Not connected</source>
+      <translation>Nepřipojen</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Shell.py" line="876" />
-      <source>Passive Debug Mode</source>
-      <translation>Pasivní debug mód</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="877" />
-      <source>
-Not connected</source>
-      <translation>Nepřipojen</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="880" />
       <source>No.</source>
       <translation>Č.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="882" />
+      <location filename="../QScintilla/Shell.py" line="878" />
       <source>{0} on {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="929" />
+      <location filename="../QScintilla/Shell.py" line="925" />
       <source>Exception "{0}"
 {1}
 File: {2}, Line: {3}
@@ -72303,88 +72411,88 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="938" />
+      <location filename="../QScintilla/Shell.py" line="934" />
       <source>Exception "{0}"
 {1}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="958" />
+      <location filename="../QScintilla/Shell.py" line="954" />
       <source>Unspecified syntax error.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="961" />
+      <location filename="../QScintilla/Shell.py" line="957" />
       <source>Syntax error "{1}" in file {0} at line {2}, character {3}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="985" />
+      <location filename="../QScintilla/Shell.py" line="981" />
       <source>Signal "{0}" generated in file {1} at line {2}.
 Function: {3}({4})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1067" />
+      <location filename="../QScintilla/Shell.py" line="1063" />
       <source>StdOut: {0}</source>
       <translation>StdOut: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1075" />
+      <location filename="../QScintilla/Shell.py" line="1071" />
       <source>StdErr: {0}</source>
       <translation>StdErr: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1101" />
+      <location filename="../QScintilla/Shell.py" line="1097" />
       <source>&lt;{0}&gt; {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1888" />
+      <location filename="../QScintilla/Shell.py" line="1884" />
       <source>Available Virtual Environments:
 {0}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1931" />
-      <location filename="../QScintilla/Shell.py" line="1895" />
+      <location filename="../QScintilla/Shell.py" line="1927" />
+      <location filename="../QScintilla/Shell.py" line="1891" />
       <source>Current Virtual Environment: '{0}'
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2203" />
+      <location filename="../QScintilla/Shell.py" line="2199" />
       <source>Drop Error</source>
       <translation>Zahodit chybu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2204" />
+      <location filename="../QScintilla/Shell.py" line="2200" />
       <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="2446" />
-      <location filename="../QScintilla/Shell.py" line="2431" />
-      <location filename="../QScintilla/Shell.py" line="2412" />
+      <location filename="../QScintilla/Shell.py" line="2442" />
+      <location filename="../QScintilla/Shell.py" line="2427" />
+      <location filename="../QScintilla/Shell.py" line="2408" />
       <source>Save Shell Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2414" />
+      <location filename="../QScintilla/Shell.py" line="2410" />
       <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="2432" />
+      <location filename="../QScintilla/Shell.py" line="2428" />
       <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="2447" />
+      <location filename="../QScintilla/Shell.py" line="2443" />
       <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>
@@ -72629,335 +72737,335 @@
   <context>
     <name>ShellWindow</name>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1275" />
-      <location filename="../QScintilla/ShellWindow.py" line="54" />
+      <location filename="../QScintilla/ShellWindow.py" line="1279" />
+      <location filename="../QScintilla/ShellWindow.py" line="62" />
       <source>eric Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="220" />
-      <source>Quit</source>
-      <translation type="unfinished">Konec</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="222" />
-      <source>&amp;Quit</source>
-      <translation type="unfinished">&amp;Konec</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="223" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="228" />
-      <source>Quit the Shell</source>
-      <translation type="unfinished">Ukončit IDE</translation>
+      <source>Quit</source>
+      <translation type="unfinished">Konec</translation>
     </message>
     <message>
       <location filename="../QScintilla/ShellWindow.py" line="230" />
+      <source>&amp;Quit</source>
+      <translation type="unfinished">&amp;Konec</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="231" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="236" />
+      <source>Quit the Shell</source>
+      <translation type="unfinished">Ukončit IDE</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="238" />
       <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="237" />
-      <source>New Window</source>
-      <translation type="unfinished">Nové okno</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="239" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished">&amp;Nové okno</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="240" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="245" />
-      <source>Open a new Shell window</source>
-      <translation type="unfinished" />
+      <source>New Window</source>
+      <translation type="unfinished">Nové okno</translation>
     </message>
     <message>
       <location filename="../QScintilla/ShellWindow.py" line="247" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished">&amp;Nové okno</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="248" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="253" />
+      <source>Open a new Shell window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="255" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="258" />
-      <location filename="../QScintilla/ShellWindow.py" line="256" />
-      <source>Restart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="264" />
-      <source>Restart the shell</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="266" />
+      <location filename="../QScintilla/ShellWindow.py" line="264" />
+      <source>Restart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="272" />
+      <source>Restart the shell</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="274" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="278" />
-      <location filename="../QScintilla/ShellWindow.py" line="276" />
+      <location filename="../QScintilla/ShellWindow.py" line="286" />
+      <location filename="../QScintilla/ShellWindow.py" line="284" />
       <source>Restart and Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="285" />
+      <location filename="../QScintilla/ShellWindow.py" line="293" />
       <source>Clear the window and restart the shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="288" />
+      <location filename="../QScintilla/ShellWindow.py" line="296" />
       <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="298" />
+      <location filename="../QScintilla/ShellWindow.py" line="306" />
       <source>Save Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="300" />
+      <location filename="../QScintilla/ShellWindow.py" line="308" />
       <source>Save Contents...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="309" />
+      <location filename="../QScintilla/ShellWindow.py" line="317" />
       <source>Save the current contents of the shell to a file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="312" />
+      <location filename="../QScintilla/ShellWindow.py" line="320" />
       <source>&lt;b&gt;Save Contents&lt;/b&gt;&lt;p&gt;Save the current contents of the shell to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="345" />
+      <location filename="../QScintilla/ShellWindow.py" line="353" />
       <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="../QScintilla/ShellWindow.py" line="367" />
+      <location filename="../QScintilla/ShellWindow.py" line="375" />
       <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Kopírovat&lt;/b&gt;&lt;p&gt;Kopírovat vybraný text do schránky.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="389" />
+      <location filename="../QScintilla/ShellWindow.py" line="397" />
       <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="411" />
+      <location filename="../QScintilla/ShellWindow.py" line="419" />
       <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="709" />
-      <location filename="../QScintilla/ShellWindow.py" line="708" />
+      <location filename="../QScintilla/ShellWindow.py" line="713" />
+      <location filename="../QScintilla/ShellWindow.py" line="712" />
       <source>Move forward one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="721" />
-      <location filename="../QScintilla/ShellWindow.py" line="720" />
+      <location filename="../QScintilla/ShellWindow.py" line="725" />
+      <location filename="../QScintilla/ShellWindow.py" line="724" />
       <source>Move back one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1115" />
+      <location filename="../QScintilla/ShellWindow.py" line="1119" />
       <source>Show History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1117" />
+      <location filename="../QScintilla/ShellWindow.py" line="1121" />
       <source>&amp;Show History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1123" />
-      <source>Show the shell history in a dialog</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1127" />
+      <source>Show the shell history in a dialog</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1131" />
       <source>Clear History</source>
       <translation type="unfinished">Vyčistit historii</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1129" />
+      <location filename="../QScintilla/ShellWindow.py" line="1133" />
       <source>&amp;Clear History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1135" />
-      <source>Clear the shell history</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1139" />
+      <source>Clear the shell history</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1143" />
       <source>Select History Entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1140" />
+      <location filename="../QScintilla/ShellWindow.py" line="1144" />
       <source>Select History &amp;Entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1147" />
+      <location filename="../QScintilla/ShellWindow.py" line="1151" />
       <source>Select an entry of the shell history</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
+      <location filename="../QScintilla/ShellWindow.py" line="1160" />
       <source>About</source>
       <translation type="unfinished">O aplikaci</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
-      <source>&amp;About</source>
-      <translation type="unfinished">O &amp;aplikaci</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1158" />
-      <source>Display information about this software</source>
-      <translation type="unfinished">Zobrazit informace a tomto software</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1160" />
+      <source>&amp;About</source>
+      <translation type="unfinished">O &amp;aplikaci</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1162" />
+      <source>Display information about this software</source>
+      <translation type="unfinished">Zobrazit informace a tomto software</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1164" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;O aplikaci&lt;/b&gt;&lt;p&gt;Zobrazí se informace o tomto software.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About Qt</source>
       <translation type="unfinished">O Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About &amp;Qt</source>
       <translation type="unfinished">O &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1172" />
+      <location filename="../QScintilla/ShellWindow.py" line="1176" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished">Zobrazit informace o Qt toolkitu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1175" />
+      <location filename="../QScintilla/ShellWindow.py" line="1179" />
       <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="../QScintilla/ShellWindow.py" line="1184" />
+      <location filename="../QScintilla/ShellWindow.py" line="1188" />
       <source>What's This?</source>
       <translation type="unfinished">Co je to?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1186" />
+      <location filename="../QScintilla/ShellWindow.py" line="1190" />
       <source>&amp;What's This?</source>
       <translation type="unfinished">&amp;Co je to?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1187" />
+      <location filename="../QScintilla/ShellWindow.py" line="1191" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1192" />
+      <location filename="../QScintilla/ShellWindow.py" line="1196" />
       <source>Context sensitive help</source>
       <translation type="unfinished">Kontextově senzitivní nápověda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1194" />
+      <location filename="../QScintilla/ShellWindow.py" line="1198" />
       <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="../QScintilla/ShellWindow.py" line="1273" />
+      <location filename="../QScintilla/ShellWindow.py" line="1277" />
       <source>eric Shell [{0}]</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="1346" />
       <source>About eric Shell Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1343" />
+      <location filename="../QScintilla/ShellWindow.py" line="1347" />
       <source>The eric Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1370" />
+      <location filename="../QScintilla/ShellWindow.py" line="1374" />
       <source>&amp;File</source>
       <translation type="unfinished">S&amp;oubor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1381" />
+      <location filename="../QScintilla/ShellWindow.py" line="1385" />
       <source>&amp;Edit</source>
       <translation type="unfinished">&amp;Edit</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1392" />
+      <location filename="../QScintilla/ShellWindow.py" line="1396" />
       <source>&amp;View</source>
       <translation type="unfinished">Poh&amp;led</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1399" />
+      <location filename="../QScintilla/ShellWindow.py" line="1403" />
       <source>Histor&amp;y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1406" />
+      <location filename="../QScintilla/ShellWindow.py" line="1410" />
       <source>&amp;Start</source>
       <translation type="unfinished">&amp;Start</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1412" />
+      <location filename="../QScintilla/ShellWindow.py" line="1416" />
       <source>&amp;Help</source>
       <translation type="unfinished">&amp;Nápověda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1445" />
+      <location filename="../QScintilla/ShellWindow.py" line="1449" />
       <source>File</source>
       <translation type="unfinished">Soubor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1455" />
+      <location filename="../QScintilla/ShellWindow.py" line="1459" />
       <source>Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1461" />
+      <location filename="../QScintilla/ShellWindow.py" line="1465" />
       <source>Find</source>
       <translation type="unfinished">Hledat</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1466" />
+      <location filename="../QScintilla/ShellWindow.py" line="1470" />
       <source>View</source>
       <translation type="unfinished">Pohled</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1472" />
+      <location filename="../QScintilla/ShellWindow.py" line="1476" />
       <source>History</source>
       <translation type="unfinished">Historie</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1477" />
+      <location filename="../QScintilla/ShellWindow.py" line="1481" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1499" />
+      <location filename="../QScintilla/ShellWindow.py" line="1503" />
       <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -73315,24 +73423,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="363" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="345" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="324" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
       <source>Edit shortcuts</source>
       <translation>Editovat kláv.zkratky</translation>
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="326" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; byla již spojena s akcí &lt;b&gt;{1}&lt;/b&gt;. Odebrat toto spojení?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="347" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; skrývá akci &lt;b&gt;{1}&lt;/b&gt;. Odebrat toto spojení?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="365" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; je skrytá v akci &lt;b&gt;{1}&lt;/b&gt;. Odebrat toto spojení?&lt;/p&gt;</translation>
     </message>
@@ -76491,328 +76599,328 @@
       <translation>Projekt se nepodařilo stáhnout (checkout) z repozitáře. &lt;br /&gt;Obnovuji původní obsah.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="310" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="327" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="312" />
       <source>Importing project into Subversion repository</source>
       <translation>Importovat projekt do Subversion repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="328" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="330" />
       <source>Imported revision {0}.
 </source>
       <translation>Inportovaná revize {0}.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="362" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="364" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="367" />
       <source>Subversion Checkout</source>
       <translation />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="420" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="433" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="422" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="368" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation>Tag musí být normální tag (tagy) nebo tag větve (větví). Prosím vyberte ze seznamu.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="389" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="388" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="391" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="390" />
       <source>Checking project out of Subversion repository</source>
       <translation>Checkout projektu ze Subversion repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="419" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="432" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="421" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="434" />
       <source>Subversion Export</source>
       <translation />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="443" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="445" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="456" />
       <source>Exporting project from Subversion repository</source>
       <translation>Exportuje projekt z Subversion repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="514" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="535" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="516" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="537" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="515" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="517" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="538" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="578" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="580" />
       <source>Commiting changes to Subversion repository</source>
       <translation>Commit změn do Subversion repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="614" />
       <source>Committed revision {0}.</source>
       <translation>Zapsaná revize {0}.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="638" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="684" />
       <source>Synchronizing with the Subversion repository</source>
       <translation>Synchronizovat se Subversion repozitářem</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="735" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="793" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation>Přidat soubory/adresáře do Subversion repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="898" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="900" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation>Přidat strom adresářů do Subversion repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="859" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="937" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="939" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation>Odebrat soubory/adresáře ze Subversion repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="918" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="920" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="998" />
       <source>Moving {0}</source>
       <translation>Přesun {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1177" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1148" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1027" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="998" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1292" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1124" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1094" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1179" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1029" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1294" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1265" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1126" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1096" />
       <source>Subversion Error</source>
       <translation>Subversion chyba</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1095" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1001" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1097" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation>Z pracovní kopie nelze získat URL repozitáře projektu. Operace tagování bude zrušena</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1028" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1125" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1030" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1127" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation>URL repozitáře projektu má neplatný formát. Operace tagování bude zrušena</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1062" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1161" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1147" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1149" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation>Tagování {0} v Subversion repozitáři</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1324" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1172" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1326" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1174" />
       <source>Revision {0}.
 </source>
       <translation>Revize {0}.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1106" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1095" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1197" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1108" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1097" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
       <source>Revert changes</source>
       <translation type="unfinished">Vrátit změny</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1096" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1198" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1200" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1107" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1109" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1211" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1113" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1115" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1219" />
       <source>Reverting changes</source>
       <translation>Navrácení změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1149" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1264" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1151" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1266" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation>Z pracovní kopie nelze získat URL repozitáře projektu. Operace přepínání bude zrušena</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1178" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1293" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1180" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1295" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation>URL repozitáře projektu má neplatný formát. Operace přepínání bude zrušena</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1207" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1318" />
       <source>Switching to {0}</source>
       <translation>Přepínání do {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1416" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1275" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1418" />
       <source>Merging {0}</source>
       <translation>Sloučení {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1543" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1723" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1544" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1725" />
       <source>Cleaning up {0}</source>
       <translation>Vyčištění {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1573" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1763" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1765" />
       <source>Subversion command</source>
       <translation>Subversion příkaz</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1744" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1883" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1747" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1887" />
       <source>Resolving conficts</source>
       <translation>Řešení konfliktů</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1924" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1928" />
       <source>Copying {0}</source>
       <translation>Kopírování {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1844" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1823" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2000" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1847" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1987" />
       <source>Subversion Set Property</source>
       <translation>Nastavit Subversion vlastnost</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1870" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2045" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1988" />
       <source>You have to supply a property name. Aborting.</source>
       <translation>Musíte doplnit jméno vlastnosti. Zrušeno.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2023" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2027" />
       <source>Property set.</source>
       <translation>Vlastnost nastavena.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1887" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1858" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2061" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2044" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1890" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1872" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2048" />
       <source>Subversion Delete Property</source>
       <translation>Smazat Subversion vlastnost</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2079" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2083" />
       <source>Property deleted.</source>
       <translation>Vlastnost smazána.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2114" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2102" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2093" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2294" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2105" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2096" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2310" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2298" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2289" />
       <source>Subversion Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2115" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2307" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2118" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2311" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nelze přečíst.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2348" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2352" />
       <source>Subversion Lock</source>
       <translation>Subversion zámek</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2349" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2353" />
       <source>Enter lock comment</source>
       <translation>Zadejte komentář zámku</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2165" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2370" />
       <source>Locking in the Subversion repository</source>
       <translation>Zamknout v Subversion repozitáři</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2192" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2195" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2411" />
       <source>Unlocking in the Subversion repository</source>
       <translation>Odemknout v Subversion repozitáři</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2217" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2458" />
       <source>Relocating</source>
       <translation />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2235" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2479" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2238" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2483" />
       <source>Repository Browser</source>
       <translation>Prohlížeč repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2236" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2480" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2239" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2484" />
       <source>Enter the repository URL.</source>
       <translation>Zadejte URL repozitáře.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2269" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2505" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2309" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2272" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2509" />
       <source>Remove from changelist</source>
       <translation>Odebrat ze seznamu změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2285" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2544" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2533" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2548" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2537" />
       <source>Add to changelist</source>
       <translation>Přidat do seznamu změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2534" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2289" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2538" />
       <source>Enter name of the changelist:</source>
       <translation>Zadejte název seznamu změn:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2373" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2598" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2602" />
       <source>Upgrade</source>
       <translation type="unfinished" />
     </message>
@@ -76993,7 +77101,7 @@
       <translation>Proces svn skončil exit kódem {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2052" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="181" />
       <source>The svn process did not finish within 30s.</source>
       <translation>Proces svn neskončil do 30s.</translation>
@@ -77004,12 +77112,12 @@
       <translation>Nelze spustit svn proces.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1862" />
       <source>Enter property name</source>
       <translation>Zadejte jméno vlastnosti</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2051" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2054" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -77636,27 +77744,27 @@
       <translation>Spouštím proces '{0}'...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="208" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="284" />
       <source>There is no difference.</source>
       <translation>Žádné rozdíly nebyly nalezeny.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="223" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="342" />
       <source>&lt;Start&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="225" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="343" />
       <source>&lt;End&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="410" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="444" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="426" />
@@ -77664,19 +77772,19 @@
       <translation>Uložit Diff</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="378" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="428" />
       <source>Patch Files (*.diff)</source>
       <translation>Patch soubory (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="396" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="445" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="412" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="461" />
       <source>&lt;p&gt;The patch 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;Patch soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
@@ -77932,7 +78040,7 @@
       <translation>Vybrat pole pro filtrování</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="566" />
@@ -77942,7 +78050,7 @@
       <translation>Revize</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="674" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="563" />
@@ -79947,7 +80055,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="654" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.ui" line="0" />
@@ -80171,8 +80279,8 @@
       <translation>Přidat do seznamu změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1057" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="129" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="915" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="894" />
@@ -80181,7 +80289,7 @@
       <translation>Odebrat ze seznamu změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="134" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="818" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="134" />
@@ -80189,7 +80297,7 @@
       <translation>Zamknout</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="136" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="837" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="136" />
@@ -80273,7 +80381,7 @@
       <translation>ano</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="491" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="562" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="491" />
@@ -80281,34 +80389,34 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="798" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="655" />
       <source>There are no entries selected to be committed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
-      <source>Add</source>
-      <translation>Přidat</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
+      <source>Add</source>
+      <translation>Přidat</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="840" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="697" />
       <source>There are no unversioned entries available/selected.</source>
       <translation>Položky mimo verzi nejsou dostupné/vybrány.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="888" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="862" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="720" />
       <source>Revert</source>
       <translation>Vrátit</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="934" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="912" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="864" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="791" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="769" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="721" />
@@ -80316,41 +80424,41 @@
       <translation>Nezapsané změny nejsou dostupné/vybrané.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="747" />
       <source>There are no missing entries available/selected.</source>
       <translation type="unfinished">Chybějící záznamy nejsou dostupné/vybrány.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="768" />
       <source>Differences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="939" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="932" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="797" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="790" />
-      <source>Side-by-Side Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="790" />
+      <source>Side-by-Side Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="941" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="798" />
       <source>Only one file with uncommitted changes must be selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="819" />
       <source>There are no unlocked files available/selected.</source>
       <translation>Odemčené soubory nejsou dostupné/vybrané.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="981" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="876" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="857" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="838" />
@@ -80358,25 +80466,25 @@
       <translation>Zamčené soubory nejsou dostupné/vybrané.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="998" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="856" />
       <source>Break Lock</source>
       <translation>Prolomit zámek</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1017" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="875" />
       <source>Steal Lock</source>
       <translation>Scizit zámek</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1038" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="895" />
       <source>There are no files available/selected not belonging to a changelist.</source>
       <translation>Nejsou dostupné/vybrány soubory, které nepatří do seznamu změn.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1059" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="916" />
       <source>There are no files available/selected belonging to a changelist.</source>
       <translation>Nejsou dostupné/vybrány soubory, které patří do seznamu změn.</translation>
@@ -80504,7 +80612,7 @@
   <context>
     <name>SvnStatusMonitorThread</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="141" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="143" />
       <source>Subversion status checked successfully (using pysvn)</source>
       <translation>Subversion status byl úspěšně zkontrolován (s použitím pysvn)</translation>
     </message>
@@ -82107,7 +82215,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="187" />
+      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="188" />
       <source>&lt;font color="#FF0000"&gt;&lt;b&gt;Error:&lt;/b&gt; {0}&lt;/font&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -83135,7 +83243,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="565" />
+      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="563" />
       <source>Show Tab Manager</source>
       <translation type="unfinished" />
     </message>
@@ -83701,47 +83809,47 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="743" />
+      <location filename="../Tasks/TaskViewer.py" line="744" />
       <source>Activate task filter</source>
       <translation>Aktivovat filtr úloh</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="744" />
+      <location filename="../Tasks/TaskViewer.py" line="745" />
       <source>The task filter doesn't have any active filters. Do you want to configure the filter settings?</source>
       <translation>Filtr úloh nemá žádný aktivní. Chcete konfigurovat nastavení filtru?</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="778" />
-      <source>Scan Filter Patterns</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="779" />
+      <source>Scan Filter Patterns</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="780" />
       <source>Enter filename patterns of files to be excluded separated by a comma:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="821" />
-      <source>Extracting project tasks...</source>
-      <translation>Extrahovat úlohy projektu...</translation>
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="822" />
+      <source>Extracting project tasks...</source>
+      <translation>Extrahovat úlohy projektu...</translation>
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="823" />
       <source>Abort</source>
       <translation>Přerušit</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="825" />
+      <location filename="../Tasks/TaskViewer.py" line="826" />
       <source>%v/%m Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="829" />
+      <location filename="../Tasks/TaskViewer.py" line="830" />
       <source>Tasks</source>
       <translation type="unfinished">Úlohy</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="836" />
+      <location filename="../Tasks/TaskViewer.py" line="837" />
       <source>Extracting project tasks...
 {0}</source>
       <translation>Extrahování úloh projektu....{0}</translation>
@@ -83883,7 +83991,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="316" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="318" />
       <location filename="../MicroPython/Devices/TeensyDevices.py" line="154" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -83924,17 +84032,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="317" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="319" />
       <source>&lt;p&gt;Teensy 4.0 and Teensy 4.1 are flashed using the 'Teensy Loader' application. Make sure you downloaded the MicroPython or CircuitPython .hex file.&lt;/p&gt;&lt;p&gt;See &lt;a href="{0}"&gt;the PJRC Teensy web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="339" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="341" />
       <source>Start 'Teensy Loader'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="340" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="342" />
       <source>&lt;p&gt;The 'Teensy Loader' application &lt;b&gt;teensy&lt;/b&gt; could not be started. Ensure it is in the application search path or start it manually.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -84160,78 +84268,78 @@
       <translation>Konfigurovat...</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="531" />
+      <location filename="../Templates/TemplateViewer.py" line="533" />
       <source>Remove Template</source>
       <translation>Odebrat šablonu</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="532" />
+      <location filename="../Templates/TemplateViewer.py" line="534" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Opravdu chcete odebrat &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="560" />
-      <source>Import Templates</source>
-      <translation>Importovat šablony</translation>
-    </message>
-    <message>
       <location filename="../Templates/TemplateViewer.py" line="562" />
+      <source>Import Templates</source>
+      <translation>Importovat šablony</translation>
+    </message>
+    <message>
+      <location filename="../Templates/TemplateViewer.py" line="564" />
       <source>Templates Files (*.ecj);;XML Templates Files (*.e4c);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="595" />
-      <location filename="../Templates/TemplateViewer.py" line="579" />
+      <location filename="../Templates/TemplateViewer.py" line="597" />
+      <location filename="../Templates/TemplateViewer.py" line="581" />
       <source>Export Templates</source>
       <translation>Exportovat šablony</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="581" />
+      <location filename="../Templates/TemplateViewer.py" line="583" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="596" />
+      <location filename="../Templates/TemplateViewer.py" line="598" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="614" />
+      <location filename="../Templates/TemplateViewer.py" line="616" />
       <source>Reload Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="615" />
+      <location filename="../Templates/TemplateViewer.py" line="617" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
       <source>Template Help</source>
       <translation>Nápověda šablony</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="883" />
+      <location filename="../Templates/TemplateViewer.py" line="885" />
       <source>Edit Template Group</source>
       <translation>Editovat skupinu šablon</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="884" />
+      <location filename="../Templates/TemplateViewer.py" line="886" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Skupina šablon se jménem &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1005" />
+      <location filename="../Templates/TemplateViewer.py" line="1007" />
       <source>Read Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1006" />
+      <location filename="../Templates/TemplateViewer.py" line="1008" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor se šablonami &lt;b&gt;{0}&lt;/b&gt; nelze přečíst.&lt;/p&gt;</translation>
     </message>
@@ -87080,99 +87188,99 @@
   <context>
     <name>UMLGraphicsView</name>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="90" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="94" />
       <source>Delete shapes</source>
       <translation>Smazat tvary</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="96" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="100" />
       <source>Increase width by {0} points</source>
       <translation>Zvětšit šířku o {0} body</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="103" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="107" />
       <source>Increase height by {0} points</source>
       <translation>Zvětšit výšku o {0} body</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="110" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="114" />
       <source>Decrease width by {0} points</source>
       <translation>Zmenšit šířku o {0} body</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="117" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="121" />
       <source>Decrease height by {0} points</source>
       <translation>Zmenšit výšku o {0} body</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="123" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="127" />
       <source>Set size</source>
       <translation>Nastavit velikost</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="128" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="132" />
       <source>Re-Scan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="133" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="137" />
       <source>Re-Layout</source>
       <translation>Znovu-Layout</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="138" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="142" />
       <source>Align Left</source>
       <translation>Zarovnat vlevo</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="145" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="149" />
       <source>Align Center Horizontal</source>
       <translation>Zarovnat vodorovně na střed</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="152" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="156" />
       <source>Align Right</source>
       <translation>Zarovnat vpravo</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="158" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="162" />
       <source>Align Top</source>
       <translation>Zarovnat nahoru</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="165" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="169" />
       <source>Align Center Vertical</source>
       <translation>Zarovnat svisle na střed</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="172" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="176" />
       <source>Align Bottom</source>
       <translation>Zarovnat dolu</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="235" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="240" />
       <source>Graphics</source>
       <translation>Grafika</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="395" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="382" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="365" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="400" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="387" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="370" />
       <source>Save Diagram</source>
       <translation>Uložit diagram</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="367" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="372" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="383" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="388" />
       <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="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="401" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit.&lt;/p&gt;</translation>
     </message>
@@ -87898,7 +88006,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7688" />
+      <location filename="../UI/UserInterface.py" line="7687" />
       <location filename="../UI/UserInterface.py" line="1934" />
       <location filename="../UI/UserInterface.py" line="1927" />
       <source>Load session</source>
@@ -89185,8 +89293,8 @@
       <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="7373" />
-      <location filename="../UI/UserInterface.py" line="7354" />
+      <location filename="../UI/UserInterface.py" line="7372" />
+      <location filename="../UI/UserInterface.py" line="7353" />
       <location filename="../UI/UserInterface.py" line="3358" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exportovat klávesové zkratky</translation>
@@ -89207,7 +89315,7 @@
       <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="7392" />
+      <location filename="../UI/UserInterface.py" line="7391" />
       <location filename="../UI/UserInterface.py" line="3377" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Import klávesových zkratek</translation>
@@ -89923,186 +90031,186 @@
       <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="6609" />
+      <location filename="../UI/UserInterface.py" line="6610" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Proces '{0}' byl ukončen.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6896" />
-      <location filename="../UI/UserInterface.py" line="6834" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6716" />
-      <location filename="../UI/UserInterface.py" line="6652" />
-      <source>Documentation Missing</source>
-      <translation>Dokumentace chybí</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6897" />
       <location filename="../UI/UserInterface.py" line="6835" />
       <location filename="../UI/UserInterface.py" line="6791" />
       <location filename="../UI/UserInterface.py" line="6717" />
       <location filename="../UI/UserInterface.py" line="6653" />
+      <source>Documentation Missing</source>
+      <translation>Dokumentace chybí</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6898" />
+      <location filename="../UI/UserInterface.py" line="6836" />
+      <location filename="../UI/UserInterface.py" line="6792" />
+      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6654" />
       <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="6878" />
-      <location filename="../UI/UserInterface.py" line="6760" />
-      <source>Documentation</source>
-      <translation>Dokumentace</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6761" />
-      <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="6879" />
+      <location filename="../UI/UserInterface.py" line="6761" />
+      <source>Documentation</source>
+      <translation>Dokumentace</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6762" />
+      <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="6880" />
       <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="7056" />
+      <location filename="../UI/UserInterface.py" line="6993" />
+      <source>Start Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6994" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7057" />
-      <location filename="../UI/UserInterface.py" line="6994" />
-      <source>Start Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6995" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7058" />
       <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="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7374" />
+      <location filename="../UI/UserInterface.py" line="7373" />
       <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="7394" />
+      <location filename="../UI/UserInterface.py" line="7393" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7576" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7577" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7578" />
       <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor s úlohami &lt;b&gt;{0}&lt;/b&gt; nelze načíst.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
+      <location filename="../UI/UserInterface.py" line="7620" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7649" />
-      <location filename="../UI/UserInterface.py" line="7622" />
-      <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="7648" />
+      <location filename="../UI/UserInterface.py" line="7621" />
+      <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="7647" />
       <source>Read session</source>
       <translation>Načíst relaci</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7665" />
+      <location filename="../UI/UserInterface.py" line="7664" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7667" />
+      <location filename="../UI/UserInterface.py" line="7666" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7690" />
+      <location filename="../UI/UserInterface.py" line="7689" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7735" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7736" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7737" />
       <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="8106" />
+      <source>Drop Error</source>
+      <translation>Zahodit chybu</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8107" />
-      <source>Drop Error</source>
-      <translation>Zahodit chybu</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8108" />
       <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="8288" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8289" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8290" />
       <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="8346" />
+      <location filename="../UI/UserInterface.py" line="8333" />
+      <source>First time usage</source>
+      <translation>Spuštěno poprvé</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8334" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8347" />
-      <location filename="../UI/UserInterface.py" line="8334" />
-      <source>First time usage</source>
-      <translation>Spuštěno poprvé</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8335" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8348" />
       <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="8371" />
+      <location filename="../UI/UserInterface.py" line="8370" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8530" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8531" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8532" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -90186,7 +90294,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="989" />
+      <location filename="../Utilities/__init__.py" line="991" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Můžete použít %-kódy a rezervovaná místa ve stringu. Podporované kódy jsou:&lt;table&gt;&lt;tr&gt;    &lt;td&gt;%C&lt;/td&gt;    &lt;td&gt;sloupec kurzoru v aktuálním editoru&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%D&lt;/td&gt;    &lt;td&gt;adresář v aktuálním editoru&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%F&lt;/td&gt;    &lt;td&gt;jméno souboru v aktuálním editoru&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%H&lt;/td&gt;    &lt;td&gt;home adresář aktuálního uživatele&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%L&lt;/td&gt;    &lt;td&gt;řádek s kurzorem v aktuálním editoru&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%P&lt;/td&gt;    &lt;td&gt;cesta aktuálního projektu&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%S&lt;/td&gt;    &lt;td&gt;vybraný text v aktuálním editoru&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%U&lt;/td&gt;    &lt;td&gt;uživatelské jméno aktuálního uživatele&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%%&lt;/td&gt;    &lt;td&gt;znak procenta&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -91289,663 +91397,663 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="681" />
-      <location filename="../QScintilla/ShellWindow.py" line="302" />
+      <location filename="../QScintilla/ShellWindow.py" line="310" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1032" />
-      <location filename="../QScintilla/ShellWindow.py" line="329" />
+      <location filename="../QScintilla/ShellWindow.py" line="337" />
       <source>Cut</source>
       <translation>Vyjmout</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1034" />
-      <location filename="../QScintilla/ShellWindow.py" line="331" />
+      <location filename="../QScintilla/ShellWindow.py" line="339" />
       <source>Cu&amp;t</source>
       <translation>Vyjmou&amp;t</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1036" />
-      <location filename="../QScintilla/ShellWindow.py" line="333" />
+      <location filename="../QScintilla/ShellWindow.py" line="341" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1039" />
-      <location filename="../QScintilla/ShellWindow.py" line="336" />
+      <location filename="../QScintilla/ShellWindow.py" line="344" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1045" />
-      <location filename="../QScintilla/ShellWindow.py" line="342" />
+      <location filename="../QScintilla/ShellWindow.py" line="350" />
       <source>Cut the selection</source>
       <translation>Vyjmout výběr</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1059" />
-      <location filename="../QScintilla/ShellWindow.py" line="351" />
+      <location filename="../QScintilla/ShellWindow.py" line="359" />
       <source>Copy</source>
       <translation>Kopírovat</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1061" />
-      <location filename="../QScintilla/ShellWindow.py" line="353" />
+      <location filename="../QScintilla/ShellWindow.py" line="361" />
       <source>&amp;Copy</source>
       <translation>&amp;Kopírovat</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1063" />
-      <location filename="../QScintilla/ShellWindow.py" line="355" />
+      <location filename="../QScintilla/ShellWindow.py" line="363" />
       <source>Ctrl+C</source>
       <comment>Edit|Copy</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1066" />
-      <location filename="../QScintilla/ShellWindow.py" line="358" />
+      <location filename="../QScintilla/ShellWindow.py" line="366" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1072" />
-      <location filename="../QScintilla/ShellWindow.py" line="364" />
+      <location filename="../QScintilla/ShellWindow.py" line="372" />
       <source>Copy the selection</source>
       <translation>Kopírovat výběr</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1086" />
-      <location filename="../QScintilla/ShellWindow.py" line="373" />
+      <location filename="../QScintilla/ShellWindow.py" line="381" />
       <source>Paste</source>
       <translation>Vložit</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1088" />
-      <location filename="../QScintilla/ShellWindow.py" line="375" />
+      <location filename="../QScintilla/ShellWindow.py" line="383" />
       <source>&amp;Paste</source>
       <translation>V&amp;ložit</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1090" />
-      <location filename="../QScintilla/ShellWindow.py" line="377" />
+      <location filename="../QScintilla/ShellWindow.py" line="385" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1093" />
-      <location filename="../QScintilla/ShellWindow.py" line="380" />
+      <location filename="../QScintilla/ShellWindow.py" line="388" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1099" />
-      <location filename="../QScintilla/ShellWindow.py" line="386" />
+      <location filename="../QScintilla/ShellWindow.py" line="394" />
       <source>Paste the last cut/copied text</source>
       <translation>Vložit text ze schránky</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1115" />
       <location filename="../ViewManager/ViewManager.py" line="1113" />
-      <location filename="../QScintilla/ShellWindow.py" line="400" />
-      <location filename="../QScintilla/ShellWindow.py" line="398" />
+      <location filename="../QScintilla/ShellWindow.py" line="408" />
+      <location filename="../QScintilla/ShellWindow.py" line="406" />
       <source>Clear</source>
       <translation>Vyčistit</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1117" />
-      <location filename="../QScintilla/ShellWindow.py" line="402" />
+      <location filename="../QScintilla/ShellWindow.py" line="410" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1124" />
-      <location filename="../QScintilla/ShellWindow.py" line="409" />
+      <location filename="../QScintilla/ShellWindow.py" line="417" />
       <source>Clear all text</source>
       <translation>Vyčistit všechen text</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
-      <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/ShellWindow.py" line="435" />
-      <location filename="../QScintilla/ShellWindow.py" line="434" />
+      <location filename="../QScintilla/MiniEditor.py" line="1681" />
+      <location filename="../QScintilla/MiniEditor.py" line="1680" />
+      <location filename="../QScintilla/ShellWindow.py" line="439" />
+      <location filename="../QScintilla/ShellWindow.py" line="438" />
       <source>Delete current line</source>
       <translation>Smazat aktuální řádek</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1686" />
-      <location filename="../QScintilla/ShellWindow.py" line="436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1682" />
+      <location filename="../QScintilla/ShellWindow.py" line="440" />
       <source>Ctrl+Shift+L</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
-      <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/ShellWindow.py" line="447" />
-      <location filename="../QScintilla/ShellWindow.py" line="446" />
+      <location filename="../QScintilla/MiniEditor.py" line="1203" />
+      <location filename="../QScintilla/MiniEditor.py" line="1202" />
+      <location filename="../QScintilla/ShellWindow.py" line="451" />
+      <location filename="../QScintilla/ShellWindow.py" line="450" />
       <source>Indent one level</source>
       <translation>Odsadit o jednu úroveň</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1208" />
-      <location filename="../QScintilla/ShellWindow.py" line="448" />
+      <location filename="../QScintilla/MiniEditor.py" line="1204" />
+      <location filename="../QScintilla/ShellWindow.py" line="452" />
       <source>Tab</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
-      <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/ShellWindow.py" line="459" />
-      <location filename="../QScintilla/ShellWindow.py" line="458" />
+      <location filename="../QScintilla/MiniEditor.py" line="1669" />
+      <location filename="../QScintilla/MiniEditor.py" line="1668" />
+      <location filename="../QScintilla/ShellWindow.py" line="463" />
+      <location filename="../QScintilla/ShellWindow.py" line="462" />
       <source>Insert new line</source>
       <translation>Vložit nový řádek</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
-      <location filename="../QScintilla/ShellWindow.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1670" />
+      <location filename="../QScintilla/ShellWindow.py" line="464" />
       <source>Return</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1675" />
-      <location filename="../QScintilla/ShellWindow.py" line="461" />
+      <location filename="../QScintilla/MiniEditor.py" line="1671" />
+      <location filename="../QScintilla/ShellWindow.py" line="465" />
       <source>Enter</source>
       <translation>Enter</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
-      <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/ShellWindow.py" line="471" />
-      <location filename="../QScintilla/ShellWindow.py" line="470" />
+      <location filename="../QScintilla/MiniEditor.py" line="1555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1554" />
+      <location filename="../QScintilla/ShellWindow.py" line="475" />
+      <location filename="../QScintilla/ShellWindow.py" line="474" />
       <source>Delete previous character</source>
       <translation>Smazat předchozí znak</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1560" />
-      <location filename="../QScintilla/ShellWindow.py" line="472" />
+      <location filename="../QScintilla/MiniEditor.py" line="1556" />
+      <location filename="../QScintilla/ShellWindow.py" line="476" />
       <source>Backspace</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1567" />
-      <location filename="../QScintilla/ShellWindow.py" line="479" />
+      <location filename="../QScintilla/MiniEditor.py" line="1563" />
+      <location filename="../QScintilla/ShellWindow.py" line="483" />
       <source>Meta+H</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1572" />
-      <location filename="../QScintilla/ShellWindow.py" line="484" />
+      <location filename="../QScintilla/MiniEditor.py" line="1568" />
+      <location filename="../QScintilla/ShellWindow.py" line="488" />
       <source>Shift+Backspace</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
-      <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/ShellWindow.py" line="493" />
-      <location filename="../QScintilla/ShellWindow.py" line="492" />
+      <location filename="../QScintilla/MiniEditor.py" line="1593" />
+      <location filename="../QScintilla/MiniEditor.py" line="1592" />
+      <location filename="../QScintilla/ShellWindow.py" line="497" />
+      <location filename="../QScintilla/ShellWindow.py" line="496" />
       <source>Delete current character</source>
       <translation>Smazat aktuální znak</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1598" />
-      <location filename="../QScintilla/ShellWindow.py" line="494" />
+      <location filename="../QScintilla/MiniEditor.py" line="1594" />
+      <location filename="../QScintilla/ShellWindow.py" line="498" />
       <source>Del</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1605" />
-      <location filename="../QScintilla/ShellWindow.py" line="501" />
+      <location filename="../QScintilla/MiniEditor.py" line="1601" />
+      <location filename="../QScintilla/ShellWindow.py" line="505" />
       <source>Meta+D</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
-      <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/ShellWindow.py" line="509" />
-      <location filename="../QScintilla/ShellWindow.py" line="508" />
+      <location filename="../QScintilla/MiniEditor.py" line="1609" />
+      <location filename="../QScintilla/MiniEditor.py" line="1608" />
+      <location filename="../QScintilla/ShellWindow.py" line="513" />
+      <location filename="../QScintilla/ShellWindow.py" line="512" />
       <source>Delete word to left</source>
       <translation>Smazat slovo doleva</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1614" />
-      <location filename="../QScintilla/ShellWindow.py" line="510" />
+      <location filename="../QScintilla/MiniEditor.py" line="1610" />
+      <location filename="../QScintilla/ShellWindow.py" line="514" />
       <source>Ctrl+Backspace</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
-      <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/ShellWindow.py" line="521" />
-      <location filename="../QScintilla/ShellWindow.py" line="520" />
+      <location filename="../QScintilla/MiniEditor.py" line="1621" />
+      <location filename="../QScintilla/MiniEditor.py" line="1620" />
+      <location filename="../QScintilla/ShellWindow.py" line="525" />
+      <location filename="../QScintilla/ShellWindow.py" line="524" />
       <source>Delete word to right</source>
       <translation>Smazat slovo doprava</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1626" />
-      <location filename="../QScintilla/ShellWindow.py" line="522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1622" />
+      <location filename="../QScintilla/ShellWindow.py" line="526" />
       <source>Ctrl+Del</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
-      <location filename="../QScintilla/MiniEditor.py" line="1637" />
-      <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/ShellWindow.py" line="533" />
-      <location filename="../QScintilla/ShellWindow.py" line="532" />
+      <location filename="../QScintilla/MiniEditor.py" line="1633" />
+      <location filename="../QScintilla/MiniEditor.py" line="1632" />
+      <location filename="../QScintilla/ShellWindow.py" line="537" />
+      <location filename="../QScintilla/ShellWindow.py" line="536" />
       <source>Delete line to left</source>
       <translation>Smazat řádku doleva</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1639" />
-      <location filename="../QScintilla/ShellWindow.py" line="535" />
+      <location filename="../QScintilla/MiniEditor.py" line="1635" />
+      <location filename="../QScintilla/ShellWindow.py" line="539" />
       <source>Ctrl+Shift+Backspace</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
-      <location filename="../QScintilla/MiniEditor.py" line="1651" />
-      <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/ShellWindow.py" line="547" />
-      <location filename="../QScintilla/ShellWindow.py" line="546" />
+      <location filename="../QScintilla/MiniEditor.py" line="1647" />
+      <location filename="../QScintilla/MiniEditor.py" line="1646" />
+      <location filename="../QScintilla/ShellWindow.py" line="551" />
+      <location filename="../QScintilla/ShellWindow.py" line="550" />
       <source>Delete line to right</source>
       <translation>Smazat řádku doprava</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1659" />
-      <location filename="../QScintilla/ShellWindow.py" line="555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1655" />
+      <location filename="../QScintilla/ShellWindow.py" line="559" />
       <source>Meta+K</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1664" />
-      <location filename="../QScintilla/ShellWindow.py" line="560" />
+      <location filename="../QScintilla/MiniEditor.py" line="1660" />
+      <location filename="../QScintilla/ShellWindow.py" line="564" />
       <source>Ctrl+Shift+Del</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
-      <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/ShellWindow.py" line="569" />
-      <location filename="../QScintilla/ShellWindow.py" line="568" />
+      <location filename="../QScintilla/MiniEditor.py" line="891" />
+      <location filename="../QScintilla/MiniEditor.py" line="890" />
+      <location filename="../QScintilla/ShellWindow.py" line="573" />
+      <location filename="../QScintilla/ShellWindow.py" line="572" />
       <source>Move left one character</source>
       <translation>Posun o jeden znak doleva</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="896" />
-      <location filename="../QScintilla/ShellWindow.py" line="570" />
+      <location filename="../QScintilla/MiniEditor.py" line="892" />
+      <location filename="../QScintilla/ShellWindow.py" line="574" />
       <source>Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="904" />
-      <location filename="../QScintilla/ShellWindow.py" line="578" />
+      <location filename="../QScintilla/MiniEditor.py" line="900" />
+      <location filename="../QScintilla/ShellWindow.py" line="582" />
       <source>Meta+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
-      <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/ShellWindow.py" line="585" />
-      <location filename="../QScintilla/ShellWindow.py" line="584" />
+      <location filename="../QScintilla/MiniEditor.py" line="907" />
+      <location filename="../QScintilla/MiniEditor.py" line="906" />
+      <location filename="../QScintilla/ShellWindow.py" line="589" />
+      <location filename="../QScintilla/ShellWindow.py" line="588" />
       <source>Move right one character</source>
       <translation>Posun o jeden znak doprava</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="912" />
-      <location filename="../QScintilla/ShellWindow.py" line="586" />
+      <location filename="../QScintilla/MiniEditor.py" line="908" />
+      <location filename="../QScintilla/ShellWindow.py" line="590" />
       <source>Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="919" />
-      <location filename="../QScintilla/ShellWindow.py" line="593" />
+      <location filename="../QScintilla/MiniEditor.py" line="915" />
+      <location filename="../QScintilla/ShellWindow.py" line="597" />
       <source>Meta+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="991" />
-      <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/ShellWindow.py" line="601" />
-      <location filename="../QScintilla/ShellWindow.py" line="600" />
+      <location filename="../QScintilla/MiniEditor.py" line="987" />
+      <location filename="../QScintilla/MiniEditor.py" line="986" />
+      <location filename="../QScintilla/ShellWindow.py" line="605" />
+      <location filename="../QScintilla/ShellWindow.py" line="604" />
       <source>Move left one word</source>
       <translation>Posun o jedno slovo doleva</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="999" />
-      <location filename="../QScintilla/MiniEditor.py" line="967" />
-      <location filename="../QScintilla/ShellWindow.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="995" />
+      <location filename="../QScintilla/MiniEditor.py" line="963" />
+      <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Alt+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1059" />
-      <location filename="../QScintilla/MiniEditor.py" line="1003" />
-      <location filename="../QScintilla/ShellWindow.py" line="613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1055" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/ShellWindow.py" line="617" />
       <source>Ctrl+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
-      <location filename="../QScintilla/MiniEditor.py" line="1011" />
-      <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/ShellWindow.py" line="621" />
-      <location filename="../QScintilla/ShellWindow.py" line="620" />
+      <location filename="../QScintilla/MiniEditor.py" line="1007" />
+      <location filename="../QScintilla/MiniEditor.py" line="1006" />
+      <location filename="../QScintilla/ShellWindow.py" line="625" />
+      <location filename="../QScintilla/ShellWindow.py" line="624" />
       <source>Move right one word</source>
       <translation>Posun o jedno slovo doprava</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="1023" />
-      <location filename="../QScintilla/ShellWindow.py" line="629" />
+      <location filename="../QScintilla/MiniEditor.py" line="1809" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/ShellWindow.py" line="633" />
       <source>Ctrl+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1033" />
-      <location filename="../QScintilla/MiniEditor.py" line="1030" />
-      <location filename="../QScintilla/ShellWindow.py" line="639" />
-      <location filename="../QScintilla/ShellWindow.py" line="636" />
+      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1026" />
+      <location filename="../QScintilla/ShellWindow.py" line="643" />
+      <location filename="../QScintilla/ShellWindow.py" line="640" />
       <source>Move to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2074" />
-      <location filename="../QScintilla/MiniEditor.py" line="1043" />
-      <location filename="../QScintilla/ShellWindow.py" line="649" />
+      <location filename="../QScintilla/MiniEditor.py" line="2070" />
+      <location filename="../QScintilla/MiniEditor.py" line="1039" />
+      <location filename="../QScintilla/ShellWindow.py" line="653" />
       <source>Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
-      <location filename="../QScintilla/MiniEditor.py" line="1071" />
-      <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/ShellWindow.py" line="657" />
-      <location filename="../QScintilla/ShellWindow.py" line="656" />
+      <location filename="../QScintilla/MiniEditor.py" line="1067" />
+      <location filename="../QScintilla/MiniEditor.py" line="1066" />
+      <location filename="../QScintilla/ShellWindow.py" line="661" />
+      <location filename="../QScintilla/ShellWindow.py" line="660" />
       <source>Move to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1079" />
-      <location filename="../QScintilla/ShellWindow.py" line="665" />
+      <location filename="../QScintilla/MiniEditor.py" line="1075" />
+      <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>Meta+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1083" />
-      <location filename="../QScintilla/ShellWindow.py" line="669" />
+      <location filename="../QScintilla/MiniEditor.py" line="2087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
+      <location filename="../QScintilla/ShellWindow.py" line="673" />
       <source>End</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
-      <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/ShellWindow.py" line="677" />
-      <location filename="../QScintilla/ShellWindow.py" line="676" />
+      <location filename="../QScintilla/MiniEditor.py" line="923" />
+      <location filename="../QScintilla/MiniEditor.py" line="922" />
+      <location filename="../QScintilla/ShellWindow.py" line="681" />
+      <location filename="../QScintilla/ShellWindow.py" line="680" />
       <source>Move up one line</source>
       <translation>Posun o jeden řádek nahoru</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="928" />
-      <location filename="../QScintilla/ShellWindow.py" line="678" />
+      <location filename="../QScintilla/MiniEditor.py" line="924" />
+      <location filename="../QScintilla/ShellWindow.py" line="682" />
       <source>Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="935" />
-      <location filename="../QScintilla/ShellWindow.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="689" />
       <source>Meta+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
-      <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/ShellWindow.py" line="693" />
-      <location filename="../QScintilla/ShellWindow.py" line="692" />
+      <location filename="../QScintilla/MiniEditor.py" line="939" />
+      <location filename="../QScintilla/MiniEditor.py" line="938" />
+      <location filename="../QScintilla/ShellWindow.py" line="697" />
+      <location filename="../QScintilla/ShellWindow.py" line="696" />
       <source>Move down one line</source>
       <translation>Posun o jeden řádek dolu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="944" />
-      <location filename="../QScintilla/ShellWindow.py" line="694" />
+      <location filename="../QScintilla/MiniEditor.py" line="940" />
+      <location filename="../QScintilla/ShellWindow.py" line="698" />
       <source>Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="951" />
-      <location filename="../QScintilla/ShellWindow.py" line="701" />
+      <location filename="../QScintilla/MiniEditor.py" line="947" />
+      <location filename="../QScintilla/ShellWindow.py" line="705" />
       <source>Meta+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1195" />
-      <location filename="../QScintilla/MiniEditor.py" line="1092" />
-      <location filename="../QScintilla/ShellWindow.py" line="710" />
+      <location filename="../QScintilla/MiniEditor.py" line="1191" />
+      <location filename="../QScintilla/MiniEditor.py" line="1088" />
+      <location filename="../QScintilla/ShellWindow.py" line="714" />
       <source>Ctrl+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1175" />
-      <location filename="../QScintilla/MiniEditor.py" line="1104" />
-      <location filename="../QScintilla/ShellWindow.py" line="722" />
+      <location filename="../QScintilla/MiniEditor.py" line="1171" />
+      <location filename="../QScintilla/MiniEditor.py" line="1100" />
+      <location filename="../QScintilla/ShellWindow.py" line="726" />
       <source>Ctrl+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
-      <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/ShellWindow.py" line="733" />
-      <location filename="../QScintilla/ShellWindow.py" line="732" />
+      <location filename="../QScintilla/MiniEditor.py" line="1135" />
+      <location filename="../QScintilla/MiniEditor.py" line="1134" />
+      <location filename="../QScintilla/ShellWindow.py" line="737" />
+      <location filename="../QScintilla/ShellWindow.py" line="736" />
       <source>Move up one page</source>
       <translation>Posun na předchozí stranu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1140" />
-      <location filename="../QScintilla/ShellWindow.py" line="734" />
+      <location filename="../QScintilla/MiniEditor.py" line="1136" />
+      <location filename="../QScintilla/ShellWindow.py" line="738" />
       <source>PgUp</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/ShellWindow.py" line="745" />
-      <location filename="../QScintilla/ShellWindow.py" line="744" />
+      <location filename="../QScintilla/MiniEditor.py" line="1147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1146" />
+      <location filename="../QScintilla/ShellWindow.py" line="749" />
+      <location filename="../QScintilla/ShellWindow.py" line="748" />
       <source>Move down one page</source>
       <translation>Posun na následující stranu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1152" />
-      <location filename="../QScintilla/ShellWindow.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="1148" />
+      <location filename="../QScintilla/ShellWindow.py" line="750" />
       <source>PgDown</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1159" />
-      <location filename="../QScintilla/ShellWindow.py" line="753" />
+      <location filename="../QScintilla/MiniEditor.py" line="1155" />
+      <location filename="../QScintilla/ShellWindow.py" line="757" />
       <source>Meta+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
-      <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/ShellWindow.py" line="761" />
-      <location filename="../QScintilla/ShellWindow.py" line="760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1855" />
+      <location filename="../QScintilla/MiniEditor.py" line="1854" />
+      <location filename="../QScintilla/ShellWindow.py" line="765" />
+      <location filename="../QScintilla/ShellWindow.py" line="764" />
       <source>Escape</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1860" />
-      <location filename="../QScintilla/ShellWindow.py" line="762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1856" />
+      <location filename="../QScintilla/ShellWindow.py" line="766" />
       <source>Esc</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1233" />
-      <location filename="../QScintilla/MiniEditor.py" line="1230" />
-      <location filename="../QScintilla/ShellWindow.py" line="775" />
-      <location filename="../QScintilla/ShellWindow.py" line="772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1226" />
+      <location filename="../QScintilla/ShellWindow.py" line="779" />
+      <location filename="../QScintilla/ShellWindow.py" line="776" />
       <source>Extend selection left one character</source>
       <translation>Rozšířit výběr o jeden znak vlevo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1236" />
-      <location filename="../QScintilla/ShellWindow.py" line="778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1232" />
+      <location filename="../QScintilla/ShellWindow.py" line="782" />
       <source>Shift+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1243" />
-      <location filename="../QScintilla/ShellWindow.py" line="785" />
+      <location filename="../QScintilla/MiniEditor.py" line="1239" />
+      <location filename="../QScintilla/ShellWindow.py" line="789" />
       <source>Meta+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1253" />
-      <location filename="../QScintilla/MiniEditor.py" line="1250" />
-      <location filename="../QScintilla/ShellWindow.py" line="795" />
-      <location filename="../QScintilla/ShellWindow.py" line="792" />
+      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1246" />
+      <location filename="../QScintilla/ShellWindow.py" line="799" />
+      <location filename="../QScintilla/ShellWindow.py" line="796" />
       <source>Extend selection right one character</source>
       <translation>Rozšířit výběr o jeden znak vpravo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1256" />
-      <location filename="../QScintilla/ShellWindow.py" line="798" />
+      <location filename="../QScintilla/MiniEditor.py" line="1252" />
+      <location filename="../QScintilla/ShellWindow.py" line="802" />
       <source>Shift+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1263" />
-      <location filename="../QScintilla/ShellWindow.py" line="805" />
+      <location filename="../QScintilla/MiniEditor.py" line="1259" />
+      <location filename="../QScintilla/ShellWindow.py" line="809" />
       <source>Meta+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
-      <location filename="../QScintilla/MiniEditor.py" line="1347" />
-      <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/ShellWindow.py" line="813" />
-      <location filename="../QScintilla/ShellWindow.py" line="812" />
+      <location filename="../QScintilla/MiniEditor.py" line="1343" />
+      <location filename="../QScintilla/MiniEditor.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="817" />
+      <location filename="../QScintilla/ShellWindow.py" line="816" />
       <source>Extend selection left one word</source>
       <translation>Rozšířit výběr o jedno slovo vlevo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1356" />
-      <location filename="../QScintilla/MiniEditor.py" line="1316" />
-      <location filename="../QScintilla/ShellWindow.py" line="822" />
+      <location filename="../QScintilla/MiniEditor.py" line="1352" />
+      <location filename="../QScintilla/MiniEditor.py" line="1312" />
+      <location filename="../QScintilla/ShellWindow.py" line="826" />
       <source>Alt+Shift+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2277" />
-      <location filename="../QScintilla/MiniEditor.py" line="1362" />
-      <location filename="../QScintilla/ShellWindow.py" line="828" />
+      <location filename="../QScintilla/MiniEditor.py" line="2273" />
+      <location filename="../QScintilla/MiniEditor.py" line="1358" />
+      <location filename="../QScintilla/ShellWindow.py" line="832" />
       <source>Ctrl+Shift+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1373" />
-      <location filename="../QScintilla/MiniEditor.py" line="1370" />
-      <location filename="../QScintilla/ShellWindow.py" line="839" />
-      <location filename="../QScintilla/ShellWindow.py" line="836" />
+      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1366" />
+      <location filename="../QScintilla/ShellWindow.py" line="843" />
+      <location filename="../QScintilla/ShellWindow.py" line="840" />
       <source>Extend selection right one word</source>
       <translation>Rozšířit výběr o jedno slovo vpravo</translation>
     </message>
@@ -91953,60 +92061,60 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1384" />
-      <location filename="../QScintilla/MiniEditor.py" line="1338" />
-      <location filename="../QScintilla/ShellWindow.py" line="850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1380" />
+      <location filename="../QScintilla/MiniEditor.py" line="1334" />
+      <location filename="../QScintilla/ShellWindow.py" line="854" />
       <source>Alt+Shift+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1838" />
-      <location filename="../QScintilla/MiniEditor.py" line="1390" />
-      <location filename="../QScintilla/ShellWindow.py" line="856" />
+      <location filename="../QScintilla/MiniEditor.py" line="1834" />
+      <location filename="../QScintilla/MiniEditor.py" line="1386" />
+      <location filename="../QScintilla/ShellWindow.py" line="860" />
       <source>Ctrl+Shift+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1402" />
       <location filename="../QScintilla/MiniEditor.py" line="1398" />
+      <location filename="../QScintilla/MiniEditor.py" line="1394" />
+      <location filename="../QScintilla/ShellWindow.py" line="872" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
-      <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1413" />
-      <location filename="../QScintilla/ShellWindow.py" line="879" />
+      <location filename="../QScintilla/MiniEditor.py" line="1409" />
+      <location filename="../QScintilla/ShellWindow.py" line="883" />
       <source>Shift+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1423" />
-      <location filename="../QScintilla/MiniEditor.py" line="1420" />
-      <location filename="../QScintilla/ShellWindow.py" line="889" />
-      <location filename="../QScintilla/ShellWindow.py" line="886" />
+      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1416" />
+      <location filename="../QScintilla/ShellWindow.py" line="893" />
+      <location filename="../QScintilla/ShellWindow.py" line="890" />
       <source>Extend selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1433" />
-      <location filename="../QScintilla/ShellWindow.py" line="899" />
+      <location filename="../QScintilla/MiniEditor.py" line="1429" />
+      <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Meta+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1437" />
-      <location filename="../QScintilla/ShellWindow.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
+      <location filename="../QScintilla/ShellWindow.py" line="907" />
       <source>Shift+End</source>
       <translation />
     </message>
@@ -92014,255 +92122,255 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2533" />
-      <location filename="../QScintilla/ShellWindow.py" line="917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2529" />
+      <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Search</source>
       <translation>Vyhledat</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2535" />
-      <location filename="../QScintilla/ShellWindow.py" line="919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2531" />
+      <location filename="../QScintilla/ShellWindow.py" line="923" />
       <source>&amp;Search...</source>
       <translation>V&amp;yhledat...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2537" />
-      <location filename="../QScintilla/ShellWindow.py" line="921" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
+      <location filename="../QScintilla/ShellWindow.py" line="925" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2544" />
-      <location filename="../QScintilla/ShellWindow.py" line="928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2540" />
+      <location filename="../QScintilla/ShellWindow.py" line="932" />
       <source>Search for a text</source>
       <translation>Hledat text</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="935" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2559" />
-      <location filename="../QScintilla/ShellWindow.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="2555" />
+      <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>Search next</source>
       <translation>Hledat text</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2561" />
-      <location filename="../QScintilla/ShellWindow.py" line="945" />
+      <location filename="../QScintilla/MiniEditor.py" line="2557" />
+      <location filename="../QScintilla/ShellWindow.py" line="949" />
       <source>Search &amp;next</source>
       <translation>Hledat &amp;další</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2563" />
-      <location filename="../QScintilla/ShellWindow.py" line="947" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
+      <location filename="../QScintilla/ShellWindow.py" line="951" />
       <source>F3</source>
       <comment>Search|Search next</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2570" />
-      <location filename="../QScintilla/ShellWindow.py" line="954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2566" />
+      <location filename="../QScintilla/ShellWindow.py" line="958" />
       <source>Search next occurrence of text</source>
       <translation>Hledat další výskyt textu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="957" />
+      <location filename="../QScintilla/ShellWindow.py" line="961" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2585" />
-      <location filename="../QScintilla/ShellWindow.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="2581" />
+      <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Search previous</source>
       <translation>Hledat předchozí</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2587" />
-      <location filename="../QScintilla/ShellWindow.py" line="973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2583" />
+      <location filename="../QScintilla/ShellWindow.py" line="977" />
       <source>Search &amp;previous</source>
       <translation>Hledat &amp;předchozí</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2589" />
-      <location filename="../QScintilla/ShellWindow.py" line="975" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
+      <location filename="../QScintilla/ShellWindow.py" line="979" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2598" />
-      <location filename="../QScintilla/ShellWindow.py" line="984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2594" />
+      <location filename="../QScintilla/ShellWindow.py" line="988" />
       <source>Search previous occurrence of text</source>
       <translation>Hledat předchozí výskyt textu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="989" />
+      <location filename="../QScintilla/ShellWindow.py" line="993" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2758" />
-      <location filename="../QScintilla/ShellWindow.py" line="1010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2754" />
+      <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Zoom in</source>
       <translation>Přiblížit</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2760" />
-      <location filename="../QScintilla/ShellWindow.py" line="1012" />
+      <location filename="../QScintilla/MiniEditor.py" line="2756" />
+      <location filename="../QScintilla/ShellWindow.py" line="1016" />
       <source>Zoom &amp;in</source>
       <translation>Př&amp;iblížit</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2762" />
-      <location filename="../QScintilla/ShellWindow.py" line="1014" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
+      <location filename="../QScintilla/ShellWindow.py" line="1018" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2765" />
-      <location filename="../QScintilla/ShellWindow.py" line="1017" />
+      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/ShellWindow.py" line="1021" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2771" />
-      <location filename="../QScintilla/ShellWindow.py" line="1023" />
+      <location filename="../QScintilla/MiniEditor.py" line="2767" />
+      <location filename="../QScintilla/ShellWindow.py" line="1027" />
       <source>Zoom in on the text</source>
       <translation>Zvětšovací lupa</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2774" />
-      <location filename="../QScintilla/ShellWindow.py" line="1026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/ShellWindow.py" line="1030" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Přiblížit&lt;/b&gt;&lt;p&gt;Přiblížit text. Text bude větší.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2784" />
-      <location filename="../QScintilla/ShellWindow.py" line="1036" />
+      <location filename="../QScintilla/MiniEditor.py" line="2780" />
+      <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Zoom out</source>
       <translation>Oddálit</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2786" />
-      <location filename="../QScintilla/ShellWindow.py" line="1038" />
+      <location filename="../QScintilla/MiniEditor.py" line="2782" />
+      <location filename="../QScintilla/ShellWindow.py" line="1042" />
       <source>Zoom &amp;out</source>
       <translation>&amp;Oddálit</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2788" />
-      <location filename="../QScintilla/ShellWindow.py" line="1040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
+      <location filename="../QScintilla/ShellWindow.py" line="1044" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2791" />
-      <location filename="../QScintilla/ShellWindow.py" line="1043" />
+      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/ShellWindow.py" line="1047" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2797" />
-      <location filename="../QScintilla/ShellWindow.py" line="1049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2793" />
+      <location filename="../QScintilla/ShellWindow.py" line="1053" />
       <source>Zoom out on the text</source>
       <translation>Zmenšovací lupa</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2800" />
-      <location filename="../QScintilla/ShellWindow.py" line="1052" />
+      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/ShellWindow.py" line="1056" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Oddálit&lt;/b&gt;&lt;p&gt;Lupa na oddálení textu. Text bude menší.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2810" />
-      <location filename="../QScintilla/ShellWindow.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="2806" />
+      <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Zoom reset</source>
       <translation type="unfinished">Resetovat lupu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2812" />
-      <location filename="../QScintilla/ShellWindow.py" line="1064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2808" />
+      <location filename="../QScintilla/ShellWindow.py" line="1068" />
       <source>Zoom &amp;reset</source>
       <translation type="unfinished">&amp;Resetovat lupu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2814" />
-      <location filename="../QScintilla/ShellWindow.py" line="1066" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
+      <location filename="../QScintilla/ShellWindow.py" line="1070" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2821" />
-      <location filename="../QScintilla/ShellWindow.py" line="1073" />
+      <location filename="../QScintilla/MiniEditor.py" line="2817" />
+      <location filename="../QScintilla/ShellWindow.py" line="1077" />
       <source>Reset the zoom of the text</source>
       <translation type="unfinished">Resetovat lupu textu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2824" />
-      <location filename="../QScintilla/ShellWindow.py" line="1076" />
+      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/ShellWindow.py" line="1080" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Reset lupy&lt;/b&gt;&lt;p&gt;Reset lupy pro text. Nastaví se lupa na hodnotu 100%.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2835" />
-      <location filename="../QScintilla/ShellWindow.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="2831" />
+      <location filename="../QScintilla/ShellWindow.py" line="1091" />
       <source>Zoom</source>
       <translation>Lupa</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2837" />
-      <location filename="../QScintilla/ShellWindow.py" line="1089" />
+      <location filename="../QScintilla/MiniEditor.py" line="2833" />
+      <location filename="../QScintilla/ShellWindow.py" line="1093" />
       <source>&amp;Zoom</source>
       <translation>&amp;Lupa</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2844" />
-      <location filename="../QScintilla/ShellWindow.py" line="1096" />
+      <location filename="../QScintilla/MiniEditor.py" line="2840" />
+      <location filename="../QScintilla/ShellWindow.py" line="1100" />
       <source>Zoom the text</source>
       <translation>Lupa na text</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2847" />
-      <location filename="../QScintilla/ShellWindow.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/ShellWindow.py" line="1103" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Lupa&lt;/b&gt;&lt;p&gt;Lupa na text. Otevře se dialogové okno kde se zadá požadovaná hodnota zvětšení/zmenšení.&lt;/p&gt;</translation>
     </message>
@@ -92276,897 +92384,897 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
-      <location filename="../QScintilla/MiniEditor.py" line="959" />
-      <location filename="../QScintilla/MiniEditor.py" line="958" />
+      <location filename="../QScintilla/MiniEditor.py" line="955" />
+      <location filename="../QScintilla/MiniEditor.py" line="954" />
       <source>Move left one word part</source>
       <translation>Posun o jednu část slova doleva</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
-      <location filename="../QScintilla/MiniEditor.py" line="975" />
-      <location filename="../QScintilla/MiniEditor.py" line="974" />
+      <location filename="../QScintilla/MiniEditor.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="970" />
       <source>Move right one word part</source>
       <translation>Posun o jednu část slova doprava</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2129" />
-      <location filename="../QScintilla/MiniEditor.py" line="1019" />
-      <location filename="../QScintilla/MiniEditor.py" line="983" />
+      <location filename="../QScintilla/MiniEditor.py" line="2125" />
+      <location filename="../QScintilla/MiniEditor.py" line="1015" />
+      <location filename="../QScintilla/MiniEditor.py" line="979" />
       <source>Alt+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
-      <location filename="../QScintilla/MiniEditor.py" line="1051" />
-      <location filename="../QScintilla/MiniEditor.py" line="1050" />
+      <location filename="../QScintilla/MiniEditor.py" line="1047" />
+      <location filename="../QScintilla/MiniEditor.py" line="1046" />
       <source>Move to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1063" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
       <source>Alt+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1090" />
+      <location filename="../QScintilla/MiniEditor.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1086" />
       <source>Scroll view down one line</source>
       <translation>Posun pohledu  jeden řádek dolů</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
-      <location filename="../QScintilla/MiniEditor.py" line="1102" />
+      <location filename="../QScintilla/MiniEditor.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="1098" />
       <source>Scroll view up one line</source>
       <translation>Posun pohledu o jeden řádek nahoru</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
-      <location filename="../QScintilla/MiniEditor.py" line="1114" />
+      <location filename="../QScintilla/MiniEditor.py" line="1111" />
+      <location filename="../QScintilla/MiniEditor.py" line="1110" />
       <source>Move up one paragraph</source>
       <translation>Posun na předchozí odstavec</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1116" />
+      <location filename="../QScintilla/MiniEditor.py" line="1112" />
       <source>Alt+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
-      <location filename="../QScintilla/MiniEditor.py" line="1126" />
+      <location filename="../QScintilla/MiniEditor.py" line="1123" />
+      <location filename="../QScintilla/MiniEditor.py" line="1122" />
       <source>Move down one paragraph</source>
       <translation>Posun na následující odstavec</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1128" />
+      <location filename="../QScintilla/MiniEditor.py" line="1124" />
       <source>Alt+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
-      <location filename="../QScintilla/MiniEditor.py" line="1167" />
-      <location filename="../QScintilla/MiniEditor.py" line="1166" />
+      <location filename="../QScintilla/MiniEditor.py" line="1163" />
+      <location filename="../QScintilla/MiniEditor.py" line="1162" />
       <source>Move to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1179" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
       <source>Ctrl+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
-      <location filename="../QScintilla/MiniEditor.py" line="1187" />
-      <location filename="../QScintilla/MiniEditor.py" line="1186" />
+      <location filename="../QScintilla/MiniEditor.py" line="1183" />
+      <location filename="../QScintilla/MiniEditor.py" line="1182" />
       <source>Move to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1199" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
       <source>Ctrl+End</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
-      <location filename="../QScintilla/MiniEditor.py" line="1218" />
+      <location filename="../QScintilla/MiniEditor.py" line="1215" />
+      <location filename="../QScintilla/MiniEditor.py" line="1214" />
       <source>Unindent one level</source>
       <translation>Zrušit odsazení o jednu úroveň</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1220" />
+      <location filename="../QScintilla/MiniEditor.py" line="1216" />
       <source>Shift+Tab</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
-      <location filename="../QScintilla/MiniEditor.py" line="1270" />
+      <location filename="../QScintilla/MiniEditor.py" line="1267" />
+      <location filename="../QScintilla/MiniEditor.py" line="1266" />
       <source>Extend selection up one line</source>
       <translation>Rozšířit výběr o řádku nahoru</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1272" />
+      <location filename="../QScintilla/MiniEditor.py" line="1268" />
       <source>Shift+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1279" />
+      <location filename="../QScintilla/MiniEditor.py" line="1275" />
       <source>Meta+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
-      <location filename="../QScintilla/MiniEditor.py" line="1286" />
+      <location filename="../QScintilla/MiniEditor.py" line="1283" />
+      <location filename="../QScintilla/MiniEditor.py" line="1282" />
       <source>Extend selection down one line</source>
       <translation>Rozšířit výběr o jednu řádku dolů</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1288" />
+      <location filename="../QScintilla/MiniEditor.py" line="1284" />
       <source>Shift+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1291" />
       <source>Meta+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1305" />
-      <location filename="../QScintilla/MiniEditor.py" line="1302" />
+      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1298" />
       <source>Extend selection left one word part</source>
       <translation>Rozšířit výběr o jednu část slova vlevo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1327" />
-      <location filename="../QScintilla/MiniEditor.py" line="1324" />
+      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1320" />
       <source>Extend selection right one word part</source>
       <translation>Rozšířit výběr o jednu část slova vpravo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1447" />
-      <location filename="../QScintilla/MiniEditor.py" line="1444" />
+      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1440" />
       <source>Extend selection up one paragraph</source>
       <translation>Rozšířit výběr o předchozí odstavec</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1450" />
+      <location filename="../QScintilla/MiniEditor.py" line="1446" />
       <source>Alt+Shift+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1463" />
-      <location filename="../QScintilla/MiniEditor.py" line="1460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1456" />
       <source>Extend selection down one paragraph</source>
       <translation>Rozšířit výběr o následující odstavec</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1466" />
+      <location filename="../QScintilla/MiniEditor.py" line="1462" />
       <source>Alt+Shift+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
-      <location filename="../QScintilla/MiniEditor.py" line="1476" />
+      <location filename="../QScintilla/MiniEditor.py" line="1473" />
+      <location filename="../QScintilla/MiniEditor.py" line="1472" />
       <source>Extend selection up one page</source>
       <translation>Rozšířit výběr na předchozí stranu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1478" />
+      <location filename="../QScintilla/MiniEditor.py" line="1474" />
       <source>Shift+PgUp</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
-      <location filename="../QScintilla/MiniEditor.py" line="1488" />
+      <location filename="../QScintilla/MiniEditor.py" line="1485" />
+      <location filename="../QScintilla/MiniEditor.py" line="1484" />
       <source>Extend selection down one page</source>
       <translation>Rozšířit výběr na následující stranu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1490" />
+      <location filename="../QScintilla/MiniEditor.py" line="1486" />
       <source>Shift+PgDown</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1497" />
+      <location filename="../QScintilla/MiniEditor.py" line="1493" />
       <source>Meta+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1507" />
-      <location filename="../QScintilla/MiniEditor.py" line="1504" />
+      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1500" />
       <source>Extend selection to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1517" />
+      <location filename="../QScintilla/MiniEditor.py" line="1513" />
       <source>Ctrl+Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1518" />
       <source>Ctrl+Shift+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1533" />
-      <location filename="../QScintilla/MiniEditor.py" line="1530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1526" />
       <source>Extend selection to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1544" />
+      <location filename="../QScintilla/MiniEditor.py" line="1540" />
       <source>Ctrl+Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1550" />
+      <location filename="../QScintilla/MiniEditor.py" line="1546" />
       <source>Ctrl+Shift+End</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1583" />
-      <location filename="../QScintilla/MiniEditor.py" line="1580" />
+      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1576" />
       <source>Delete previous character if not at start of line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
-      <location filename="../QScintilla/MiniEditor.py" line="1696" />
+      <location filename="../QScintilla/MiniEditor.py" line="1693" />
+      <location filename="../QScintilla/MiniEditor.py" line="1692" />
       <source>Duplicate current line</source>
       <translation>Duplikovat aktuální řádek</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1698" />
+      <location filename="../QScintilla/MiniEditor.py" line="1694" />
       <source>Ctrl+D</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1711" />
-      <location filename="../QScintilla/MiniEditor.py" line="1708" />
+      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1704" />
       <source>Swap current and previous lines</source>
       <translation>Prohodit aktuální řádek s předchozím</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1714" />
+      <location filename="../QScintilla/MiniEditor.py" line="1710" />
       <source>Ctrl+T</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
-      <location filename="../QScintilla/MiniEditor.py" line="1724" />
+      <location filename="../QScintilla/MiniEditor.py" line="1721" />
+      <location filename="../QScintilla/MiniEditor.py" line="1720" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1726" />
+      <location filename="../QScintilla/MiniEditor.py" line="1722" />
       <source>Meta+Alt+R</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
-      <location filename="../QScintilla/MiniEditor.py" line="1736" />
+      <location filename="../QScintilla/MiniEditor.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="1732" />
       <source>Cut current line</source>
       <translation>Vyjmout aktuální řádek</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1738" />
+      <location filename="../QScintilla/MiniEditor.py" line="1734" />
       <source>Alt+Shift+L</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="1748" />
+      <location filename="../QScintilla/MiniEditor.py" line="1745" />
+      <location filename="../QScintilla/MiniEditor.py" line="1744" />
       <source>Copy current line</source>
       <translation>Kopírovat aktuální řádek</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1750" />
+      <location filename="../QScintilla/MiniEditor.py" line="1746" />
       <source>Ctrl+Shift+T</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
-      <location filename="../QScintilla/MiniEditor.py" line="1760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1757" />
+      <location filename="../QScintilla/MiniEditor.py" line="1756" />
       <source>Toggle insert/overtype</source>
       <translation>Přepnout vkládání/přepisování</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1758" />
       <source>Ins</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1775" />
-      <location filename="../QScintilla/MiniEditor.py" line="1772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1768" />
       <source>Convert selection to lower case</source>
       <translation>Převést výběr na minusky</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1774" />
       <source>Alt+Shift+U</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1791" />
-      <location filename="../QScintilla/MiniEditor.py" line="1788" />
+      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1784" />
       <source>Convert selection to upper case</source>
       <translation>Převést výběr na verzálky</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1794" />
+      <location filename="../QScintilla/MiniEditor.py" line="1790" />
       <source>Ctrl+Shift+U</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
-      <location filename="../QScintilla/MiniEditor.py" line="1805" />
-      <location filename="../QScintilla/MiniEditor.py" line="1804" />
+      <location filename="../QScintilla/MiniEditor.py" line="1801" />
+      <location filename="../QScintilla/MiniEditor.py" line="1800" />
       <source>Move to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1817" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
       <source>Alt+End</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1827" />
-      <location filename="../QScintilla/MiniEditor.py" line="1824" />
+      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1820" />
       <source>Extend selection to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
-      <location filename="../QScintilla/MiniEditor.py" line="1847" />
-      <location filename="../QScintilla/MiniEditor.py" line="1846" />
+      <location filename="../QScintilla/MiniEditor.py" line="1843" />
+      <location filename="../QScintilla/MiniEditor.py" line="1842" />
       <source>Formfeed</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1873" />
-      <location filename="../QScintilla/MiniEditor.py" line="1870" />
+      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1866" />
       <source>Extend rectangular selection down one line</source>
       <translation>Rozšířit obdélníkový výběr o řádek dolů</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1876" />
+      <location filename="../QScintilla/MiniEditor.py" line="1872" />
       <source>Alt+Ctrl+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1884" />
+      <location filename="../QScintilla/MiniEditor.py" line="1880" />
       <source>Meta+Alt+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1895" />
-      <location filename="../QScintilla/MiniEditor.py" line="1892" />
+      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1888" />
       <source>Extend rectangular selection up one line</source>
       <translation>Rozšířit obdélníkový výběr o řádek nahoru</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1898" />
+      <location filename="../QScintilla/MiniEditor.py" line="1894" />
       <source>Alt+Ctrl+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1906" />
+      <location filename="../QScintilla/MiniEditor.py" line="1902" />
       <source>Meta+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1917" />
-      <location filename="../QScintilla/MiniEditor.py" line="1914" />
+      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1910" />
       <source>Extend rectangular selection left one character</source>
       <translation>Rozšířit obdélníkový výběr o jeden znak vlevo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1920" />
+      <location filename="../QScintilla/MiniEditor.py" line="1916" />
       <source>Alt+Ctrl+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1928" />
+      <location filename="../QScintilla/MiniEditor.py" line="1924" />
       <source>Meta+Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1939" />
-      <location filename="../QScintilla/MiniEditor.py" line="1936" />
+      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1932" />
       <source>Extend rectangular selection right one character</source>
       <translation>Rozšířit obdélníkový výběr o jeden znak vpravo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1942" />
+      <location filename="../QScintilla/MiniEditor.py" line="1938" />
       <source>Alt+Ctrl+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1950" />
+      <location filename="../QScintilla/MiniEditor.py" line="1946" />
       <source>Meta+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1963" />
-      <location filename="../QScintilla/MiniEditor.py" line="1958" />
+      <location filename="../QScintilla/MiniEditor.py" line="1959" />
+      <location filename="../QScintilla/MiniEditor.py" line="1954" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1976" />
+      <location filename="../QScintilla/MiniEditor.py" line="1972" />
       <source>Alt+Shift+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1987" />
-      <location filename="../QScintilla/MiniEditor.py" line="1984" />
+      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1980" />
       <source>Extend rectangular selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1998" />
+      <location filename="../QScintilla/MiniEditor.py" line="1994" />
       <source>Meta+Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2003" />
+      <location filename="../QScintilla/MiniEditor.py" line="1999" />
       <source>Alt+Shift+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2013" />
-      <location filename="../QScintilla/MiniEditor.py" line="2010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2006" />
       <source>Extend rectangular selection up one page</source>
       <translation>Rozšířit obdélníkový výběr o předchozí stranu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2016" />
+      <location filename="../QScintilla/MiniEditor.py" line="2012" />
       <source>Alt+Shift+PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2029" />
-      <location filename="../QScintilla/MiniEditor.py" line="2026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2022" />
       <source>Extend rectangular selection down one page</source>
       <translation>Rozšířit obdélníkový výběr o následující stranu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2032" />
+      <location filename="../QScintilla/MiniEditor.py" line="2028" />
       <source>Alt+Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2036" />
       <source>Meta+Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="2048" />
+      <location filename="../QScintilla/MiniEditor.py" line="2511" />
+      <location filename="../QScintilla/MiniEditor.py" line="2510" />
+      <location filename="../QScintilla/MiniEditor.py" line="2045" />
+      <location filename="../QScintilla/MiniEditor.py" line="2044" />
       <source>Duplicate current selection</source>
       <translation>Duplikovat aktuální výběr</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2516" />
-      <location filename="../QScintilla/MiniEditor.py" line="2050" />
+      <location filename="../QScintilla/MiniEditor.py" line="2512" />
+      <location filename="../QScintilla/MiniEditor.py" line="2046" />
       <source>Ctrl+Shift+D</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2064" />
-      <location filename="../QScintilla/MiniEditor.py" line="2061" />
+      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2057" />
       <source>Scroll to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
-      <location filename="../QScintilla/MiniEditor.py" line="2083" />
-      <location filename="../QScintilla/MiniEditor.py" line="2082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2079" />
+      <location filename="../QScintilla/MiniEditor.py" line="2078" />
       <source>Scroll to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2102" />
-      <location filename="../QScintilla/MiniEditor.py" line="2099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2095" />
       <source>Scroll vertically to center current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2112" />
+      <location filename="../QScintilla/MiniEditor.py" line="2108" />
       <source>Meta+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
-      <location filename="../QScintilla/MiniEditor.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2120" />
+      <location filename="../QScintilla/MiniEditor.py" line="2117" />
+      <location filename="../QScintilla/MiniEditor.py" line="2116" />
       <source>Move to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2140" />
-      <location filename="../QScintilla/MiniEditor.py" line="2137" />
+      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2133" />
       <source>Extend selection to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2163" />
-      <location filename="../QScintilla/MiniEditor.py" line="2160" />
+      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2156" />
       <source>Move to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2180" />
-      <location filename="../QScintilla/MiniEditor.py" line="2177" />
+      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2173" />
       <source>Extend selection to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2197" />
-      <location filename="../QScintilla/MiniEditor.py" line="2194" />
+      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2190" />
       <source>Move to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2207" />
+      <location filename="../QScintilla/MiniEditor.py" line="2203" />
       <source>Meta+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2218" />
-      <location filename="../QScintilla/MiniEditor.py" line="2215" />
+      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2211" />
       <source>Extend selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2229" />
+      <location filename="../QScintilla/MiniEditor.py" line="2225" />
       <source>Meta+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2242" />
       <location filename="../QScintilla/MiniEditor.py" line="2238" />
+      <location filename="../QScintilla/MiniEditor.py" line="2234" />
       <source>Extend rectangular selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2254" />
+      <location filename="../QScintilla/MiniEditor.py" line="2250" />
       <source>Meta+Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2266" />
-      <location filename="../QScintilla/MiniEditor.py" line="2263" />
+      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2259" />
       <source>Extend selection to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2289" />
-      <location filename="../QScintilla/MiniEditor.py" line="2286" />
+      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2282" />
       <source>Move to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2307" />
       <location filename="../QScintilla/MiniEditor.py" line="2303" />
+      <location filename="../QScintilla/MiniEditor.py" line="2299" />
       <source>Extend selection to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2326" />
       <location filename="../QScintilla/MiniEditor.py" line="2322" />
+      <location filename="../QScintilla/MiniEditor.py" line="2318" />
       <source>Move to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2346" />
-      <location filename="../QScintilla/MiniEditor.py" line="2341" />
+      <location filename="../QScintilla/MiniEditor.py" line="2342" />
+      <location filename="../QScintilla/MiniEditor.py" line="2337" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2365" />
-      <location filename="../QScintilla/MiniEditor.py" line="2362" />
+      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2358" />
       <source>Move to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2382" />
-      <location filename="../QScintilla/MiniEditor.py" line="2379" />
+      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2375" />
       <source>Extend selection to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
-      <location filename="../QScintilla/MiniEditor.py" line="2397" />
-      <location filename="../QScintilla/MiniEditor.py" line="2396" />
+      <location filename="../QScintilla/MiniEditor.py" line="2393" />
+      <location filename="../QScintilla/MiniEditor.py" line="2392" />
       <source>Stuttered move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2412" />
-      <location filename="../QScintilla/MiniEditor.py" line="2409" />
+      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2405" />
       <source>Stuttered extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2429" />
-      <location filename="../QScintilla/MiniEditor.py" line="2426" />
+      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2422" />
       <source>Stuttered move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2446" />
-      <location filename="../QScintilla/MiniEditor.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2439" />
       <source>Stuttered extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2463" />
-      <location filename="../QScintilla/MiniEditor.py" line="2460" />
+      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2456" />
       <source>Delete right to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2473" />
+      <location filename="../QScintilla/MiniEditor.py" line="2469" />
       <source>Alt+Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2484" />
-      <location filename="../QScintilla/MiniEditor.py" line="2481" />
+      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2477" />
       <source>Move selected lines up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2501" />
-      <location filename="../QScintilla/MiniEditor.py" line="2498" />
+      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2494" />
       <source>Move selected lines down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2547" />
+      <location filename="../QScintilla/MiniEditor.py" line="2543" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hledat&lt;/b&gt;
 &lt;p&gt;Hledat text v aktuálním editoru. Zobrazí se dialogové okno, do kterého se zadá hledaný text a další nastavení.&lt;p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2573" />
+      <location filename="../QScintilla/MiniEditor.py" line="2569" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hledat další&lt;/b&gt;&lt;p&gt;Hledá se další výskyt hledaného textu v aktuálním editoru. Stále platí nastavení, která byla nastavena při zadání hledaného textu.&lt;p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2603" />
+      <location filename="../QScintilla/MiniEditor.py" line="2599" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hledat předchozí&lt;/b&gt;&lt;p&gt;Hledá se předchozí výskyt hledaného textu v aktuálním editoru. Stále platí nastavení, která byla nastavena při zadání hledaného textu.&lt;p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2617" />
-      <location filename="../QScintilla/MiniEditor.py" line="2615" />
+      <location filename="../QScintilla/MiniEditor.py" line="2613" />
+      <location filename="../QScintilla/MiniEditor.py" line="2611" />
       <source>Clear search markers</source>
       <translation>Vyčistit značky hledání</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2619" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2628" />
+      <location filename="../QScintilla/MiniEditor.py" line="2624" />
       <source>Clear all displayed search markers</source>
       <translation>Vyčistit všechny zobrazené začky hledání</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2633" />
+      <location filename="../QScintilla/MiniEditor.py" line="2629" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Vyčistit značky hledání&lt;/b&gt;&lt;p&gt;Smažou všechny zabrazené značky hledání.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2639" />
       <source>Replace</source>
       <translation>Nahradit</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2644" />
+      <location filename="../QScintilla/MiniEditor.py" line="2640" />
       <source>&amp;Replace...</source>
       <translation>Nah&amp;radit...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2646" />
+      <location filename="../QScintilla/MiniEditor.py" line="2642" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2653" />
+      <location filename="../QScintilla/MiniEditor.py" line="2649" />
       <source>Replace some text</source>
       <translation>Hledat nějaký text</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2656" />
+      <location filename="../QScintilla/MiniEditor.py" line="2652" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nahradit&lt;/b&gt;
 &lt;p&gt;Vyhledá va ktuálním editoru text a nahradí jej. Je zobrazeno dialogové okno, kde se zadá text, který se má nahradit, nový text a nastavení pro vyhledávání a nahrazení.&lt;p&gt;</translation>
@@ -93174,81 +93282,81 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2670" />
-      <location filename="../QScintilla/MiniEditor.py" line="2668" />
+      <location filename="../QScintilla/MiniEditor.py" line="2666" />
+      <location filename="../QScintilla/MiniEditor.py" line="2664" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2672" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2681" />
+      <location filename="../QScintilla/MiniEditor.py" line="2677" />
       <source>Replace the found text and search the next occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2686" />
+      <location filename="../QScintilla/MiniEditor.py" line="2682" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2702" />
-      <location filename="../QScintilla/MiniEditor.py" line="2700" />
+      <location filename="../QScintilla/MiniEditor.py" line="2698" />
+      <location filename="../QScintilla/MiniEditor.py" line="2696" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2704" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2713" />
+      <location filename="../QScintilla/MiniEditor.py" line="2709" />
       <source>Replace the found text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2716" />
+      <location filename="../QScintilla/MiniEditor.py" line="2712" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2729" />
-      <location filename="../QScintilla/MiniEditor.py" line="2727" />
+      <location filename="../QScintilla/MiniEditor.py" line="2725" />
+      <location filename="../QScintilla/MiniEditor.py" line="2723" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2731" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2740" />
+      <location filename="../QScintilla/MiniEditor.py" line="2736" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2743" />
+      <location filename="../QScintilla/MiniEditor.py" line="2739" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -95212,29 +95320,29 @@
       <translation>&amp;Edit...</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7350" />
-      <location filename="../ViewManager/ViewManager.py" line="7336" />
-      <location filename="../ViewManager/ViewManager.py" line="7304" />
+      <location filename="../ViewManager/ViewManager.py" line="7349" />
+      <location filename="../ViewManager/ViewManager.py" line="7335" />
+      <location filename="../ViewManager/ViewManager.py" line="7303" />
       <source>Edit Spelling Dictionary</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7307" />
+      <location filename="../ViewManager/ViewManager.py" line="7306" />
       <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="7323" />
+      <location filename="../ViewManager/ViewManager.py" line="7322" />
       <source>Editing {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7339" />
+      <location filename="../ViewManager/ViewManager.py" line="7338" />
       <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="7353" />
+      <location filename="../ViewManager/ViewManager.py" line="7352" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation type="unfinished" />
     </message>
@@ -96295,7 +96403,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="135" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="136" />
       <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="96" />
       <source>Failed
 
@@ -96303,46 +96411,46 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="144" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="145" />
       <source>
 pyvenv finished.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="159" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="160" />
       <source>No suitable pyvenv program could be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="222" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="223" />
       <source>
 Writing log file '{0}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="226" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="227" />
       <source>Output:
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="231" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="232" />
       <source>Errors:
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="235" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="236" />
       <source>The logfile '{0}' could not be written.
 Reason: {1}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="239" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="240" />
       <source>Done.
 </source>
       <translation type="unfinished" />
@@ -98532,32 +98640,32 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2312" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2341" />
       <source>Quota Request</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2313" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2342" />
       <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="2389" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2385" />
       <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="2397" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2393" />
       <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="2402" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2398" />
       <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="2409" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2405" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -101547,28 +101655,28 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="143" />
       <source>No current editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="145" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
       <source>Please open or create a file first.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="182" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="166" />
+      <source>Create Package</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
+      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;p&gt;Adresář balíčku &lt;b&gt;{0}&lt;/b&gt; nelze vytvořit. Zrušeno...&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Plugins/PluginWizardEricPlugin.py" line="183" />
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
-      <source>Create Package</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="168" />
-      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;p&gt;Adresář balíčku &lt;b&gt;{0}&lt;/b&gt; nelze vytvořit. Zrušeno...&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="184" />
       <source>&lt;p&gt;The package file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor balíčku &lt;b&gt;{0}&lt;/b&gt; nelze vytvořit. Zrušeno...&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
@@ -101833,38 +101941,38 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1270" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1274" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Rodič #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Množina změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1801" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1282" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&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;Tagy&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1807" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1284" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1811" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1288" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1814" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1291" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1295" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&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;Větve&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1297" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1301" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Poslední autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum zapsání změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Čas zapsání změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1320" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -101875,35 +101983,35 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1775" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1779" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1782" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1786" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1793" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1794" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1798" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&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;Množina změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1825" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&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;Rodiče&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1831" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -102584,17 +102692,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1814" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
       <source>unknown</source>
       <translation>neznámý</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1822" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Informace z repozitáře&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Aktuální revize&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revize zápisu změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum zápisu změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Čas zápisu změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Poslední autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1667" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1670" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Informace z repozitáře&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Aktuální revize&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revize zápisu změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum zápisu změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Čas zápisu změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Poslední autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
Binary file src/eric7/i18n/eric7_de.qm has changed
--- a/src/eric7/i18n/eric7_de.ts	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/i18n/eric7_de.ts	Sun Jul 02 17:39:33 2023 +0200
@@ -1262,6 +1262,16 @@
       <source>type annotation is too long ({0} &gt; {1})</source>
       <translation>Typ Annotation is zu lang ({0} &gt; {1})</translation>
     </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="76" />
+      <source>'typing.Union' is deprecated, use '|' instead (see PEP 604)</source>
+      <translation>'typing.Union' ist veraltet, verwende stattdessen '|' (siehe PEP 604)</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="80" />
+      <source>'typing.{0}' is deprecated, use '{1}' instead (see PEP 585)</source>
+      <translation>'typing.{0}' ist veraltet, verwende stattdessen '{1}' (siehe PEP 585)</translation>
+    </message>
   </context>
   <context>
     <name>ApplicationDiagramBuilder</name>
@@ -1695,42 +1705,42 @@
       <translation>{0} nicht konfiguriert.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
+      <location filename="../Utilities/BackgroundService.py" line="217" />
       <source>Initialization of Background Service</source>
       <translation>Initialisierung des Hintergrunddienstes</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="219" />
+      <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>Restart background client?</source>
+      <translation>Hintergrund Client neu starten?</translation>
+    </message>
+    <message>
       <location filename="../Utilities/BackgroundService.py" line="232" />
-      <source>Restart background client?</source>
-      <translation>Hintergrund Client neu starten?</translation>
-    </message>
-    <message>
-      <location filename="../Utilities/BackgroundService.py" line="233" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der Hintergund Client für &lt;b&gt;{0}&lt;/b&gt; wurde durch eine Exception gestoppt. Er wird für verschiedene Plugins, wie z.B. die Checker, verwendet.&lt;/p&gt;&lt;p&gt;Wähle:&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Ja'&lt;/b&gt;, um den Client aber nicht den letzten Job neu zu starten&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Wiederholen'&lt;/b&gt;, um den Client und letzten Job neu zu starten&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Nein'&lt;/b&gt;, um den Client nicht neu zu starten.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Hinweis: Der Client kann immer wieder gestartet werden, indem der Einstellungsdialog mit Ok geschlossen wird oder durch das Neuladen/ Wechseln des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="262" />
+      <location filename="../Utilities/BackgroundService.py" line="261" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation>Ein Fehler im Eric Hintergrunddienst hat den Dienst beendet.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="497" />
+      <location filename="../Utilities/BackgroundService.py" line="502" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation>Die Verbindung zu Erics Hintergund Client wurde aus unbekanntem Grund getrennt.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="506" />
+      <location filename="../Utilities/BackgroundService.py" line="511" />
       <source>Background client disconnected.</source>
       <translation>Hintergrund Client wurde getrennt.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="507" />
+      <location filename="../Utilities/BackgroundService.py" line="512" />
       <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>
@@ -1793,22 +1803,22 @@
       <translation>Befehl wird nicht unterstützt.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>Yes</source>
       <translation>Ja</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>No</source>
       <translation>Nein</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>yes</source>
       <translation>ja</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>no</source>
       <translation>nein</translation>
     </message>
@@ -2224,26 +2234,31 @@
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="97" />
-      <source>Complete {0}-bit Service UUID: {1}</source>
-      <translation>Vollständige {0}-bit Dienst UUID: {1}</translation>
+      <source>Complete {0}-bit Service UUID: {1}{2}</source>
+      <translation>Vollständige {0}-bit Dienst UUID: {1}{2}</translation>
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="99" />
-      <source>Incomplete {0}-bit Service UUID: {1}</source>
-      <translation>Unvollständige {0}-bit Dienst UUID: {1}</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="110" />
-      <source>Manufacturer ID: 0x{0:x} ({1})</source>
-      <translation>Hersteller ID: 0x{0:x} ({1})</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="114" />
+      <source>Incomplete {0}-bit Service UUID: {1}{2}</source>
+      <translation>Unvollständige {0}-bit Dienst UUID: {1}{2}</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="107" />
+      <source> - {0}</source>
+      <translation> - {0}</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="121" />
+      <source>Manufacturer ID: 0x{0:x} - {1}</source>
+      <translation>Hersteller ID: 0x{0:x} - {1}</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="125" />
       <source>Manufacturer ID: 0x{0:x}</source>
       <translation>Hersteller ID: 0x{0:x}</translation>
     </message>
     <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="123" />
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="134" />
       <source>Tx Power Level [dBm]: {0}</source>
       <translation>Sendeleistung [dBm]: {0}</translation>
     </message>
@@ -2744,17 +2759,17 @@
       <translation>&amp;Neuer Ordner...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="335" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
       <source>New Bookmark Folder</source>
       <translation>Neuer Lesezeichenordner</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="337" />
       <source>Enter title for new bookmark folder:</source>
       <translation>Gib den Titel des neuen Lesezeichenordners ein:</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="343" />
       <source>New Folder</source>
       <translation>Neuer Ordner</translation>
     </message>
@@ -2858,22 +2873,22 @@
       <translation>Lesezeichenmenü</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="543" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="541" />
       <source>Remove Bookmark</source>
       <translation>Lesezeichen löschen</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="585" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="583" />
       <source>Insert Bookmark</source>
       <translation>Lesezeichen einfügen</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="626" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="624" />
       <source>Name Change</source>
       <translation>Namensänderung</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="630" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="628" />
       <source>Address Change</source>
       <translation>Adressenänderung</translation>
     </message>
@@ -2910,22 +2925,22 @@
       <translation>Fehler beim Speichern der Lesezeichen in &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="399" />
       <source>Export Bookmarks</source>
       <translation>Lesezeichen exportieren</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="403" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
       <source>XBEL bookmarks (*.xbel);;XBEL bookmarks (*.xml);;HTML Bookmarks (*.html)</source>
       <translation>XBEL Lesezeichen (*.xbel);;XBEL Lesezeichen (*.xml);;HTML Lesezeichen (*.html)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="429" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="427" />
       <source>Exporting Bookmarks</source>
       <translation>Lesezeichen exportieren</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="430" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="428" />
       <source>Error exporting bookmarks to &lt;b&gt;{0}&lt;/b&gt;.</source>
       <translation>Fehler beim Exportieren der Lesezeichen in &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
@@ -3183,231 +3198,231 @@
       <translation>&lt;b&gt;Das Browserfenster&lt;/b&gt;&lt;p&gt;Dies erlaubt es Ihnen, sich leicht in der Verzeichnishierarchie Ihres Systems zu bewegen, Python-Programme zu identifizieren und diese in einem Quelltextfenster zu öffnen. Das Fenster stellt verschiedene Hierarchien dar.&lt;/p&gt;&lt;p&gt;Die erste wird nur angezeigt, wenn ein Programm zum Debuggen geöffnet ist. Gewöhnlich werden alle zum Programm zugehörigen Python-Dateien im selben Verzeichnis gespeichert, so dass Sie über diese Hierarchie Zugriff auf das am meisten Benötigte haben.&lt;/p&gt;&lt;p&gt;Die nächste Hierarchie wird verwendet, um sich in den in der Python-Variable &lt;tt&gt;sys.path&lt;/tt&gt; gespeicherten Verzeichnissen zu bewegen.&lt;/p&gt;&lt;p&gt;Die restlichen Hierachien erlauben die Navigation im gesamten System. Unter Unix wird gewöhnlich ein Verzeichnis mit &lt;tt&gt;/&lt;/tt&gt; als Wurzel und eines mit dem Home-Verzeichnis des Nutzers angezeigt. Auf einem Windows-System wird eine Hierarchie pro Laufwerk angezeigt.&lt;/p&gt;&lt;p&gt;Python-Programme (Dateien mit der Endung &lt;tt&gt;.py&lt;/tt&gt;) werden mit einem Python-Symbol dargestellt. Ein Rechtsklick bringt ein Kontextmenü, über das die Datei in einem Editor, zum Debuggen oder für einen Modultest geöffnet werden kann.&lt;/p&gt;&lt;p&gt;Das Kontextmenü einer Klasse, einer Funktion oder einer Methode öffnet die Datei, in der diese Klasse, Funktion oder Methode definiert ist, und stellt sicher, dass die richtige Codezeile sichtbar ist.&lt;/p&gt;&lt;p&gt;Qt-Designer-Dateien (Dateien mit der Endung &lt;tt&gt;.ui&lt;/tt&gt;) werden mit einem Designer-Symbol dargestellt. Das Kontextmenü dieser Dateien erlaubt es, sie im Qt Designer zu öffnen.&lt;/p&gt;&lt;p&gt;Qt-Linguist-Dateien (Dateien mit der Endung &lt;tt&gt;.ts&lt;/tt&gt;) werden mit einem Linguist-Symbol dargestellt. Das Kontextmenü dieser Dateien erlaubt es, sie im Qt Linguist zu öffnen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="238" />
+      <location filename="../UI/Browser.py" line="239" />
       <source>Show Hidden Files</source>
       <translation>Versteckte Dateien anzeigen</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="244" />
+      <location filename="../UI/Browser.py" line="245" />
       <source>New</source>
       <translation>Neu</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="246" />
+      <location filename="../UI/Browser.py" line="247" />
       <source>Directory</source>
       <translation>Verzeichnis</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="249" />
+      <location filename="../UI/Browser.py" line="250" />
       <source>File</source>
       <translation>Datei</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="323" />
-      <location filename="../UI/Browser.py" line="285" />
-      <location filename="../UI/Browser.py" line="255" />
+      <location filename="../UI/Browser.py" line="324" />
+      <location filename="../UI/Browser.py" line="286" />
+      <location filename="../UI/Browser.py" line="256" />
       <source>Open</source>
       <translation>Öffnen</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="258" />
+      <location filename="../UI/Browser.py" line="259" />
       <source>Run Test...</source>
       <translation>Modultest …</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="622" />
-      <location filename="../UI/Browser.py" line="614" />
-      <location filename="../UI/Browser.py" line="604" />
-      <location filename="../UI/Browser.py" line="595" />
-      <location filename="../UI/Browser.py" line="305" />
-      <location filename="../UI/Browser.py" line="262" />
-      <source>Show Mime-Type</source>
-      <translation>MIME-Typ anzeigen</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="266" />
-      <source>Refresh Source File</source>
-      <translation>Quelltextdatei aktualisieren</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="361" />
-      <location filename="../UI/Browser.py" line="309" />
-      <location filename="../UI/Browser.py" line="271" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Pfad in die Zwischenablage kopieren</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="369" />
-      <location filename="../UI/Browser.py" line="329" />
-      <location filename="../UI/Browser.py" line="317" />
-      <location filename="../UI/Browser.py" line="279" />
-      <source>Delete</source>
-      <translation>Löschen</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="288" />
-      <source>Open in Hex Editor</source>
-      <translation>Mit Hex-Editor öffnen</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="292" />
-      <source>Open in Icon Editor</source>
-      <translation>Mit Icon-Editor öffnen</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="296" />
-      <source>Open in Editor</source>
-      <translation>Mit Editor öffnen</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="300" />
-      <source>Open in PDF Viewer</source>
-      <translation>Mit PDF Anzeige öffnen</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="388" />
-      <location filename="../UI/Browser.py" line="379" />
-      <location filename="../UI/Browser.py" line="335" />
-      <source>New toplevel directory...</source>
-      <translation>Neuer übergeordneter Ordner …</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="339" />
-      <source>Add as toplevel directory</source>
-      <translation>Als übergeordneten Ordner hinzufügen</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="343" />
-      <source>Remove from toplevel</source>
-      <translation>Vom Anfang entfernen</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="348" />
-      <source>Refresh directory</source>
-      <translation>Verzeichnis aktualisieren</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="353" />
-      <source>Find in this directory</source>
-      <translation>In diesem Verzeichnis suchen</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="357" />
-      <source>Find &amp;&amp; Replace in this directory</source>
-      <translation>In diesem Verzeichnis suchen &amp;&amp; ersetzen</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="373" />
-      <source>Goto</source>
-      <translation>Gehe zu</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="491" />
-      <source>Line {0}</source>
-      <translation>Zeile {0}</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="596" />
-      <source>The mime type of the file could not be determined.</source>
-      <translation>Der MIME-Typ der Datei konnte nicht ermittelt werden.</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="615" />
-      <location filename="../UI/Browser.py" line="605" />
-      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
-      <translation>Die Datei hat den MIME-Typ &lt;b&gt;{0}&lt;/b&gt;.</translation>
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="623" />
+      <location filename="../UI/Browser.py" line="615" />
+      <location filename="../UI/Browser.py" line="605" />
+      <location filename="../UI/Browser.py" line="596" />
+      <location filename="../UI/Browser.py" line="306" />
+      <location filename="../UI/Browser.py" line="263" />
+      <source>Show Mime-Type</source>
+      <translation>MIME-Typ anzeigen</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="267" />
+      <source>Refresh Source File</source>
+      <translation>Quelltextdatei aktualisieren</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="362" />
+      <location filename="../UI/Browser.py" line="310" />
+      <location filename="../UI/Browser.py" line="272" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Pfad in die Zwischenablage kopieren</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="370" />
+      <location filename="../UI/Browser.py" line="330" />
+      <location filename="../UI/Browser.py" line="318" />
+      <location filename="../UI/Browser.py" line="280" />
+      <source>Delete</source>
+      <translation>Löschen</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="289" />
+      <source>Open in Hex Editor</source>
+      <translation>Mit Hex-Editor öffnen</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="293" />
+      <source>Open in Icon Editor</source>
+      <translation>Mit Icon-Editor öffnen</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="297" />
+      <source>Open in Editor</source>
+      <translation>Mit Editor öffnen</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="301" />
+      <source>Open in PDF Viewer</source>
+      <translation>Mit PDF Anzeige öffnen</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="389" />
+      <location filename="../UI/Browser.py" line="380" />
+      <location filename="../UI/Browser.py" line="336" />
+      <source>New toplevel directory...</source>
+      <translation>Neuer übergeordneter Ordner …</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="340" />
+      <source>Add as toplevel directory</source>
+      <translation>Als übergeordneten Ordner hinzufügen</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="344" />
+      <source>Remove from toplevel</source>
+      <translation>Vom Anfang entfernen</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="349" />
+      <source>Refresh directory</source>
+      <translation>Verzeichnis aktualisieren</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="354" />
+      <source>Find in this directory</source>
+      <translation>In diesem Verzeichnis suchen</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="358" />
+      <source>Find &amp;&amp; Replace in this directory</source>
+      <translation>In diesem Verzeichnis suchen &amp;&amp; ersetzen</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="374" />
+      <source>Goto</source>
+      <translation>Gehe zu</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="492" />
+      <source>Line {0}</source>
+      <translation>Zeile {0}</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="597" />
+      <source>The mime type of the file could not be determined.</source>
+      <translation>Der MIME-Typ der Datei konnte nicht ermittelt werden.</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="616" />
+      <location filename="../UI/Browser.py" line="606" />
+      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
+      <translation>Die Datei hat den MIME-Typ &lt;b&gt;{0}&lt;/b&gt;.</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="624" />
       <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
       <translation>Die Datei hat den MIME-Typ &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt;Soll sie zur Liste der Text MIME-Typen hinzugefügt werden?</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="731" />
+      <location filename="../UI/Browser.py" line="732" />
       <source>New toplevel directory</source>
       <translation>Neuer übergeordneter Ordner</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="967" />
-      <location filename="../UI/Browser.py" line="955" />
-      <location filename="../UI/Browser.py" line="946" />
-      <source>New Directory</source>
-      <translation>Neues Verzeichnis</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="947" />
-      <source>Name for new directory:</source>
-      <translation>Name des neuen Verzeichnisses:</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="994" />
-      <location filename="../UI/Browser.py" line="956" />
-      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
-      <translation>Eine Datei oder ein Verzeichnis mit der Bezeichnung &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Abbruch...</translation>
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="968" />
+      <location filename="../UI/Browser.py" line="956" />
+      <location filename="../UI/Browser.py" line="947" />
+      <source>New Directory</source>
+      <translation>Neues Verzeichnis</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="948" />
+      <source>Name for new directory:</source>
+      <translation>Name des neuen Verzeichnisses:</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="995" />
+      <location filename="../UI/Browser.py" line="957" />
+      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
+      <translation>Eine Datei oder ein Verzeichnis mit der Bezeichnung &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Abbruch...</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="969" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Verzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht angelegt werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1006" />
-      <location filename="../UI/Browser.py" line="993" />
-      <location filename="../UI/Browser.py" line="984" />
-      <source>New File</source>
-      <translation>Neue Datei</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="985" />
-      <source>Name for new file:</source>
-      <translation>Name der neuen Datei:</translation>
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1007" />
+      <location filename="../UI/Browser.py" line="994" />
+      <location filename="../UI/Browser.py" line="985" />
+      <source>New File</source>
+      <translation>Neue Datei</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="986" />
+      <source>Name for new file:</source>
+      <translation>Name der neuen Datei:</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1008" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht angelegt werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1103" />
-      <location filename="../UI/Browser.py" line="1045" />
-      <location filename="../UI/Browser.py" line="1035" />
-      <source>Delete File</source>
-      <translation>Datei löschen</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1036" />
-      <source>Do you really want to delete this file?</source>
-      <translation>Soll diese Datei wirklich gelöscht werden?</translation>
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1104" />
       <location filename="../UI/Browser.py" line="1046" />
+      <location filename="../UI/Browser.py" line="1036" />
+      <source>Delete File</source>
+      <translation>Datei löschen</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1037" />
+      <source>Do you really want to delete this file?</source>
+      <translation>Soll diese Datei wirklich gelöscht werden?</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1105" />
+      <location filename="../UI/Browser.py" line="1047" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die ausgewählte Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1071" />
-      <location filename="../UI/Browser.py" line="1061" />
-      <source>Delete Directory</source>
-      <translation>Verzeichnis löschen</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1062" />
-      <source>Do you really want to delete this directory?</source>
-      <translation>Soll dieses Verzeichnis wirklich gelöscht werden?</translation>
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1072" />
+      <location filename="../UI/Browser.py" line="1062" />
+      <source>Delete Directory</source>
+      <translation>Verzeichnis löschen</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1063" />
+      <source>Do you really want to delete this directory?</source>
+      <translation>Soll dieses Verzeichnis wirklich gelöscht werden?</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1073" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das ausgewählte Verzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1092" />
-      <source>Delete Files</source>
-      <translation>Dateien löschen</translation>
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1093" />
+      <source>Delete Files</source>
+      <translation>Dateien löschen</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1094" />
       <source>Do you really want to delete these files?</source>
       <translation>Sollen diese Dateien wirklich gelöscht werden?</translation>
     </message>
@@ -5065,27 +5080,27 @@
       <translation>Fehler: {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1210" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1221" />
       <source>{0} (ignored)</source>
       <translation>{0} (ignoriert)</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1285" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1296" />
       <source>No issues found.</source>
       <translation>Keine Probleme gefunden.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1289" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1300" />
       <source>No files found (check your ignore list).</source>
       <translation>Keine Dateien gefunden (überprüfe die Ignorierliste).</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2891" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2935" />
       <source>Commented Code Whitelist Pattern</source>
       <translation>'Commented Code' Whitelist Muster</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2892" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2936" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation>Ein 'Commented Code' Whitelist Muster eingeben</translation>
     </message>
@@ -5571,6 +5586,16 @@
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Exempted 'typing' symbols:</source>
+      <translation>Ausgenommene 'typing' Symbole:</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Enter deprecated symbols of the 'typing' module exempted from PEP-585 checking separated by space</source>
+      <translation>Gib veraltete Symbole des 'typing' Moduls durch Komma getrennt an, die von der PEP 585 Prüfung ausgenommen werden sollen</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
       <source>Security</source>
       <translation>Sicherheit</translation>
     </message>
@@ -6455,7 +6480,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="174" />
+      <location filename="../Utilities/__init__.py" line="176" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>Die Kodierung „{0}“ ist für den übergebenen Text falsch.</translation>
     </message>
@@ -7583,375 +7608,378 @@
   <context>
     <name>ConfigurationWidget</name>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="174" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="175" />
       <source>Application</source>
       <translation>Applikation</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="180" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="181" />
       <source>Conda</source>
       <translation>Conda</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="182" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="183" />
       <source>Cooperation</source>
       <translation>Zusammenarbeit</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="189" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="190" />
       <source>Diff</source>
       <translation>Diff</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="196" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="197" />
       <source>Email</source>
       <translation>E-Mail</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="203" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="204" />
       <source>Graphics</source>
       <translation>Grafiken</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="865" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="210" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="866" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="211" />
       <source>Hex Editor</source>
       <translation>Hex-Editor</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="946" />
       <location filename="../Preferences/ConfigurationDialog.py" line="914" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="882" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="851" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="754" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="639" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="217" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="883" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="852" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="755" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="640" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="218" />
       <source>Icons</source>
       <translation>Icons</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="223" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="224" />
       <source>IRC</source>
       <translation>IRC</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="225" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="226" />
       <source>Log-Viewer</source>
       <translation>Ausgabefenster</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="232" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="233" />
       <source>MicroPython</source>
       <translation>MicroPython</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="239" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="240" />
       <source>MIME-Types</source>
       <translation>MIME-Typen</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="768" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="246" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="769" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="247" />
       <source>Network</source>
       <translation>Netzwerk</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="253" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="254" />
       <source>Notifications</source>
       <translation>Benachrichtigungen</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="896" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="260" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="897" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="261" />
       <source>PDF Viewer</source>
       <translation>PDF Anzeige</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="267" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="928" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="268" />
       <source>Python Package Management</source>
       <translation>Python Paketmanagement</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="274" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="275" />
       <source>Plugin Manager</source>
       <translation>Pluginmanager</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="775" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="653" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="281" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="776" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="654" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="282" />
       <source>Printer</source>
       <translation>Drucker</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="288" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="289" />
       <source>Python</source>
       <translation>Python</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="294" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="295" />
       <source>Qt</source>
       <translation>Qt</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="782" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="296" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="783" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="297" />
       <source>Security</source>
       <translation>Sicherheit</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="303" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="304" />
       <source>Shell</source>
       <translation>Shell</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="309" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="310" />
       <source>Tasks</source>
       <translation>Aufgaben</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="311" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="312" />
       <source>Templates</source>
       <translation>Vorlagen</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="834" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="318" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="835" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="319" />
       <source>Tray Starter</source>
       <translation>Systemstarter</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="325" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="326" />
       <source>Version Control Systems</source>
       <translation>Versionskontrollsysteme</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="332" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="333" />
       <source>Debugger</source>
       <translation>Debugger</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="667" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="374" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="339" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="668" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="375" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="340" />
       <source>General</source>
       <translation>Allgemein</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="346" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="347" />
       <source>Python3</source>
       <translation>Python 3</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="660" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="353" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="661" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="354" />
       <source>Editor</source>
       <translation>Editor</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="360" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="361" />
       <source>APIs</source>
       <translation>APIs</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="367" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="368" />
       <source>Documentation Viewer</source>
       <translation>Dokumentationsanzeige</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="674" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="381" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="675" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="382" />
       <source>Filehandling</source>
       <translation>Dateibehandlung</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="681" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="388" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="682" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="389" />
       <source>Searching</source>
       <translation>Suchen</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="817" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="688" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="617" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="395" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="818" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="689" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="618" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="396" />
       <source>Spell checking</source>
       <translation>Rechtschreibprüfung</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="695" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="402" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="696" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="403" />
       <source>Style</source>
       <translation>Stil</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="409" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="410" />
       <source>Code Checkers</source>
       <translation>Quelltextprüfungen</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="702" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="416" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="703" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="417" />
       <source>Typing</source>
       <translation>Eingabe</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="423" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="424" />
       <source>Exporters</source>
       <translation>Exporter</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="430" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="431" />
       <source>Autocompletion</source>
       <translation>Automatische Vervollständigung</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="458" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="437" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="459" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="438" />
       <source>QScintilla</source>
       <translation>QScintilla</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="514" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="465" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="444" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="515" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="466" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="445" />
       <source>Jedi</source>
       <translation>Jedi</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="451" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="452" />
       <source>Calltips</source>
       <translation>Calltips</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="709" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="472" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="710" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="473" />
       <source>Highlighters</source>
       <translation>Syntaxhervorhebung</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="716" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="479" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="717" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="480" />
       <source>Filetype Associations</source>
       <translation>Dateitypzuordnungen</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="723" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="486" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="724" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="487" />
       <source>Styles</source>
       <translation>Stile</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="730" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="493" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="731" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="494" />
       <source>Keywords</source>
       <translation>Schlüsselwörter</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="737" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="500" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="738" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="501" />
       <source>Properties</source>
       <translation>Einstellungen</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="507" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="508" />
       <source>Mouse Click Handlers</source>
       <translation>Maus Klick Handlers</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="520" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="521" />
       <source>Help</source>
       <translation>Hilfe</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="789" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="522" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="790" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="523" />
       <source>Help Documentation</source>
       <translation>Hilfe Dokumentation</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="529" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="530" />
       <source>Help Viewers</source>
       <translation>Hilfeanzeiger</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="550" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="536" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="551" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="537" />
       <source>Project</source>
       <translation>Projekt</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="543" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="544" />
       <source>Project Viewer</source>
       <translation>Projektanzeige</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="557" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="558" />
       <source>Multiproject</source>
       <translation>Mehrfachprojekt</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="953" />
       <location filename="../Preferences/ConfigurationDialog.py" line="921" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="889" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="858" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="761" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="646" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="571" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="564" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="890" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="859" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="762" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="647" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="572" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="565" />
       <source>Interface</source>
       <translation>Oberfläche</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="578" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="579" />
       <source>Viewmanager</source>
       <translation>Ansichtenmanager</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="589" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="590" />
       <source>Web Browser</source>
       <translation>Web Browser</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="796" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="596" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="797" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="597" />
       <source>Appearance</source>
       <translation>Erscheinung</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="803" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="603" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="804" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="604" />
       <source>eric Web Browser</source>
       <translation>eric Web Browser</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="810" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="610" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="811" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="611" />
       <source>VirusTotal Interface</source>
       <translation>VirusTotal-Schnittstelle</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1007" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1039" />
       <source>Enter search text...</source>
       <translation>Suchtext eingeben...</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1080" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1112" />
       <source>Preferences</source>
       <translation>Einstellungen</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1086" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1118" />
       <source>Please select an entry of the list 
 to display the configuration page.</source>
       <translation>Wähle einen Listeneintrag aus,
 um die Konfigurationsseite anzuzeigen.</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1163" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1195" />
       <source>Configuration Page Error</source>
       <translation>Konfigurationsseitenfehler</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1164" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1196" />
       <source>&lt;p&gt;The configuration page &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Konfigurationsseite &lt;b&gt;{0}&lt;/b&gt; konnte nicht geladen werden.&lt;/p&gt;</translation>
     </message>
@@ -10408,26 +10436,26 @@
       <translation>Ausgewählte Schnittstelle</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Add allowed host</source>
       <translation>Zugelassene Rechner hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Gib die IP-Adresse eines zugelassenen Rechners ein</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
+      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Die eingegebene Adresse &lt;b&gt;{0}&lt;/b&gt; ist keine gültige IPv4- oder IPv6-Adresse. Abbruch …&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
-      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Die eingegebene Adresse &lt;b&gt;{0}&lt;/b&gt; ist keine gültige IPv4- oder IPv6-Adresse. Abbruch …&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
       <source>Edit allowed host</source>
       <translation>Zugelassene Rechner bearbeiten</translation>
     </message>
@@ -11921,42 +11949,42 @@
   <context>
     <name>DownloadManager</name>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="111" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="113" />
       <source>Open</source>
       <translation>Öffnen</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="117" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="119" />
       <source>Cancel</source>
       <translation>Abbrechen</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="122" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="124" />
       <source>Open Containing Folder</source>
       <translation>Übergeordnetes Verzeichnis öffnen</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="125" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="127" />
       <source>Go to Download Page</source>
       <translation>Zur Downloadseite gehen</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="126" />
-      <source>Copy Download Link</source>
-      <translation>Downloadlink kopieren</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/Download/DownloadManager.py" line="128" />
+      <source>Copy Download Link</source>
+      <translation>Downloadlink kopieren</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="130" />
       <source>Select All</source>
       <translation>Alles auswählen</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="137" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="139" />
       <source>Remove From List</source>
       <translation>Aus der Liste löschen</translation>
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="172" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="174" />
       <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
       <translation>
@@ -11967,34 +11995,34 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="264" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="266" />
       <source>Suspicuous URL detected</source>
       <translation>Fragwürdige URL entdeckt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="265" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="267" />
       <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
       <translation>&lt;p&gt;Die URL &lt;b&gt;{0}&lt;/b&gt; wurde in der Safe Browsing Datenbank gefunden.&lt;/p&gt;{1}</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="500" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="502" />
       <source>Downloads finished</source>
       <translation>Downloads erledigt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="501" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="503" />
       <source>All files have been downloaded.</source>
       <translation>Alle Dateien wurden heruntergeladen.</translation>
     </message>
     <message>
       <location filename="../WebBrowser/Download/DownloadManager.ui" line="0" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="586" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="509" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="588" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="511" />
       <source>Download Manager</source>
       <translation>Downloads</translation>
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="619" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="621" />
       <source>{0}% of %n file(s) ({1}) {2}</source>
       <translation>
         <numerusform>{0}% von einer Datei ({1}) {2}</numerusform>
@@ -12002,7 +12030,7 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="627" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="629" />
       <source>{0}% - Download Manager</source>
       <translation>{0}% - Downloads</translation>
     </message>
@@ -12246,7 +12274,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3335" />
+      <location filename="../QScintilla/Editor.py" line="3334" />
       <location filename="../QScintilla/Editor.py" line="428" />
       <location filename="../QScintilla/Editor.py" line="413" />
       <source>Open File</source>
@@ -12318,7 +12346,7 @@
       <translation>Kommentar entfernen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9154" />
+      <location filename="../QScintilla/Editor.py" line="9152" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation>Docstring erzeugen</translation>
@@ -12591,7 +12619,7 @@
       <translation>Rechtschreibung</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8272" />
+      <location filename="../QScintilla/Editor.py" line="8270" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>Rechtschreibprüfung...</translation>
@@ -12652,7 +12680,7 @@
       <translation>Haltepunkt bearbeiten...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5932" />
+      <location filename="../QScintilla/Editor.py" line="5929" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>Haltepunkt aktivieren</translation>
@@ -12844,386 +12872,386 @@
       <translation>Drucken abgebrochen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3277" />
+      <location filename="../QScintilla/Editor.py" line="3276" />
       <source>File Modified</source>
       <translation>Datei geändert</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3278" />
+      <location filename="../QScintilla/Editor.py" line="3277" />
       <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="3336" />
+      <location filename="../QScintilla/Editor.py" line="3335" />
       <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="3511" />
+      <location filename="../QScintilla/Editor.py" line="3492" />
+      <location filename="../QScintilla/Editor.py" line="3454" />
+      <source>Save File</source>
+      <translation>Datei sichern</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="3455" />
+      <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="3512" />
-      <location filename="../QScintilla/Editor.py" line="3493" />
-      <location filename="../QScintilla/Editor.py" line="3455" />
-      <source>Save File</source>
-      <translation>Datei sichern</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3456" />
-      <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="3513" />
       <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="3649" />
+      <location filename="../QScintilla/Editor.py" line="3646" />
       <source>Save File to Device</source>
       <translation>Datei auf Gerät speichern</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3650" />
+      <location filename="../QScintilla/Editor.py" line="3647" />
       <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="5106" />
+      <location filename="../QScintilla/Editor.py" line="5103" />
       <source>Autocompletion</source>
       <translation>Automatische Vervollständigung</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5107" />
+      <location filename="../QScintilla/Editor.py" line="5104" />
       <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="5235" />
+      <location filename="../QScintilla/Editor.py" line="5232" />
       <source>Auto-Completion Provider</source>
       <translation>Provider für automatische Vervollständigungen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5236" />
+      <location filename="../QScintilla/Editor.py" line="5233" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation>Der Provider für automatische Vervollständigungen namens '{0}' ist bereits registriert. Die Wiederholung wird ignoriert.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5528" />
+      <location filename="../QScintilla/Editor.py" line="5525" />
       <source>Call-Tips Provider</source>
       <translation>Calltipps-Provider</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5529" />
+      <location filename="../QScintilla/Editor.py" line="5526" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation>Der Calltipps-Provider namens '{0}' ist bereits registriert. Die Wiederholung wird ignoriert.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5936" />
+      <location filename="../QScintilla/Editor.py" line="5933" />
       <source>Disable breakpoint</source>
       <translation>Haltepunkt deaktivieren</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6315" />
+      <location filename="../QScintilla/Editor.py" line="6312" />
       <source>Code Coverage</source>
       <translation>Quelltext Abdeckung</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6316" />
+      <location filename="../QScintilla/Editor.py" line="6313" />
       <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="6391" />
-      <location filename="../QScintilla/Editor.py" line="6383" />
+      <location filename="../QScintilla/Editor.py" line="6388" />
+      <location filename="../QScintilla/Editor.py" line="6380" />
       <source>Show Code Coverage Annotations</source>
       <translation>Zeilen ohne Abdeckung Markieren</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6384" />
+      <location filename="../QScintilla/Editor.py" line="6381" />
       <source>All lines have been covered.</source>
       <translation>Alle Zeilen sind abgedeckt.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6392" />
+      <location filename="../QScintilla/Editor.py" line="6389" />
       <source>There is no coverage file available.</source>
       <translation>Es gibt keine Datei mit Abdeckungsinformationen.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6496" />
+      <location filename="../QScintilla/Editor.py" line="6493" />
       <source>Profile Data</source>
       <translation>Profildaten</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6497" />
+      <location filename="../QScintilla/Editor.py" line="6494" />
       <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="6658" />
-      <location filename="../QScintilla/Editor.py" line="6652" />
+      <location filename="../QScintilla/Editor.py" line="6655" />
+      <location filename="../QScintilla/Editor.py" line="6649" />
       <source>Syntax Error</source>
       <translation>Syntaxfehler</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6659" />
+      <location filename="../QScintilla/Editor.py" line="6656" />
       <source>No syntax error message available.</source>
       <translation>Keine Syntaxfehlermeldung verfügbar.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
-      <location filename="../QScintilla/Editor.py" line="6864" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
+      <location filename="../QScintilla/Editor.py" line="6863" />
       <source>Warning</source>
       <translation>Warnung</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
       <source>No warning messages available.</source>
       <translation>Keine Warnmeldungen verfügbar.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6934" />
+      <location filename="../QScintilla/Editor.py" line="6933" />
       <source>Style: {0}</source>
       <translation>Stil: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6937" />
+      <location filename="../QScintilla/Editor.py" line="6936" />
       <source>Warning: {0}</source>
       <translation>Warnung: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6944" />
+      <location filename="../QScintilla/Editor.py" line="6943" />
       <source>Error: {0}</source>
       <translation>Fehler: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Macro Name</source>
       <translation>Makro Name</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Select a macro name:</source>
       <translation>Wähle einen Makro Namen:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7077" />
+      <location filename="../QScintilla/Editor.py" line="7076" />
       <source>Load macro file</source>
       <translation>Lade Makrodatei</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7123" />
-      <location filename="../QScintilla/Editor.py" line="7079" />
+      <location filename="../QScintilla/Editor.py" line="7122" />
+      <location filename="../QScintilla/Editor.py" line="7078" />
       <source>Macro files (*.macro)</source>
       <translation>Makrodateien (*.macro)</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7100" />
+      <location filename="../QScintilla/Editor.py" line="7090" />
+      <source>Error loading macro</source>
+      <translation>Fehler beim Makro Laden</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7091" />
+      <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="7101" />
-      <location filename="../QScintilla/Editor.py" line="7091" />
-      <source>Error loading macro</source>
-      <translation>Fehler beim Makro Laden</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7092" />
-      <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="7102" />
       <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="7121" />
+      <location filename="../QScintilla/Editor.py" line="7120" />
       <source>Save macro file</source>
       <translation>Makrodatei schreiben</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7138" />
+      <source>Save macro</source>
+      <translation>Makro speichern</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7139" />
-      <source>Save macro</source>
-      <translation>Makro speichern</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7140" />
       <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="7154" />
+      <source>Error saving macro</source>
+      <translation>Fehler beim Makro speichern</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7155" />
-      <source>Error saving macro</source>
-      <translation>Fehler beim Makro speichern</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7156" />
       <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="7168" />
+      <source>Start Macro Recording</source>
+      <translation>Makroaufzeichnung starten</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7169" />
-      <source>Start Macro Recording</source>
-      <translation>Makroaufzeichnung starten</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7170" />
       <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="7195" />
+      <source>Macro Recording</source>
+      <translation>Makroaufzeichnung</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7196" />
-      <source>Macro Recording</source>
-      <translation>Makroaufzeichnung</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7197" />
       <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="7348" />
+      <location filename="../QScintilla/Editor.py" line="7346" />
       <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="7354" />
+      <location filename="../QScintilla/Editor.py" line="7352" />
       <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="7361" />
+      <location filename="../QScintilla/Editor.py" line="7359" />
       <source>File changed</source>
       <translation>Datei geändert</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7411" />
+      <location filename="../QScintilla/Editor.py" line="7409" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7716" />
+      <location filename="../QScintilla/Editor.py" line="7714" />
       <source>Drop Error</source>
       <translation>Drop Fehler</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7717" />
+      <location filename="../QScintilla/Editor.py" line="7715" />
       <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="7735" />
+      <source>Resources</source>
+      <translation>Ressourcen</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7737" />
-      <source>Resources</source>
-      <translation>Ressourcen</translation>
+      <source>Add file...</source>
+      <translation>Datei hinzufügen...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7738" />
+      <source>Add files...</source>
+      <translation>Dateien hinzufügen...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="7739" />
-      <source>Add file...</source>
-      <translation>Datei hinzufügen...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7740" />
-      <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="7741" />
-      <source>Add aliased file...</source>
-      <translation>Aliased-Datei hinzufügen...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>Lokalisierte Ressource hinzufügen...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7746" />
+      <location filename="../QScintilla/Editor.py" line="7744" />
       <source>Add resource frame</source>
       <translation>Ressourcenrahmen hinzufügen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7765" />
+      <location filename="../QScintilla/Editor.py" line="7763" />
       <source>Add file resource</source>
       <translation>Dateiressource hinzufügen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7777" />
       <source>Add file resources</source>
       <translation>Dateiressourcen hinzufügen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7797" />
+      <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7795" />
       <source>Add aliased file resource</source>
       <translation>Aliased-Dateiressourcen hinzufügen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7804" />
+      <location filename="../QScintilla/Editor.py" line="7802" />
       <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="7879" />
+      <location filename="../QScintilla/Editor.py" line="7877" />
       <source>Package Diagram</source>
       <translation>Package-Diagramm</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7880" />
+      <location filename="../QScintilla/Editor.py" line="7878" />
       <source>Include class attributes?</source>
       <translation>Klassenattribute anzeigen?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7900" />
+      <location filename="../QScintilla/Editor.py" line="7898" />
       <source>Imports Diagram</source>
       <translation>Imports Diagramm</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7901" />
+      <location filename="../QScintilla/Editor.py" line="7899" />
       <source>Include imports from external modules?</source>
       <translation>Imports externer Module anzeigen?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7920" />
+      <location filename="../QScintilla/Editor.py" line="7918" />
       <source>Application Diagram</source>
       <translation>Applikations-Diagramm</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7921" />
+      <location filename="../QScintilla/Editor.py" line="7919" />
       <source>Include module names?</source>
       <translation>Modulnamen anzeigen?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="8274" />
+      <source>Add to dictionary</source>
+      <translation>Zum Wörterbuch hinzufügen</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8276" />
-      <source>Add to dictionary</source>
-      <translation>Zum Wörterbuch hinzufügen</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>Alle ignorieren</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8696" />
+      <location filename="../QScintilla/Editor.py" line="8694" />
       <source>Sort Lines</source>
       <translation>Zeilen sortieren</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8697" />
+      <location filename="../QScintilla/Editor.py" line="8695" />
       <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="8790" />
+      <location filename="../QScintilla/Editor.py" line="8788" />
       <source>Register Mouse Click Handler</source>
       <translation>Maus Klick Handler registrieren</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8791" />
+      <location filename="../QScintilla/Editor.py" line="8789" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation>Ein Maus Klick Handler für "{0}" wurde bereits durch "{1}" registriert. Die Anfrage durch "{2}" wird abgebrochen...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8887" />
+      <location filename="../QScintilla/Editor.py" line="8885" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation>{0:4d}    {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8893" />
+      <location filename="../QScintilla/Editor.py" line="8891" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
@@ -13231,12 +13259,12 @@
     =&gt;  {2}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8961" />
+      <location filename="../QScintilla/Editor.py" line="8959" />
       <source>EditorConfig Properties</source>
       <translation>EditorConfig Eigenschaften</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8962" />
+      <location filename="../QScintilla/Editor.py" line="8960" />
       <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>
@@ -14856,7 +14884,7 @@
   <context>
     <name>EditorHighlightersPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="144" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="145" />
       <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="51" />
       <source>Alternative</source>
       <translation>Alternative</translation>
@@ -20729,8 +20757,8 @@
       <translation>Zeige MicroPython Versionen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1589" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1573" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1591" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1575" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="196" />
       <source>Erase Flash</source>
       <translation>Flash löschen</translation>
@@ -20741,7 +20769,7 @@
       <translation>MicroPython Firmware flashen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1674" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1676" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="203" />
       <source>Flash Additional Firmware</source>
       <translation>Zusätzliche Firmware flashen</translation>
@@ -20792,8 +20820,8 @@
       <translation>Ausgabe von 'esptool read_flash'</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1673" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1632" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1634" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="363" />
       <source>'esptool write_flash' Output</source>
       <translation>Ausgabe von 'esptool write_flash'</translation>
@@ -20904,17 +20932,17 @@
       <translation>{0} Bytes</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1574" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1576" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation>Soll der Flashspeicher des ausgewählten Gerätes wirklich gelöscht werden?</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1588" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1590" />
       <source>'esptool erase_flash' Output</source>
       <translation>Ausgabe von 'esptool erase_flash'</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1633" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1635" />
       <source>Flash µPy/CPy Firmware</source>
       <translation>µPy/CPy Firmware flashen</translation>
     </message>
@@ -21531,27 +21559,27 @@
       <translation>{0} möchte deine Audioausgabe und deinen Bildschirminhalt erfassen.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="72" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="67" />
       <source>{0} wants to use desktop notifications.</source>
       <translation>{0} möchte Desktopmitteilungen nutzen.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="98" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="92" />
       <source>Remember</source>
       <translation>Merken</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="100" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="94" />
       <source>Allow</source>
       <translation>Erlauben</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="101" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="95" />
       <source>Deny</source>
       <translation>Ablehnen</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="126" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="120" />
       <source>{0} wants to use an unknown feature.</source>
       <translation>{0} möchte ein unbekanntes Feature nutzen.</translation>
     </message>
@@ -21768,7 +21796,7 @@
       <translation>&amp;Zeige Fehlerdaten</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="486" />
+      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="487" />
       <source>Error loading feed</source>
       <translation>Fehler beim Laden des Feeds</translation>
     </message>
@@ -22964,7 +22992,7 @@
       <translation>Der git-Prozess endete mit dem Code {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1643" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="213" />
       <source>The git process did not finish within 30s.</source>
       <translation>Der git-Prozess endete nicht innerhalb von 30s.</translation>
@@ -22985,158 +23013,158 @@
       <translation>Das Projektrepository konnte nicht erzeugt werden.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="281" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="283" />
       <source>Creating Git repository</source>
       <translation>Erzeuge Git Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="296" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="298" />
       <source>Adding files to Git repository</source>
       <translation>Füge Dateien dem Git-Repository hinzu</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="305" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
       <source>Initial commit to Git repository</source>
       <translation>Erstes Commit für das Git-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="333" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="335" />
       <source>Cloning project from a Git repository</source>
       <translation>Klone das Projekt aus dem Git-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="428" />
       <source>Commit Changes</source>
       <translation>Änderungen einpflegen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="429" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation>Das Einpflegen von Änderungen betrifft Dateien mit ungesicherten Änderungen. Soll die Aktion fortgesetzt werden?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="485" />
       <source>Committing changes to Git repository</source>
       <translation>Änderungen in Git-Repository einpflegen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="546" />
       <source>Switch</source>
       <translation>Umschalten</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="545" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="547" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soll wirklich auf &lt;b&gt;{0}&lt;/b&gt; umgeschaltet werden?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="575" />
       <source>Synchronizing with the Git repository</source>
       <translation>Gleiche mit dem Git-Repository ab</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="619" />
       <source>Adding files/directories to the Git repository</source>
       <translation>Füge Dateien/Verzeichnisse dem Git-Repository hinzu</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="691" />
       <source>Removing files/directories from the Git repository</source>
       <translation>Lösche Dateien/Verzeichnisse aus dem Git-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="754" />
       <source>Renaming {0}</source>
       <translation>Benenne {0} um</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="876" />
       <source>Unstage files/directories</source>
       <translation>Vormerkung rückgängig machen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="929" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="918" />
       <source>Revert changes</source>
       <translation>Änderungen rückgängig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="919" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation>Wollen Sie wirklich alle Änderungen an den folgenden Datein oder Verzeichnissen rückgängig machen?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="930" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation>Wollen Sie wirklich alle Änderungen des Projektes rückgängig machen?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="936" />
       <source>Reverting changes</source>
       <translation>Mache Änderungen rückgängig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="988" />
       <source>Merging</source>
       <translation>Zusammenführen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1012" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1016" />
       <source>Main branch head</source>
       <translation>Kopf des Hauptzweiges</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1228" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1232" />
       <source>Git Command</source>
       <translation>Git Befehl</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1330" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1336" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&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;Änderungs ID&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1334" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&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;Vorgänger&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1340" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&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;Marken&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&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;Vorgänger&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1346" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&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;Marken&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1352" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&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;Zweige&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1357" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1356" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1362" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1361" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1367" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bereitsteller&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1366" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1372" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&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;Bereitstellungsdatum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1371" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&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;Betreff&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1377" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&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;Betreff&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1383" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -23151,459 +23179,459 @@
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1458" />
       <source>Create {0} file</source>
       <translation>Erzeuge {0}-Datei</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. 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="../Plugins/VcsPlugins/vcsGit/git.py" line="1517" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1500" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1506" />
       <source>Git Copy</source>
       <translation>Git Kopiere</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1507" />
       <source>&lt;p&gt;Copying the directory &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Kopieren des Verzeichnisses &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="../Plugins/VcsPlugins/vcsGit/git.py" line="1518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
       <source>&lt;p&gt;Copying the file &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Kopieren der Datei &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="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2726" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1645" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1707" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1694" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1683" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1713" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1689" />
       <source>Git Side-by-Side Difference</source>
       <translation>Git Unterschiede nebeneinander anzeigen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1708" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1714" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1760" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1766" />
       <source>Fetching from a remote Git repository</source>
       <translation>Änderungen von einem entfernten Git Repository abholen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1796" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1802" />
       <source>Pulling from a remote Git repository</source>
       <translation>Pull von einem entfernten Git-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1835" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1841" />
       <source>Pushing to a remote Git repository</source>
       <translation>Push in ein entferntes Git-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1869" />
       <source>Committing failed merge</source>
       <translation>Fehlgeschlagene Zusammenführung abschließen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1894" />
       <source>Aborting uncommitted/failed merge</source>
       <translation>Zusammenführung abbrechen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1924" />
       <source>Applying patch</source>
       <translation>Patch anwenden</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1951" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1957" />
       <source>Check patch files</source>
       <translation>Patchdateien prüfen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1954" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1960" />
       <source>Apply patch files</source>
       <translation>Patchdateien anwenden</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2034" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2040" />
       <source>Tagging in the Git repository</source>
       <translation>Marke im Git-Repository setzen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2284" />
       <source>Branching in the Git repository</source>
       <translation>Zweig im Git-Repository erzeugen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2326" />
       <source>Delete Remote Branch</source>
       <translation>Entfernten Zweig löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2347" />
       <source>Current Branch</source>
       <translation>Aktueller Zweig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2348" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der aktuelle Zweig ist &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2376" />
       <source>Create Bundle</source>
       <translation>Paket erzeugen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2378" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation>Git Paketdateien (*.bundle)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2395" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Git Paketdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2430" />
       <source>Verify Bundle</source>
       <translation>Paket verifizieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation>Git Paketdateien (*.bundle);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2459" />
       <source>List Bundle Heads</source>
       <translation>Köpfe des Pakets anzeigen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2525" />
       <source>Apply Bundle</source>
       <translation>Paket anwenden</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2546" />
       <source>Applying a bundle file (fetch)</source>
       <translation>Paketdatei anwenden (fetch)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation>Ungültiger Bisect Unterbefehl ({0}).</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2828" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2672" />
       <source>Git Bisect ({0})</source>
       <translation>Git-Bisect ({0})</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2725" />
       <source>Process Generation Error</source>
       <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2771" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2754" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2736" />
       <source>Create Bisect Replay File</source>
       <translation>Erzeuge Bisect Wiederholungsdatei</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2738" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation>Git Bisect Wiederholungsdateien (*.replay)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2755" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Git Wiederholungsdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2772" />
       <source>&lt;p&gt;The 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 Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;br/&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2791" />
       <source>Edit Bisect Replay File</source>
       <translation>Bisect Wiederholungsdatei bearbeiten</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2819" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2793" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation>Git Bisect Wiederholungsdateien (*.replay);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2817" />
       <source>Bisect Replay</source>
       <translation>Bisect wiederholen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3161" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2991" />
       <source>Show Remote Info</source>
       <translation>Zeige entfernte Informationen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3047" />
       <source>Rename Remote Repository</source>
       <translation>Entferntes Repository umbenennen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3048" />
       <source>Enter new name for remote repository:</source>
       <translation>Gib einen Namen für das entfernte Repository ein:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3183" />
       <source>Show Shortlog</source>
       <translation>Kurzbeschreibungen anzeigen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3240" />
       <source>Cherry-pick</source>
       <translation>Aussuchen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3271" />
       <source>Copy Changesets (Continue)</source>
       <translation>Änderungssätze kopieren (Fortsetzung)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3294" />
       <source>Copy Changesets (Quit)</source>
       <translation>Änderungssätze kopieren (Beenden)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3318" />
       <source>Copy Changesets (Cancel)</source>
       <translation>Änderungssätze kopieren (Abbrechen)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3396" />
       <source>Saving stash</source>
       <translation>Ablage sichern</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3598" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3436" />
       <source>Show Stash</source>
       <translation>Ablage anzeigen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3599" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3559" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3510" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3437" />
       <source>Select a stash (empty for latest stash):</source>
       <translation>Wähle eine Ablage (leer für aktuellste):</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3509" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3469" />
       <source>Restore Stash</source>
       <translation>Ablage wiederherstellen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3483" />
       <source>Restoring stash</source>
       <translation>Stelle Ablage wieder her</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3558" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3547" />
       <source>Create Branch</source>
       <translation>Zweig erzeugen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3548" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation>Gib einen Zweignamen für die Ablagewiederherstellung ein:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3573" />
       <source>Creating branch</source>
       <translation>Erzeuge Zweig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3609" />
       <source>Delete Stash</source>
       <translation>Ablage löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3610" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation>Soll die Ablage &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3620" />
       <source>Deleting stash</source>
       <translation>Lösche Ablage</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
       <source>Delete All Stashes</source>
       <translation>Alle Ablagen löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
       <source>Do you really want to delete all stashes?</source>
       <translation>Sollen wirklich alle Ablagen gelöscht werden?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3647" />
       <source>Deleting all stashes</source>
       <translation>Lösche alle Ablagen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3707" />
       <source>Showing the combined configuration settings</source>
       <translation>Zeige die kombinierten Einstellungen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3729" />
       <source>Verifying the integrity of the Git repository</source>
       <translation>Verifiziere die Integrität des Git-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
       <source>Performing Repository Housekeeping</source>
       <translation>Führe Repository Reorganisation durch</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistik&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation>&lt;tr&gt;&lt;td&gt;Anzahl loser Objekte: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation>&lt;tr&gt;&lt;td&gt;Anzahl loser Objekte: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3798" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Festplattenverbrauch durch lose Objekte: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3804" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Anzahl gepackter Objekte: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation>&lt;tr&gt;&lt;td&gt;Anzahl Pakete: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation>&lt;tr&gt;&lt;td&gt;Anzahl Pakete: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3815" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Festplattenverbrauch durch lose Objekte &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3821" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Gepackte Objekte bereit zum Löschen: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation>&lt;tr&gt;&lt;td&gt;Wertlose Dateien: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation>&lt;tr&gt;&lt;td&gt;Wertlose Dateien: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Festplattenverbrauch durch wertlose Dateien: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3839" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;Keine Statistik verfügbar.&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3905" />
       <source>Creating Archive</source>
       <translation>Erzeuge Archiv</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3945" />
       <source>Add Submodule</source>
       <translation>Submodul hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
       <source>List Submodules</source>
       <translation>Submodule auflisten</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4012" />
       <source>No submodules defined for the project.</source>
       <translation>Für das Projekt sind keine Submodule definiert.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
-      <source>All</source>
-      <translation>Alle</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
-      <source>Submodule Path</source>
-      <translation>Submodulpfad</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
+      <source>All</source>
+      <translation>Alle</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4029" />
+      <source>Submodule Path</source>
+      <translation>Submodulpfad</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4030" />
       <source>Select a submodule path:</source>
       <translation>Wähle einen Submodulpfad:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4079" />
       <source>Initialize Submodules</source>
       <translation>Submodule initialisieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4112" />
       <source>Unregister Submodules</source>
       <translation>Submodule deregistrieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4143" />
       <source>Update Submodules</source>
       <translation>Submodule aktualisieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Synchronize Submodules</source>
       <translation>Submodule synchronisieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4266" />
       <source>Submodules Summary</source>
       <translation>Submodulüberblick</translation>
     </message>
@@ -24016,12 +24044,12 @@
       <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="213" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="214" />
       <source>Changed by skipped commit</source>
       <translation>Durch übersprungenen Änderungssatz geändert</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="215" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="216" />
       <source>Commit cannot be skipped</source>
       <translation>Änderungssatz kann nicht übersprungen werden</translation>
     </message>
@@ -25132,7 +25160,7 @@
       <translation>Ausgewählte Revision mit einer Marke versehen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1896" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1891" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="340" />
       <source>Branch</source>
       <translation>Zweig</translation>
@@ -25153,9 +25181,9 @@
       <translation>Neuen Zweig mit der ausgewählten Revision erzeugen und das Arbeitsverzeichnis umschalten.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1957" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1868" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1952" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1840" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="356" />
       <source>Switch</source>
       <translation>Umschalten</translation>
@@ -25166,7 +25194,7 @@
       <translation>Schaltet das Arbeitsverzeichnis auf die ausgewählte Revision um</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1979" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="364" />
       <source>Show Short Log</source>
       <translation>Kurzprotokoll anzeigen</translation>
@@ -25187,125 +25215,125 @@
       <translation>Zeigt die letzte von einer Revision erreichbare Marke</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="662" />
       <source>The git process did not finish within 30s.</source>
       <translation>Der git-Prozess endete nicht innerhalb von 30s.</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="664" />
+      <source>Could not start the git executable.</source>
+      <translation>Das git Programm konnte nicht gestartet werden.</translation>
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="667" />
-      <source>Could not start the git executable.</source>
-      <translation>Das git Programm konnte nicht gestartet werden.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="670" />
       <source>Git Error</source>
       <translation>Git Fehler</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="799" />
       <source>{0} ({1}%)</source>
       <comment>action, confidence</comment>
       <translation>{0} ({1}%)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="869" />
       <source>Process Generation Error</source>
       <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="874" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="870" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1345" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1342" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation>Unterschiede nebeneinander zu Vorgänger {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1359" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1356" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation>&lt;a href="sbsdiff:{0}_{1}"&gt;Unterschiede nebeneinander&lt;/a&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1800" />
       <source>Copy Changesets</source>
       <translation>Änderungssätze kopieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1958" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1806" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1953" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1801" />
       <source>The project should be reread. Do this now?</source>
       <translation>Das Projekt sollte neu gelesen werde. Jetzt durchführen?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1985" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1980" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841" />
       <source>Select a branch</source>
       <translation>Zweig auswählen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1935" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1897" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892" />
       <source>Select a default branch</source>
       <translation>Standardzweig auswählen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1934" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1929" />
       <source>Branch &amp; Switch</source>
       <translation>Zweig erzeugen &amp; Umschalten</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2159" />
       <source>Find Commit</source>
       <translation>Revision finden</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2160" />
       <source>'{0}' was not found.</source>
       <translation>'{0}' wurde nicht gefunden.</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2209" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2204" />
       <source>Differences</source>
       <translation>Unterschiede</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2221" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2216" />
       <source>Differences to Parent {0}</source>
       <translation>Unterschiede zu Vorgänger {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2237" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2232" />
       <source>Diff to Parent {0}</source>
       <translation>Diff zu Vorgänger {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2262" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2257" />
       <source>There is no difference.</source>
       <translation>Es gibt keinen Unterschied.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2429" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2412" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2424" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2389" />
       <source>Save Diff</source>
       <translation>Diff speichern</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2391" />
       <source>Patch Files (*.diff)</source>
       <translation>Patchdateien (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2408" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Patchdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2425" />
       <source>&lt;p&gt;The patch 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 Patchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;br&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
@@ -28714,7 +28742,7 @@
       <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="383" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="384" />
       <source>%n file(s) changed</source>
       <translation>
         <numerusform>%n Datei geändert</numerusform>
@@ -28722,7 +28750,7 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="386" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="387" />
       <source>%n line(s) inserted</source>
       <translation>
         <numerusform>%n Zeile eingefügt</numerusform>
@@ -28730,7 +28758,7 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="390" />
       <source>%n line(s) deleted</source>
       <translation>
         <numerusform>%n Zeile gelöscht</numerusform>
@@ -28894,7 +28922,7 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195" />
       <source>Commit</source>
       <translation>Einpflegen</translation>
@@ -28925,7 +28953,7 @@
       <translation>Alle vom Einpflegen abwählen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210" />
       <source>Add</source>
       <translation>Hinzufügen</translation>
@@ -28956,7 +28984,7 @@
       <translation>Vormerkung von Änderungen der ausgewählten Dateien rückgängig machen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226" />
       <source>Differences</source>
       <translation>Unterschiede</translation>
@@ -28977,7 +29005,7 @@
       <translation>Zeigt die Unterschiede des gewählten Eintrages nebeneinander in einem separaten Dialog</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244" />
       <source>Revert</source>
       <translation>Rückgängig machen</translation>
@@ -28988,7 +29016,7 @@
       <translation>Macht alle Änderungen der ausgewählten Dateien rückgängig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253" />
       <source>Forget Missing</source>
       <translation>Fehlende vergessen</translation>
@@ -28999,7 +29027,7 @@
       <translation>Die ausgewählten fehlenden Dateien vergessen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="837" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257" />
       <source>Restore Missing</source>
       <translation>Fehlende wiederherstellen</translation>
@@ -29046,98 +29074,98 @@
       <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="605" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="468" />
       <source>all</source>
       <translation>alle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="676" />
       <source>There are no entries selected to be committed.</source>
       <translation>Es sind keine Einträge zum Einpflegen ausgewählt.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="719" />
       <source>There are no unversioned entries available/selected.</source>
       <translation>Es sind keine unversionierten Einträge vorhanden/ausgewählt.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="741" />
-      <source>Stage</source>
-      <translation>Vormerken</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="742" />
+      <source>Stage</source>
+      <translation>Vormerken</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="743" />
       <source>There are no stageable entries available/selected.</source>
       <translation>Es sind keine vorzumerkenden Einträge vorhanden/ausgewählt.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="765" />
-      <source>Unstage</source>
-      <translation>Vormerkung rückgängig</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="766" />
+      <source>Unstage</source>
+      <translation>Vormerkung rückgängig</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="767" />
       <source>There are no unstageable entries available/selected.</source>
       <translation>Es sind keine Vormerkungen vorhanden/ausgewählt.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="791" />
       <source>There are no missing entries available/selected.</source>
       <translation>Es sind keine fehlenden Einträge vorhanden/ausgewählt.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810" />
       <source>There are no uncommitted, unstaged changes available/selected.</source>
       <translation>Es sind keine nicht eingepflegten, nicht vorgemerkten Änderungen vorhanden/ausgewählt.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="874" />
       <source>There are no uncommitted changes available/selected.</source>
       <translation>Es sind keine nicht eingepflegten Änderungen vorhanden/ausgewählt.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="923" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="899" />
-      <source>Working Tree to Staging Area</source>
-      <translation>Arbeitsverzeichnis nach Vormerkung</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
-      <source>Staging Area to HEAD Commit</source>
-      <translation>Vormerkung nach HEAD Revision</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="924" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
+      <source>Working Tree to Staging Area</source>
+      <translation>Arbeitsverzeichnis nach Vormerkung</translation>
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="901" />
+      <source>Staging Area to HEAD Commit</source>
+      <translation>Vormerkung nach HEAD Revision</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="925" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="902" />
       <source>Working Tree to HEAD Commit</source>
       <translation>Arbeitsverzeichnis nach HEAD Revision</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="928" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="905" />
-      <source>Differences Side-by-Side</source>
-      <translation>Unterschiede nebeneinander</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="929" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="906" />
+      <source>Differences Side-by-Side</source>
+      <translation>Unterschiede nebeneinander</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="907" />
       <source>Select the compare method.</source>
       <translation>Vergleichsmethode auswählen.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1239" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1240" />
       <source>Revert selected lines</source>
       <translation>Ausgewählte Zeilen rückgängig machen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1241" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1242" />
       <source>Revert hunk</source>
       <translation>Abschnitt rückgängig machen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1247" />
       <source>Are you sure you want to revert the selected changes?</source>
       <translation>Sind sie sicher, dass die ausgewählten Änderungen rückgängig gemacht werden sollen?</translation>
     </message>
@@ -29797,12 +29825,12 @@
       <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="336" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="337" />
       <source>current branch</source>
       <translation>aktueller Zweig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="340" />
       <source>checked out in linked worktree</source>
       <translation>In verlinktem Arbeitsverzeichnisbaum ausgecheckt</translation>
     </message>
@@ -30292,101 +30320,101 @@
       <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="516" />
       <source>Add Worktree</source>
       <translation>Arbeitsverzeichnis hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="533" />
-      <source>Lock Worktree</source>
-      <translation>Arbeitsverzeichnis sperren</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
-      <source>Enter a reason for the lock:</source>
-      <translation>Gib einen Grund für die Sperre ein:</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="552" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
+      <source>Lock Worktree</source>
+      <translation>Arbeitsverzeichnis sperren</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="535" />
+      <source>Enter a reason for the lock:</source>
+      <translation>Gib einen Grund für die Sperre ein:</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="553" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Sperren des ausgewählten Arbeitsverzeichnisses ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="576" />
-      <source>Unlock Worktree</source>
-      <translation>Arbeitsverzeichnis entsperren</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="577" />
+      <source>Unlock Worktree</source>
+      <translation>Arbeitsverzeichnis entsperren</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="578" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Entsperren des ausgewählten Arbeitsverzeichnisses ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="612" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="595" />
-      <source>Move Worktree</source>
-      <translation>Arbeitsverzeichnis verschieben</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
-      <source>Enter the new path for the worktree:</source>
-      <translation>Gib den neuen Pfad für das Arbeitsverzeichnis ein:</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
+      <source>Move Worktree</source>
+      <translation>Arbeitsverzeichnis verschieben</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="597" />
+      <source>Enter the new path for the worktree:</source>
+      <translation>Gib den neuen Pfad für das Arbeitsverzeichnis ein:</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="614" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Verschieben des ausgewählten Arbeitsverzeichnisses ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="634" />
       <source>Remove Worktree</source>
       <translation>Arbeitsverzeichnis löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="636" />
       <source>Remove Worktree Forcefully</source>
       <translation>Arbeitsverzeichnis erzwungen löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="642" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soll das Arbeitsverzeichnis &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="669" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Löschen des ausgewählten Arbeitsverzeichnisses ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="723" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="699" />
-      <source>Prune Worktree Information</source>
-      <translation>Arbeitsverzeichnisinformationen aufräumen</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation>Sollen wirklich die Informationen dieser Arbeitsverzeichnicce aufgeräumt werden?</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
+      <source>Prune Worktree Information</source>
+      <translation>Arbeitsverzeichnisinformationen aufräumen</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="701" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation>Sollen wirklich die Informationen dieser Arbeitsverzeichnicce aufgeräumt werden?</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="725" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Aufräumen der Arbeitsverzeichnisinformationen ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="750" />
-      <source>Repair Worktree</source>
-      <translation>Arbeitsverzeichnis reparieren</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Das Reparieren der Arbeitsverzeichnisinformationen war erfolgreich.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="762" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
+      <source>Repair Worktree</source>
+      <translation>Arbeitsverzeichnis reparieren</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="752" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Das Reparieren der Arbeitsverzeichnisinformationen war erfolgreich.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="763" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Reparieren der Arbeitsverzeichnisinformationen ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -30442,27 +30470,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="199" />
+      <location filename="../Globals/__init__.py" line="197" />
       <source>{0:4.2f} Bytes</source>
       <translation>{0:4.2f} Bytes</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="202" />
+      <location filename="../Globals/__init__.py" line="200" />
       <source>{0:4.2f} KiB</source>
       <translation>{0:4.2f} KiB</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="205" />
+      <location filename="../Globals/__init__.py" line="203" />
       <source>{0:4.2f} MiB</source>
       <translation>{0:4.2f} MiB</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="208" />
+      <location filename="../Globals/__init__.py" line="206" />
       <source>{0:4.2f} GiB</source>
       <translation>{0:4.2f} GiB</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="211" />
+      <location filename="../Globals/__init__.py" line="209" />
       <source>{0:4.2f} TiB</source>
       <translation>{0:4.2f} TiB</translation>
     </message>
@@ -31261,37 +31289,37 @@
   <context>
     <name>HelpSearchWidget</name>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="166" />
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
       <source>Open Link</source>
       <translation>Link öffnen</translation>
     </message>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="168" />
-      <source>Open Link in New Page</source>
-      <translation>Link in neuer Seite öffnen</translation>
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
-      <source>Open Link in Background Page</source>
-      <translation>Link in Hintergrundseite öffnen</translation>
-    </message>
-    <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="171" />
-      <source>Open Link in New Tab</source>
-      <translation>Link in neuem Register öffnen</translation>
+      <source>Open Link in New Page</source>
+      <translation>Link in neuer Seite öffnen</translation>
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="172" />
-      <source>Open Link in Background Tab</source>
-      <translation>Link in Hintergrundregister öffnen</translation>
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="173" />
-      <source>Open Link in New Window</source>
-      <translation>Link in neuem Fenster öffnen</translation>
+      <source>Open Link in Background Page</source>
+      <translation>Link in Hintergrundseite öffnen</translation>
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="174" />
+      <source>Open Link in New Tab</source>
+      <translation>Link in neuem Register öffnen</translation>
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="175" />
+      <source>Open Link in Background Tab</source>
+      <translation>Link in Hintergrundregister öffnen</translation>
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="176" />
+      <source>Open Link in New Window</source>
+      <translation>Link in neuem Fenster öffnen</translation>
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="178" />
       <source>Copy URL to Clipboard</source>
       <translation>URL in die Zwischenablage kopieren</translation>
     </message>
@@ -31616,104 +31644,104 @@
       <translation>Lesezeichenliste anzeigen</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="442" />
+      <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="443" />
-      <source>Python 3 Documentation</source>
-      <translation>Python 3-Dokumentation</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>Qt5 Documentation</source>
-      <translation>Qt5 Dokumentation</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Qt6 Documentation</source>
-      <translation>Qt6 Dokumentation</translation>
+      <source>Python 3 Documentation</source>
+      <translation>Python 3-Dokumentation</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>PyQt5 Documentation</source>
-      <translation>PyQt5-Dokumentation</translation>
+      <source>Qt5 Documentation</source>
+      <translation>Qt5 Dokumentation</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>PyQt6 Documentation</source>
-      <translation>PyQt6-Dokumentation</translation>
+      <source>Qt6 Documentation</source>
+      <translation>Qt6 Dokumentation</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PySide2 Documentation</source>
-      <translation>PySide2-Dokumentation</translation>
+      <source>PyQt5 Documentation</source>
+      <translation>PyQt5-Dokumentation</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
+      <source>PyQt6 Documentation</source>
+      <translation>PyQt6-Dokumentation</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
+      <source>PySide2 Documentation</source>
+      <translation>PySide2-Dokumentation</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
       <source>PySide6 Documentation</source>
       <translation>PySide6-Dokumentation</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="506" />
-      <source>Open HTML File</source>
-      <translation>HTML Datei öffnen</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <source>Open HTML File</source>
+      <translation>HTML Datei öffnen</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
       <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="699" />
       <source>Help Engine</source>
       <translation>Hilfe</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="723" />
       <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="734" />
       <source>eric Help Viewer</source>
       <translation>eric Hilfeanzeige</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="759" />
       <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="762" />
       <source>Reindex Documentation</source>
       <translation>Dokumentation reindizieren</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="767" />
       <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="860" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="840" />
       <source>Clear History</source>
       <translation>Chronik löschen</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="968" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="970" />
       <source>Updating search index</source>
       <translation>Aktualisiere Suchindex</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1026" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1028" />
       <source>Filtered by: </source>
       <translation>Filter: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1062" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1057" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1064" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
       <source>Unfiltered</source>
       <translation>Ungefiltert</translation>
     </message>
@@ -33115,446 +33143,446 @@
       <translation>Das Projektrepository konnte nicht erzeugt werden.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="311" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="313" />
       <source>Creating Mercurial repository</source>
       <translation>Lege Mercurial-Repository an</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="330" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="332" />
       <source>Initial commit to Mercurial repository</source>
       <translation>Erstes Commit für das Mercurial-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="368" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="370" />
       <source>Cloning project from a Mercurial repository</source>
       <translation>Klone das Projekt aus dem Mercurial-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="468" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="470" />
       <source>Commit Changes</source>
       <translation>Änderungen einpflegen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="469" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="471" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation>Das Einpflegen von Änderungen betrifft Dateien mit ungesicherten Änderungen. Soll die Aktion fortgesetzt werden?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="531" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="533" />
       <source>Committing changes to Mercurial repository</source>
       <translation>Pflege Änderungen in das Mercurial-Repository ein</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="623" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="625" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation>Gleiche mit dem Mercurial-Repository ab</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="653" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation>Füge Dateien/Verzeichnisse dem Mercurial-Repository hinzu</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="708" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation>Lösche Dateien/Verzeichnisse aus dem Mercurial-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="754" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="756" />
       <source>Renaming {0}</source>
       <translation>Benenne {0} um</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="879" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="881" />
       <source>Tagging in the Mercurial repository</source>
       <translation>Marke im Mercurial-Repository setzen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="927" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="916" />
       <source>Revert changes</source>
       <translation>Änderungen rückgängig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="917" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation>Wollen Sie wirklich alle Änderungen an den folgenden Datein oder Verzeichnissen rückgängig machen?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="928" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation>Wollen Sie wirklich alle Änderungen des Projektes rückgängig machen?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="934" />
       <source>Reverting changes</source>
       <translation>Mache Änderungen rückgängig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="977" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="979" />
       <source>Merging</source>
       <translation>Zusammenführen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1017" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1007" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1009" />
       <source>Re-Merge</source>
       <translation>Neu zusammenführen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1008" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1010" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation>Wollen Sie wirklich diese Dateien oder Verzeichnisse neu zusammenführen?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1020" />
       <source>Do you really want to re-merge the project?</source>
       <translation>Wollen Sie wirklich das Projekt neu zusammenführen?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1021" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1023" />
       <source>Re-Merging</source>
       <translation>Neu zusammenführen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1044" />
       <source>Current branch tip</source>
       <translation>Spitze des aktuellen Zweigs</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1216" />
       <source>Mercurial command</source>
       <translation>Mercurial-Befehl</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1373" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1377" />
       <source>Copying {0}</source>
       <translation>Kopiere {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1612" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1600" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1591" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1604" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1595" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation>Mercurial Unterschiede nebeneinander anzeigen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1613" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1617" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2274" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2263" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2253" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1688" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2267" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2257" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1692" />
       <source>Apply changegroups</source>
       <translation>Änderungsgruppen anwenden</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1691" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1695" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation>Pull von einem entfernten Mercurial-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1733" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation>Push in ein entferntes Mercurial-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1875" />
       <source>Marking as 'unresolved'</source>
       <translation>Markiere als 'nicht aufgelöst'</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1877" />
       <source>Marking as 'resolved'</source>
       <translation>Markiere als 'aufgelöst'</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1895" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1899" />
       <source>Aborting uncommitted merge</source>
       <translation>Breche Zusammenführung ab</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1922" />
       <source>Creating branch in the Mercurial repository</source>
       <translation>Erzeuge Zweig im Mercurial-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1930" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation>Neuer Zweig &lt;{0}&gt; wurde angelegt.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
       <source>Showing current branch</source>
       <translation>Zeige aktuellen Zweig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2022" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2026" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation>Verifiziere die Integrität des Mercurial-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2035" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2039" />
       <source>Showing the combined configuration settings</source>
       <translation>Zeige die kombinierten Einstellungen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2050" />
       <source>Showing aliases for remote repositories</source>
       <translation>Zeige Namen für entfernte Repositorys</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2061" />
       <source>Recovering from interrupted transaction</source>
       <translation>Setze abgebrochene Transaktion zurück</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2068" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2072" />
       <source>Identifying project directory</source>
       <translation>Projektverzeichnis identifizieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2114" />
       <source>Create .hgignore file</source>
       <translation>.hgignore-Datei erstellen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2111" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2115" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. 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="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2212" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2186" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2216" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2190" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2172" />
       <source>Create changegroup</source>
       <translation>Änderungsgruppe erzeugen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2170" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2174" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation>Mercurial-Änderungsgruppendateien (*.hg)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2187" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2191" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Mercurial-Änderungsgruppendatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Preview changegroup</source>
       <translation>Änderungsgruppe ansehen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2255" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2259" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2232" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation>Mercurial-Änderungsgruppendateien (*.hg);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2264" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2268" />
       <source>Shall the working directory be updated?</source>
       <translation>Soll das Arbeitsverzeichnis aktualisiert werden?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2300" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation>Ungültiger Bisect Unterbefehl ({0}).</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2320" />
       <source>Mercurial Bisect ({0})</source>
       <translation>Mercurial-Bisect ({0})</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
       <source>Removing files from the Mercurial repository only</source>
       <translation>Lösche Dateien nur aus dem Mercurial-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2383" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2364" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2387" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2368" />
       <source>Backing out changeset</source>
       <translation>Änderungssatz umkehren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2365" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
       <source>No revision given. Aborting...</source>
       <translation>Keine Revision angegeben. Abbruch...</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2403" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2398" />
+      <source>Rollback last transaction</source>
+      <translation>Letzte Transaktion zurücksetzen</translation>
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2399" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2394" />
-      <source>Rollback last transaction</source>
-      <translation>Letzte Transaktion zurücksetzen</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation>Wollen Sie die letzte Transaktion wirklich zurücksetzen?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2465" />
       <source>Import Patch</source>
       <translation>Patch importieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2513" />
       <source>Export Patches</source>
       <translation>Patches exportieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2553" />
       <source>Change Phase</source>
       <translation>Phase ändern</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2607" />
       <source>Copy Changesets</source>
       <translation>Änderungssätze kopieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2646" />
       <source>Copy Changesets (Continue)</source>
       <translation>Änderungssätze kopieren (Fortsetzung)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2656" />
       <source>Copy Changesets (Stop)</source>
       <translation>Änderungssätze kopieren (Stopp)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2662" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2666" />
       <source>Copy Changesets (Abort)</source>
       <translation>Änderungssätze kopieren (Abbruch)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2685" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2689" />
       <source>Create Unversioned Archive</source>
       <translation>Erzeuge nicht versioniertes Archiv</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2703" />
       <source>Delete All Backups</source>
       <translation>Alle Backups löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2700" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2704" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Sollen wirklich alle Backupdateien des Backupbereiches gelöscht werden?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2789" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2769" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2793" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2762" />
       <source>Add Sub-repository</source>
       <translation>Unterrepository hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2828" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2759" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2832" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Unterrepositorydatei .hgsub konnte nicht gelesen werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2774" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Unterrepositorydatei .hgsub enthält bereits einen Eintrag &lt;b&gt;{0}&lt;/b&gt;. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2846" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2790" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2850" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2794" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Unterrepositorydatei .hgsub konnte nicht gespeichert werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2827" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2813" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2849" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2831" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2817" />
       <source>Remove Sub-repositories</source>
       <translation>Unterrepositorys löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2818" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Unterrepositorydatei .hgsub existiert nicht. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3062" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2925" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3066" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2929" />
       <source>Mercurial Command Server</source>
       <translation>Mercurial-Befehlsserver</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2930" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der Mercurial-Befehlsserver konnte nicht wiedergestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3063" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3067" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der Mercurial-Befehlsserver konnte nicht gestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3179" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3183" />
       <source>Mercurial Bookmark</source>
       <translation>Mercurial-Lesezeichen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3195" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3199" />
       <source>Delete Bookmark</source>
       <translation>Lesezeichen löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3200" />
       <source>Select the bookmark to be deleted:</source>
       <translation>Wähle das zu löschende Lesezeichen aus:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3210" />
       <source>Delete Mercurial Bookmark</source>
       <translation>Mercurial-Lesezeichen löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3235" />
       <source>Rename Mercurial Bookmark</source>
       <translation>Mercurial-Lesezeichen umbenennen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3268" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3272" />
       <source>Move Mercurial Bookmark</source>
       <translation>Mercurial-Lesezeichen verschieben</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3341" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3345" />
       <source>Pull Bookmark</source>
       <translation>Lesezeichen herunterladen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3342" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
       <source>Select the bookmark to be pulled:</source>
       <translation>Wähle das herunterzuladende Lesezeichen:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3354" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3358" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation>Lade Lesezeichen von einem entfernten Mercurial-Repository herunter</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3380" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3384" />
       <source>Push Bookmark</source>
       <translation>Lesezeichen hochladen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3385" />
       <source>Select the bookmark to be push:</source>
       <translation>Wähle das hochzuladende Lesezeichen:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3396" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3400" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation>Lade Lesezeichen zu einem entfernten Mercurial-Repository hoch</translation>
     </message>
@@ -34400,42 +34428,42 @@
   <context>
     <name>HgClient</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="91" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="98" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="140" />
-      <source>Did not receive the 'hello' message.</source>
-      <translation>„Hallo“-Nachricht konnte nicht empfangen werden.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="142" />
-      <source>Received data on unexpected channel.</source>
-      <translation>Daten auf unerwartetem Kanal empfangen.</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="147" />
+      <source>Did not receive the 'hello' message.</source>
+      <translation>„Hallo“-Nachricht konnte nicht empfangen werden.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="149" />
+      <source>Received data on unexpected channel.</source>
+      <translation>Daten auf unerwartetem Kanal empfangen.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="154" />
       <source>Bad 'hello' message, expected 'capabilities: ' but got '{0}'.</source>
       <translation>Ungültige „Hallo“-Nachricht; Erwartete „capabilities: “, empfing jedoch „{0}“.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="152" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="159" />
       <source>'capabilities' message did not contain any capability.</source>
       <translation>„capabilities“-Nachricht enthielt keine Fähigkeiten.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="168" />
       <source>Bad 'hello' message, expected 'encoding: ' but got '{0}'.</source>
       <translation>Ungültige „Hallo“-Nachricht; Erwartete „encoding: “, empfing jedoch „{0}“.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="166" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="173" />
       <source>'encoding' message did not contain any encoding.</source>
       <translation>„encoding“-Nachricht enthielt keine Kodierung.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="377" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="385" />
       <source>For message see output dialog.</source>
       <translation>Nachricht siehe Ausgabedialog.</translation>
     </message>
@@ -35865,7 +35893,7 @@
       <translation>Kopiert von</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2690" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2686" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="0" />
       <source>Differences</source>
       <translation>Unterschiede</translation>
@@ -35996,7 +36024,7 @@
       <translation>Lesezeichen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2150" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2146" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299" />
       <source>Copy Changesets</source>
       <translation>Änderungssätze kopieren</translation>
@@ -36053,8 +36081,8 @@
       <translation>Schließe die ausgewählten Köpfe</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2244" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2240" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2223" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343" />
       <source>Switch</source>
       <translation>Umschalten</translation>
@@ -36085,8 +36113,8 @@
       <translation>Verschiebe ein Lesezeichen zur ausgewählten Revision</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2362" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1562" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2358" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1558" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371" />
       <source>Pull Changes</source>
       <translation>Änderungen herunterladen</translation>
@@ -36144,7 +36172,7 @@
 &lt;p&gt;Dies erzeugt eine Änderungsgruppendatei für die ausgewählten Änderungssätze. Ist keine Änderung ausgewählt, werden alle in die Datei geschrieben. Ist ein Änderungssatz ausgewählt, so wird er als Basis verwendet. Ansonsten wird die kleinste, ausgewählte Revision als Basis verwendet und alle anderen werden in die Datei geschrieben. Zeigt der Dialog ausgehende Änderungssätze an, so werden alle ausgewählten in die Datei geschrieben.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2501" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="424" />
       <source>Apply Changegroup</source>
       <translation>Änderungsgruppe anwenden</translation>
@@ -36175,7 +36203,7 @@
       <translation>Alle Signaturen der ausgewählten Revision verifizieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2408" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2404" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="454" />
       <source>Strip Changesets</source>
       <translation>Änderungssätze löschen</translation>
@@ -36196,117 +36224,117 @@
       <translation>Alle Einträge abwählen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="889" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="866" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="886" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="837" />
       <source>Mercurial Error</source>
       <translation>Mercurial-Fehler</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1210" />
       <source>{0} (large file)</source>
       <translation>{0} (Binärriese)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1472" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1468" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation>Unterschiede nebeneinander zu Vorgänger {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1479" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation>&lt;a href="sbsdiff:{0}_{1}"&gt;Unterschiede nebeneinander&lt;/a&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1641" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1560" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1556" />
       <source>Pull Selected Changes</source>
       <translation>Ausgewählte Änderungen herunterladen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2409" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2363" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2245" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2151" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2498" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2405" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2359" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2147" />
       <source>The project should be reread. Do this now?</source>
       <translation>Das Projekt sollte neu gelesen werde. Jetzt durchführen?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2224" />
       <source>Select bookmark to switch to (leave empty to use revision):</source>
       <translation>Wähle das Lesezeichen aus, auf das umgeschaltet werden soll (leer lassen, um Revision zu verwenden):</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2273" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2269" />
       <source>Define Bookmark</source>
       <translation>Lesezeichen hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2274" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2270" />
       <source>Enter bookmark name for changeset "{0}":</source>
       <translation>Gib einen Lesezeichennamen für den Änderungssatz "{0}" ein:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2303" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2299" />
       <source>Move Bookmark</source>
       <translation>Lesezeichen verschieben</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2300" />
       <source>Select the bookmark to be moved  to changeset "{0}":</source>
       <translation>Wähle ein Lesezeichen aus, das zum Änderungssatz "{0}" verschoben werden soll:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2637" />
       <source>Find Commit</source>
       <translation>Revision finden</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2638" />
       <source>'{0}' was not found.</source>
       <translation>„{0}“ wurde nicht gefunden.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2689" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2685" />
       <source>Generating differences ...</source>
       <translation>Erzeuge Unterschiede ...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2701" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2697" />
       <source>Differences to Parent {0}</source>
       <translation>Unterschiede zu Vorgänger {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2713" />
       <source>Diff to Parent {0}{1}</source>
       <translation>Diff zu Vorgänger {0}{1}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2740" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2736" />
       <source>There is no difference.</source>
       <translation>Es gibt keinen Unterschied.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2891" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2875" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2857" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2853" />
       <source>Save Diff</source>
       <translation>Diff speichern</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2859" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2855" />
       <source>Patch Files (*.diff)</source>
       <translation>Patchdateien (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2876" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2872" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Patchdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2892" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2888" />
       <source>&lt;p&gt;The patch 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 Patchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;br&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
@@ -41199,22 +41227,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="85" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
       <source>Starting histedit session</source>
       <translation>Starte histedit Sitzung</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
       <source>Continue histedit session</source>
       <translation>histedit Sitzung fortsetzen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
       <source>Abort histedit session</source>
       <translation>histedit Sitzung abbrechen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
       <source>Edit Plan</source>
       <translation>Änderungsplan bearbeiten</translation>
     </message>
@@ -45955,9 +45983,9 @@
       <translation>Eine verschlüsselte Verbindung zum IRC-Netzwerk wurde angefragt, SSL steht jedoch nicht zur Verfügung. Bitte ändern Sie die Serverkonfiguration.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <location filename="../Network/IRC/IrcWidget.py" line="266" />
       <location filename="../Network/IRC/IrcWidget.py" line="261" />
       <location filename="../Network/IRC/IrcWidget.py" line="254" />
@@ -45992,260 +46020,260 @@
       <translation>Verbindung zum Server wird unterbrochen.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <source>Server found,connecting...</source>
       <translation>Server gefunden, Verbindung wird hergesteltl...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
       <source>Connected,logging in...</source>
       <translation>Verbunden, Anmeldung läuft...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
       <source>Server disconnected.</source>
       <translation>Serververbindung unterbrochen.</translation>
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="607" />
+      <source>Message Error</source>
+      <translation>Nachrichtenfehler</translation>
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="608" />
-      <source>Message Error</source>
-      <translation>Nachrichtenfehler</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="609" />
       <source>Unknown message received from server:&lt;br/&gt;{0}</source>
       <translation>Unbekannte Nachricht vom Server empfangen:&lt;br/&gt;{0}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1032" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1022" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1014" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1006" />
-      <location filename="../Network/IRC/IrcWidget.py" line="651" />
-      <location filename="../Network/IRC/IrcWidget.py" line="643" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1030" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1020" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1012" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1004" />
+      <location filename="../Network/IRC/IrcWidget.py" line="650" />
+      <location filename="../Network/IRC/IrcWidget.py" line="642" />
       <source>CTCP</source>
       <translation>CTCP</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="644" />
+      <location filename="../Network/IRC/IrcWidget.py" line="643" />
       <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
       <translation>CTCP-PING-Antwort von {0} mit einer Latenz von {1} ms empfangen.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="652" />
+      <location filename="../Network/IRC/IrcWidget.py" line="651" />
       <source>Received unknown CTCP-{0} response from {1}.</source>
       <translation>Unbekannte CTCP-{0}-Antwort von {1} empfangen.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="678" />
+      <location filename="../Network/IRC/IrcWidget.py" line="677" />
       <source>Notice</source>
       <translation>Notiz</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="688" />
+      <location filename="../Network/IRC/IrcWidget.py" line="687" />
       <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
       <translation>Sie haben Ihre persönlichen Modi auf &lt;b&gt;[{0}]&lt;/b&gt; gesetzt.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="692" />
+      <location filename="../Network/IRC/IrcWidget.py" line="691" />
       <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
       <translation>{0} hat Ihre persönlichen Modi auf &lt;b&gt;[{0}]&lt;/b&gt; geändert.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="696" />
+      <location filename="../Network/IRC/IrcWidget.py" line="695" />
       <source>Mode</source>
       <translation>Modus</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="704" />
+      <location filename="../Network/IRC/IrcWidget.py" line="703" />
       <source>You have left channel {0}.</source>
       <translation>Sie haben den Kanal {0} verlassen.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="716" />
+      <location filename="../Network/IRC/IrcWidget.py" line="715" />
       <source>You are now known as {0}.</source>
       <translation>Sie sind jetzt als {0} bekannt.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="722" />
+      <location filename="../Network/IRC/IrcWidget.py" line="721" />
       <source>User {0} is now known as {1}.</source>
       <translation>Nutzer {0} ist nun als {1} bekannt.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="728" />
+      <location filename="../Network/IRC/IrcWidget.py" line="727" />
       <source>Received PONG from {0}</source>
       <translation>PONG von {0} empfangen</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="733" />
+      <location filename="../Network/IRC/IrcWidget.py" line="732" />
       <source>Server Error</source>
       <translation>Server Fehler</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="767" />
+      <location filename="../Network/IRC/IrcWidget.py" line="765" />
       <source>Error</source>
       <translation>Fehler</translation>
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="780" />
+      <source>Welcome</source>
+      <translation>Willkommen</translation>
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="782" />
-      <source>Welcome</source>
-      <translation>Willkommen</translation>
+      <source>Support</source>
+      <translation>Support</translation>
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="784" />
-      <source>Support</source>
-      <translation>Support</translation>
+      <source>User</source>
+      <translation>Nutzer</translation>
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="786" />
-      <source>User</source>
-      <translation>Nutzer</translation>
+      <source>MOTD</source>
+      <translation>MOTD</translation>
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="788" />
-      <source>MOTD</source>
-      <translation>MOTD</translation>
+      <source>Away</source>
+      <translation>Abwesend</translation>
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="790" />
-      <source>Away</source>
-      <translation>Abwesend</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="792" />
       <source>Info ({0})</source>
       <translation>Info ({0})</translation>
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="794" />
+      <source>Message of the day</source>
+      <translation>Nachricht des Tages</translation>
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="796" />
-      <source>Message of the day</source>
-      <translation>Nachricht des Tages</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="798" />
       <source>End of message of the day</source>
       <translation>Ende der Nachricht des Tages</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="801" />
+      <location filename="../Network/IRC/IrcWidget.py" line="799" />
       <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
       <translation>Server {0} (Version {1}), Benutzermodi: {2}, Kanalmodi: {3}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="806" />
+      <location filename="../Network/IRC/IrcWidget.py" line="804" />
       <source>Current users on {0}: {1}, max. {2}</source>
       <translation>Anzahl der Benutzer auf {0}: {1}, max. {2}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="811" />
+      <location filename="../Network/IRC/IrcWidget.py" line="809" />
       <source>Current users on the network: {0}, max. {1}</source>
       <translation>Anzahl der Benutzer im Netzwerk: {0}, max. {1}</translation>
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="813" />
+      <source>You are no longer marked as being away.</source>
+      <translation>Sie sind nicht länger als „abwesend“ gekennzeichnet.</translation>
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="815" />
-      <source>You are no longer marked as being away.</source>
-      <translation>Sie sind nicht länger als „abwesend“ gekennzeichnet.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="817" />
       <source>You have been marked as being away.</source>
       <translation>Sie sind als „abwesend“ gekennzeichnet.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="947" />
-      <location filename="../Network/IRC/IrcWidget.py" line="931" />
-      <location filename="../Network/IRC/IrcWidget.py" line="880" />
+      <location filename="../Network/IRC/IrcWidget.py" line="945" />
+      <location filename="../Network/IRC/IrcWidget.py" line="929" />
+      <location filename="../Network/IRC/IrcWidget.py" line="878" />
       <source>SSL Error</source>
       <translation>SSL Fehler</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="881" />
+      <location filename="../Network/IRC/IrcWidget.py" line="879" />
       <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
       <translation>Die Verbindung zum Server {0} (Port {1}) wurde während des Wartens auf eine Benutzerantwort auf einen SSL Fehler verloren.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
-      <location filename="../Network/IRC/IrcWidget.py" line="910" />
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
-      <location filename="../Network/IRC/IrcWidget.py" line="897" />
-      <location filename="../Network/IRC/IrcWidget.py" line="889" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
+      <location filename="../Network/IRC/IrcWidget.py" line="908" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
+      <location filename="../Network/IRC/IrcWidget.py" line="895" />
+      <location filename="../Network/IRC/IrcWidget.py" line="887" />
       <source>Socket Error</source>
       <translation>Socker Fehler</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="890" />
+      <location filename="../Network/IRC/IrcWidget.py" line="888" />
       <source>The host was not found. Please check the host name and port settings.</source>
       <translation>Der Server wurde nicht gefunden. Bitte prüfen Sie den Servernamen und die Porteinstellungen.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="898" />
+      <location filename="../Network/IRC/IrcWidget.py" line="896" />
       <source>The connection was refused by the peer. Please check the host name and port settings.</source>
       <translation>Die Verbindung wurde von der Gegenseite abgelehnt. Bitte prüfen Sie den Servernamen und die Porteinstellungen.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
       <source>The SSL handshake failed.</source>
       <translation>Der SSL Handshake schlug fehl.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="911" />
+      <location filename="../Network/IRC/IrcWidget.py" line="909" />
       <source>The following network error occurred:&lt;br/&gt;{0}</source>
       <translation>Der folgende Netzwerkfehler trat auf:&lt;br/&gt;{0}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
       <source>A network error occurred.</source>
       <translation>Ein Netzwerkfehler trat auf.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="932" />
+      <location filename="../Network/IRC/IrcWidget.py" line="930" />
       <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>Es konnte keine SSL-verschlüsselte Verbindung zum Server {0} (Port {1}) aufgebaut werden. Entweder unterstützt der Server kein SSL (haben Sie den richtigen Port verwendet?) oder Sie haben das Zertifikat abgelehnt.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="948" />
+      <location filename="../Network/IRC/IrcWidget.py" line="946" />
       <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
       <translation>Das SSL-Zertifikat für den Server {0} (Port {1}) hat die Authentizitätsprüfung nicht bestanden. Die SSL-Fehler wurden von Ihnen akzeptiert.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1007" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1005" />
       <source>Received Version request from {0}.</source>
       <translation>Versionsanfrage von {0} empfangen.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1015" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1013" />
       <source>Received CTCP-PING request from {0}, sending answer.</source>
       <translation>CTCP-PING-Anfrage von {0} empfangen, Antwort wird gesendet.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1023" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1021" />
       <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
       <translation>CTCP-CLIENTINFO-Anfrage von {0} empfangen, Antwort wird gesendet.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1033" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1031" />
       <source>Received unknown CTCP-{0} request from {1}.</source>
       <translation>Unbekannte CTCP-{0}-Anfrage von {1} empfangen.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1049" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1047" />
       <source>{0} ({1})</source>
       <comment>channel name, users count</comment>
       <translation>{0} ({1})</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1071" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1069" />
       <source>Critical</source>
       <translation>Kritischer Fehler</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1072" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1070" />
       <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
       <translation>Es ist kein für den Server &lt;b&gt;{0}&lt;/b&gt; akzeptabler Spitzname konfiguriert. Verbindungsabbruch...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
       <source>The given nickname is already in use.</source>
       <translation>Der übergebene Spitzname wird bereits verwendet.</translation>
     </message>
@@ -47267,7 +47295,7 @@
       <translation>Wähle den zuzuordnenden alternativen Lexer</translation>
     </message>
     <message>
-      <location filename="../Project/LexerAssociationDialog.py" line="131" />
+      <location filename="../Project/LexerAssociationDialog.py" line="132" />
       <location filename="../Project/LexerAssociationDialog.py" line="45" />
       <source>Alternative</source>
       <translation>Alternative</translation>
@@ -49114,13 +49142,13 @@
       <translation>Pfad in die Zwischenablage kopieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="485" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="487" />
       <source>Untitled {0}</source>
       <translation>Unbenannt {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="627" />
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="491" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="629" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="493" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
@@ -52435,317 +52463,317 @@
       <translation>&lt;b&gt;Alles Löschen&lt;/b&gt;&lt;p&gt;Dies löscht den gesamten Text des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2862" />
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
       <source>About</source>
       <translation>Über</translation>
     </message>
     <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
+      <source>&amp;About</source>
+      <translation>&amp;Über</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2860" />
+      <source>Display information about this software</source>
+      <translation>Zeigt Informationen zu diesem Programm an</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2862" />
-      <source>&amp;About</source>
-      <translation>&amp;Über</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2864" />
-      <source>Display information about this software</source>
-      <translation>Zeigt Informationen zu diesem Programm an</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Über&lt;/b&gt;&lt;p&gt;Zeigt einige Informationen über dieses Programm an.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About Qt</source>
       <translation>Über Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About &amp;Qt</source>
       <translation>Über &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2878" />
+      <location filename="../QScintilla/MiniEditor.py" line="2874" />
       <source>Display information about the Qt toolkit</source>
       <translation>Zeige Informationen über das Qt-Toolkit an</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2881" />
+      <location filename="../QScintilla/MiniEditor.py" line="2877" />
       <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Über Qt&lt;/b&gt;&lt;p&gt;Zeige Informationen über das Qt-Toolkit an.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2890" />
+      <location filename="../QScintilla/MiniEditor.py" line="2886" />
       <source>What's This?</source>
       <translation>Was ist das?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <location filename="../QScintilla/MiniEditor.py" line="2888" />
       <source>&amp;What's This?</source>
       <translation>&amp;Was ist das?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2893" />
+      <location filename="../QScintilla/MiniEditor.py" line="2889" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2898" />
+      <location filename="../QScintilla/MiniEditor.py" line="2894" />
       <source>Context sensitive help</source>
       <translation>Kontextsensitive Hilfe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2900" />
+      <location filename="../QScintilla/MiniEditor.py" line="2896" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zeige kontextsensitive Hilfe an&lt;b&gt;&lt;/p&gt;Im „Was ist das?“-Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2918" />
+      <location filename="../QScintilla/MiniEditor.py" line="2914" />
       <source>Preferences</source>
       <translation>Einstellungen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2920" />
+      <location filename="../QScintilla/MiniEditor.py" line="2916" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2926" />
+      <location filename="../QScintilla/MiniEditor.py" line="2922" />
       <source>Set the prefered configuration</source>
       <translation>Konfiguriert die Einstellungen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2924" />
       <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="../QScintilla/MiniEditor.py" line="2942" />
+      <location filename="../QScintilla/MiniEditor.py" line="2938" />
       <source>&amp;File</source>
       <translation>&amp;Datei</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2950" />
       <source>&amp;Edit</source>
       <translation>&amp;Bearbeiten</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2964" />
+      <location filename="../QScintilla/MiniEditor.py" line="2960" />
       <source>&amp;Search</source>
       <translation>&amp;Suchen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2974" />
+      <location filename="../QScintilla/MiniEditor.py" line="2970" />
       <source>&amp;View</source>
       <translation>&amp;Ansicht</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2980" />
+      <location filename="../QScintilla/MiniEditor.py" line="2976" />
       <source>Se&amp;ttings</source>
       <translation>&amp;Einstellungen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2985" />
+      <location filename="../QScintilla/MiniEditor.py" line="2981" />
       <source>&amp;Help</source>
       <translation>&amp;Hilfe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2997" />
+      <location filename="../QScintilla/MiniEditor.py" line="2993" />
       <source>File</source>
       <translation>Datei</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3009" />
+      <location filename="../QScintilla/MiniEditor.py" line="3005" />
       <source>Edit</source>
       <translation>Bearbeiten</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3018" />
+      <location filename="../QScintilla/MiniEditor.py" line="3014" />
       <source>Search</source>
       <translation>Suchen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3024" />
+      <location filename="../QScintilla/MiniEditor.py" line="3020" />
       <source>View</source>
       <translation>Ansicht</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3030" />
+      <location filename="../QScintilla/MiniEditor.py" line="3026" />
       <source>Settings</source>
       <translation>Einstellungen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3033" />
+      <location filename="../QScintilla/MiniEditor.py" line="3029" />
       <source>Help</source>
       <translation>Hilfe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3046" />
+      <location filename="../QScintilla/MiniEditor.py" line="3042" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Sprache des Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3056" />
+      <location filename="../QScintilla/MiniEditor.py" line="3052" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt an, ob die Datei geschrieben werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3065" />
+      <location filename="../QScintilla/MiniEditor.py" line="3061" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Zeilennummer des Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3074" />
+      <location filename="../QScintilla/MiniEditor.py" line="3070" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Cursorposition des Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3088" />
+      <location filename="../QScintilla/MiniEditor.py" line="3084" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dieser Teil der Statusleiste ermöglicht das Zoomen des Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3095" />
+      <location filename="../QScintilla/MiniEditor.py" line="3091" />
       <source>Ready</source>
       <translation>Bereit</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <location filename="../QScintilla/MiniEditor.py" line="3166" />
       <source>eric Mini Editor</source>
       <translation>eric Mini Editor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3171" />
+      <location filename="../QScintilla/MiniEditor.py" line="3167" />
       <source>The document has unsaved changes.</source>
       <translation>Das Dokument hat ungesicherte Änderungen.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="3194" />
       <source>Open File</source>
       <translation>Datei öffnen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3199" />
+      <location filename="../QScintilla/MiniEditor.py" line="3195" />
       <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;p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3227" />
+      <location filename="../QScintilla/MiniEditor.py" line="3223" />
       <source>File loaded</source>
       <translation>Datei geladen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <location filename="../QScintilla/MiniEditor.py" line="3304" />
       <source>Save File</source>
       <translation>Datei speichern</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3309" />
+      <location filename="../QScintilla/MiniEditor.py" line="3305" />
       <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/MiniEditor.py" line="3315" />
+      <location filename="../QScintilla/MiniEditor.py" line="3311" />
       <source>File saved</source>
       <translation>Datei gespeichert</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>[*] - {0}</source>
       <translation>[*] - {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>Mini Editor</source>
       <translation>Mini Editor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="3655" />
-      <location filename="../QScintilla/MiniEditor.py" line="3339" />
+      <location filename="../QScintilla/MiniEditor.py" line="3680" />
+      <location filename="../QScintilla/MiniEditor.py" line="3651" />
+      <location filename="../QScintilla/MiniEditor.py" line="3335" />
       <source>Untitled</source>
       <translation>Unbenannt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
       <source>{0}[*] - {1}</source>
       <translation>{0} [*] – {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3650" />
+      <location filename="../QScintilla/MiniEditor.py" line="3646" />
       <source>Printing...</source>
       <translation>Drucke...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3666" />
+      <location filename="../QScintilla/MiniEditor.py" line="3662" />
       <source>Printing completed</source>
       <translation>Drucken beendet</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3668" />
+      <location filename="../QScintilla/MiniEditor.py" line="3664" />
       <source>Error while printing</source>
       <translation>Fehler beim Drucken</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3671" />
+      <location filename="../QScintilla/MiniEditor.py" line="3667" />
       <source>Printing aborted</source>
       <translation>Drucken abgebrochen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <location filename="../QScintilla/MiniEditor.py" line="3721" />
       <source>Select all</source>
       <translation>Alles auswählen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3726" />
+      <location filename="../QScintilla/MiniEditor.py" line="3722" />
       <source>Deselect all</source>
       <translation>Auswahl aufheben</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3739" />
+      <location filename="../QScintilla/MiniEditor.py" line="3735" />
       <source>Languages</source>
       <translation>Sprachen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3742" />
+      <location filename="../QScintilla/MiniEditor.py" line="3738" />
       <source>No Language</source>
       <translation>Keine Sprache</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3764" />
+      <location filename="../QScintilla/MiniEditor.py" line="3760" />
       <source>Guessed</source>
       <translation>Ermittelt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3786" />
-      <location filename="../QScintilla/MiniEditor.py" line="3768" />
+      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Alternatives</source>
       <translation>Alternativen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3783" />
+      <location filename="../QScintilla/MiniEditor.py" line="3779" />
       <source>Alternatives ({0})</source>
       <translation>Alternativen ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <location filename="../QScintilla/MiniEditor.py" line="3810" />
       <source>Pygments Lexer</source>
       <translation>Pygments Lexer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3815" />
+      <location filename="../QScintilla/MiniEditor.py" line="3811" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Wähle den anzuwendenden Pygments Lexer.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4336" />
+      <location filename="../QScintilla/MiniEditor.py" line="4332" />
       <source>EditorConfig Properties</source>
       <translation>EditorConfig Eigenschaften</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4337" />
+      <location filename="../QScintilla/MiniEditor.py" line="4333" />
       <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>
@@ -52828,570 +52856,610 @@
   <context>
     <name>MiscellaneousChecker</name>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="15" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="16" />
       <source>coding magic comment not found</source>
       <translation>Kodierungskommentar nicht gefunden</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="18" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="19" />
       <source>unknown encoding ({0}) found in coding magic comment</source>
       <translation>Unzulässige Kodierung ({0}) im Kodierungskommentar gefunden</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="21" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="23" />
       <source>copyright notice not present</source>
       <translation>Copyrightvermerk nicht gefunden</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="24" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="26" />
       <source>copyright notice contains invalid author</source>
       <translation>Copyrightvermerk enthält ungültigen Autor</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="27" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="30" />
       <source>"{0}" is a Python builtin and is being shadowed; consider renaming the variable</source>
       <translation>"{0}" ist ein Python Builtin und wird verdeckt; die Variable sollte umbenannt werden</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="32" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="35" />
       <source>"{0}" is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
       <translation>"{0}" wird als Parameter verwendet und verdeckt ein Python Builtin; der Parameter sollte umbenannt werden</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="37" />
-      <source>unnecessary generator - rewrite as a list comprehension</source>
-      <translation>unnötiger Generator - in List Comprehension umwandeln</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="41" />
+      <source>unnecessary generator - rewrite as a list comprehension</source>
+      <translation>unnötiger Generator - in List Comprehension umwandeln</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="45" />
       <source>unnecessary generator - rewrite as a set comprehension</source>
       <translation>unnötiger Generator - in Set Comprehension umwandeln</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="44" />
-      <source>unnecessary generator - rewrite as a dict comprehension</source>
-      <translation>unnötiger Generator - in Dict Comprehension umwandeln</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="48" />
-      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
-      <translation>unnötige List Comprehension - in eine Set Comprehension umwandeln</translation>
+      <source>unnecessary generator - rewrite as a dict comprehension</source>
+      <translation>unnötiger Generator - in Dict Comprehension umwandeln</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="52" />
-      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
-      <translation>unnötige List Comprehension - in eine Dict Comprehension umwandeln</translation>
+      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
+      <translation>unnötige List Comprehension - in eine Set Comprehension umwandeln</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="56" />
+      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <translation>unnötige List Comprehension - in eine Dict Comprehension umwandeln</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="60" />
       <source>unnecessary {0} call - rewrite as a literal</source>
       <translation>unnötiger {0} Aufruf - als Literal umschreiben</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="59" />
-      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
-      <translation>unnötiger {0} Aufruf um {1}() - ändere das 'reverse' Argument von 'sorted()'</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="63" />
-      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
-      <translation>unnötiger {0} Aufruf um {1}() - verwende sorted(..., reverse={2})</translation>
+      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
+      <translation>unnötiger {0} Aufruf um {1}() - ändere das 'reverse' Argument von 'sorted()'</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="67" />
+      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <translation>unnötiger {0} Aufruf um {1}() - verwende sorted(..., reverse={2})</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="71" />
       <source>unnecessary {0} call around {1}()</source>
       <translation>unnötiger {0} Aufruf um {1}()</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="70" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="74" />
       <source>unnecessary {0} call within {1}()</source>
       <translation>unnötiger {0} Aufruf in {1}()</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="73" />
-      <source>unnecessary subscript reversal of iterable within {0}()</source>
-      <translation>unnötiger Index-Verkehrung des Iterables in {0}()</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="77" />
+      <source>unnecessary subscript reversal of iterable within {0}()</source>
+      <translation>unnötiger Index-Verkehrung des Iterables in {0}()</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="81" />
       <source>unnecessary {0} literal - rewrite as a {1} literal</source>
       <translation>unnötiges {0} literal - als ein {1} Literal umschreiben</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="80" />
-      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
-      <translation>unnötige {0} an tuple() übergeben - als {1} Literal umschreiben</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="84" />
-      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
-      <translation>unnötige {0} an list() übergeben - als {1} Literal umschreiben</translation>
+      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
+      <translation>unnötige {0} an tuple() übergeben - als {1} Literal umschreiben</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="88" />
-      <source>unnecessary list call - remove the outer call to list()</source>
-      <translation>unnötiger list() Aufruf - entferne den äußersten list() Aufruf</translation>
+      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
+      <translation>unnötige {0} an list() übergeben - als {1} Literal umschreiben</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="92" />
+      <source>unnecessary list call - remove the outer call to list()</source>
+      <translation>unnötiger list() Aufruf - entferne den äußersten list() Aufruf</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="96" />
       <source>unnecessary {0} comprehension - rewrite using {0}()</source>
       <translation>unnätige {0} Comprehension - schreibe sie als {0}() um</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="95" />
-      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
-      <translation>unnötige {0} an tuple() übergeben - entferne den äußersten {1}() Aufruf</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="99" />
-      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
-      <translation>unnötige {0} an list() übergeben - entferne den äußersten {1}() Aufruf</translation>
+      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
+      <translation>unnötige {0} an tuple() übergeben - entferne den äußersten {1}() Aufruf</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="103" />
+      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <translation>unnötige {0} an list() übergeben - entferne den äußersten {1}() Aufruf</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="108" />
       <source>sort keys - '{0}' should be before '{1}'</source>
       <translation>Schlüssel sortieren - '{0}' sollte vor '{1}' kommen</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="106" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="112" />
+      <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source>
+      <translation>Die Anzahl der Argumente der Property getter Methode ist falsch (sollte 1 anstatt {0} sein)</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="117" />
+      <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source>
+      <translation>Die Anzahl der Argumente der Property setter Methode ist falsch (sollte 2 anstatt {0} sein)</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="122" />
+      <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source>
+      <translation>Die Anzahl der Argumente der Property deleter Methode ist falsch (sollte 1 anstatt {0} sein)</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="127" />
+      <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation>Der Name der setter Methode ist falsch (sollte '{0}' anstatt '{1}' sein)</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="131" />
+      <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation>Der Name der deleter Methode ist falsch (sollte '{0}' anstatt '{1}' sein)</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" />
+      <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source>
+      <translation>Der Name des setter Dekorators ist falsch (sollte '{0}' anstatt '{1}' sein)</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" />
+      <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source>
+      <translation>Der Name des deleter Dekorators ist falsch (sollte '{0}' anstatt '{1}' sein)</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="143" />
+      <source>multiple decorators were used to declare property '{0}'</source>
+      <translation>Mehrfache Dekoratoren wurden zur Definition des Property '{0}' verwendet</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="148" />
       <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
       <translation>Verwendung von 'datetime.datetime()' ohne 'tzinfo' Argument sollte vermieden werden</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="110" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="152" />
       <source>use of 'datetime.datetime.today()' should be avoided.
 Use 'datetime.datetime.now(tz=)' instead.</source>
       <translation>Verwendung von 'datetime.datetime.today()' sollte vermieden werden
 Verwende 'datetime.datetime.now(tz=)'.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="115" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="157" />
       <source>use of 'datetime.datetime.utcnow()' should be avoided.
 Use 'datetime.datetime.now(tz=)' instead.</source>
       <translation>Verwendung von 'datetime.datetime.utcnow()' sollte vermieden werden
 Verwende 'datetime.datetime.now(tz=)'.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="120" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="162" />
       <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
 Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
       <translation>Verwendung von 'datetime.datetime.utcfromtimestamp()' sollte vermieden werden
 Verwende 'datetime.datetime.fromtimestamp(, tz=)'.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="125" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" />
       <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
       <translation>Verwendung von 'datetime.datetime.now()' ohne 'tz' Argument sollte vermieden werden</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="129" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" />
       <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
       <translation>Verwendung von 'datetime.datetime.fromtimestamp()' ohne 'tz' Argument sollte vermieden werden</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" />
       <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
       <translation>Verwendung von datetime.datetime.strptime()' sollte mit '.replace(tzinfo=)' erweitert werden</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="181" />
       <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
       <translation>Verwendung von 'datetime.datetime.fromordinal()' sollte vermieden werden</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="143" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" />
       <source>use of 'datetime.date()' should be avoided.
 Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
       <translation>Verwendung von 'datetime.date()' sollte vermieden werden
 Verwende 'datetime.datetime(, tzinfo=).date()'.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="148" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" />
       <source>use of 'datetime.date.today()' should be avoided.
 Use 'datetime.datetime.now(tz=).date()' instead.</source>
       <translation>Verwendung von 'datetime.date.today()' sollte vermieden werden
 Verwende 'datetime.datetime.now(tz=).date()'.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="153" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" />
       <source>use of 'datetime.date.fromtimestamp()' should be avoided.
 Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
       <translation>Verwendung von 'datetime.date.fromtimestamp()' sollte vermieden werden
 Verwende 'datetime.datetime.fromtimestamp(tz=).date()'.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="158" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="200" />
       <source>use of 'datetime.date.fromordinal()' should be avoided</source>
       <translation>Verwendung von 'datetime.date.fromordinal()' sollte vermieden werden</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="161" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" />
       <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
       <translation>Verwendung von 'datetime.date.fromisoformat()' sollte vermieden werden</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="165" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="207" />
       <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
       <translation>Verwendung von 'datetime.time()' ohne 'tzinfo' Argument sollte vermieden werden</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="169" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="212" />
       <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
       <translation>'sys.version[:3]' referenziert (Python 3.10), verwende 'sys.version_info'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="173" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="216" />
       <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
       <translation>'sys.version[2]' referenziert (Python 3.10), verwende 'sys.version_info'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="177" />
-      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
-      <translation>'sys.version' verglichen mit Zeichenkette (Python 3.10), verwende 'sys.version_info'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="181" />
-      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
-      <translation>'sys.version_info[0] == 3' referenziert (Python 4), verwende '&gt;='</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" />
-      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
-      <translation>'six.PY3' referenziert (Python 4), verwende 'not six.PY2'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="188" />
-      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation>'sys.version_info[1]' verglichen mit einem Integer (Python 4), vergleiche 'sys.version_info' mit einem Tuple</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="193" />
-      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation>'sys.version_info.minor' verglichen mit einem Integer (Python 4), vergleiche 'sys.version_info' mit einem Tuple</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="198" />
-      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation>'sys.version[0]' referenziert (Python 10), verwende 'sys.version_info'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="202" />
-      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
-      <translation>'sys.version' verglichen mit Zeichenkette (Python 10), verwende 'sys.version_info'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="206" />
-      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation>'sys.version[:1]' referenziert (Python 10), verwende 'sys.version_info'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="210" />
-      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
-      <translation>Verwende kein einfaches 'except:', da es auch unerwartete Ereignisse wie Speicherfehler, Interrupts, System Exit usw. abfängt. Bevorzuge 'except Exception:'. Wenn du absolut sicher bist, sei explizit und verwende 'except BaseException:'.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" />
-      <source>Python does not support the unary prefix increment</source>
-      <translation>Python unterstützt kein 'Unary Prefix Increment'</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="220" />
-      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
-      <translation>Zuweisungen an 'os.environ' löschen nicht die Umgebungsvariablen - verwende 'os.environ.clear()'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="225" />
-      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
-      <translation>Die Verwendung von 'hasattr(x, "__call__")' zum Testen der Ausführbarkeit von 'x' ist unzuverlässig. Verwende 'callable(x)' für konsistente Ergebnisse.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="230" />
-      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
-      <translation>Die Verwendung von .strip() mit Zeichenketten mit mehreren Zeichen ist irreführend. Verwende .replace(), .removeprefix(), .removesuffix() oder reguläre Ausdrücke, um Zeichenkettenteile zu entfernen.</translation>
+      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <translation>'sys.version' verglichen mit Zeichenkette (Python 3.10), verwende 'sys.version_info'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="224" />
+      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <translation>'sys.version_info[0] == 3' referenziert (Python 4), verwende '&gt;='</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" />
+      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
+      <translation>'six.PY3' referenziert (Python 4), verwende 'not six.PY2'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="231" />
+      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
+      <translation>'sys.version_info[1]' verglichen mit einem Integer (Python 4), vergleiche 'sys.version_info' mit einem Tuple</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" />
-      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
-      <translation>Schleifenvariable {0} wird im Schleifenkörper nicht verwendet - beginne den Namen mit einem Unterstrich</translation>
+      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
+      <translation>'sys.version_info.minor' verglichen mit einem Integer (Python 4), vergleiche 'sys.version_info' mit einem Tuple</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" />
-      <source>do not call getattr with a constant attribute value</source>
-      <translation>verwende getattr nicht mit einem konstanten Attribut</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="244" />
-      <source>do not call setattr with a constant attribute value</source>
-      <translation>verwende setattr nicht mit einem konstanten Attribut</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="247" />
-      <source>do not call assert False since python -O removes these calls</source>
-      <translation>verwende nicht 'assert False', da python -O dies entfernt</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="251" />
-      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
-      <translation>return/continue/break innerhalb eines finally Blocks unterdrückt Ausnahmen. Ausnahmen sollten in except Blöcken behandelt werden. Kontrollanweisungen können aus dem finally Block verschoben werden.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" />
-      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
-      <translation>Ein Tuple der Länge eins ist redundant. Schreibe 'except {0}:' anstelle 'except ({0},):'.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="262" />
-      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
-      <translation>Redundante Ausnahmetypen in 'except ({0}){1}:'. Schreibe 'except {2}{1}:', was die exakt gleichen Ausnahmen behandelt.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="267" />
-      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
-      <translation>Das Ergebnis des Vergleiches wird nicht verwendet. Diese Zeile macht nichts. Sollte ihr ein 'assert' vorangestellt werden?</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="272" />
-      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
-      <translation>Ein Literal kann nicht geworfen werden. Sollte es zurückgegeben oder eine Ausnahme geworfen werden?</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="276" />
-      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
-      <translation>'assertRaises(Exception)' und 'pytest.raises(Exception)' sollten als unschön betrachtet werden. Sie können dazu führen, dass Tests bestanden werden, obwohl der Code auf Grund eines Tippfehlers niemals getestet wurde. Verwende ein Assert für eine spezifischere Exception oder verwende 'assertRaisesRegex' (statt 'assertRaises') oder verwende das 'match' Schlüsselwortargument (bei 'pytest.raises') oder verwende die Kontextmanager Form mit einem Ziel.</translation>
+      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation>'sys.version[0]' referenziert (Python 10), verwende 'sys.version_info'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" />
+      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
+      <translation>'sys.version' verglichen mit Zeichenkette (Python 10), verwende 'sys.version_info'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" />
+      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation>'sys.version[:1]' referenziert (Python 10), verwende 'sys.version_info'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="254" />
+      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
+      <translation>Verwende kein einfaches 'except:', da es auch unerwartete Ereignisse wie Speicherfehler, Interrupts, System Exit usw. abfängt. Bevorzuge 'except Exception:'. Wenn du absolut sicher bist, sei explizit und verwende 'except BaseException:'.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" />
+      <source>Python does not support the unary prefix increment</source>
+      <translation>Python unterstützt kein 'Unary Prefix Increment'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="264" />
+      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
+      <translation>Zuweisungen an 'os.environ' löschen nicht die Umgebungsvariablen - verwende 'os.environ.clear()'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="269" />
+      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
+      <translation>Die Verwendung von 'hasattr(x, "__call__")' zum Testen der Ausführbarkeit von 'x' ist unzuverlässig. Verwende 'callable(x)' für konsistente Ergebnisse.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="274" />
+      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <translation>Die Verwendung von .strip() mit Zeichenketten mit mehreren Zeichen ist irreführend. Verwende .replace(), .removeprefix(), .removesuffix() oder reguläre Ausdrücke, um Zeichenkettenteile zu entfernen.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="280" />
+      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
+      <translation>Schleifenvariable {0} wird im Schleifenkörper nicht verwendet - beginne den Namen mit einem Unterstrich</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="285" />
-      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
-      <translation>Nutzloser Ausdruck gefunden. Er sollte einer Variablen zugewiesen oder entfernt werden.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="290" />
-      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
-      <translation>Die Verwendung von 'functools.lru_cache' oder 'functools.cache' bei Methoden kann zu Speicherlecks führen. Der Cache kann Instanzreferenzen beibehalten und so die Garbage Collection verhindern.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="296" />
-      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
-      <translation>Gefundene for-Schleife, die die Iterable bei jedem Schleifendurchlauf neu zuordnet.</translation>
+      <source>do not call getattr with a constant attribute value</source>
+      <translation>verwende getattr nicht mit einem konstanten Attribut</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" />
+      <source>do not call setattr with a constant attribute value</source>
+      <translation>verwende setattr nicht mit einem konstanten Attribut</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" />
+      <source>do not call assert False since python -O removes these calls</source>
+      <translation>verwende nicht 'assert False', da python -O dies entfernt</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" />
+      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
+      <translation>return/continue/break innerhalb eines finally Blocks unterdrückt Ausnahmen. Ausnahmen sollten in except Blöcken behandelt werden. Kontrollanweisungen können aus dem finally Block verschoben werden.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="301" />
-      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
-      <translation>f-String als Docstring verwendet. Dies wird durch Python als ein 'Joined String' anstelle eines Docstring interpretiert.</translation>
+      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
+      <translation>Ein Tuple der Länge eins ist redundant. Schreibe 'except {0}:' anstelle 'except ({0},):'.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="306" />
-      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
-      <translation>Keine Argumente an 'contextlib.suppress' übergeben. Es werden keine Ausnahmen unterdrückt und deshalb ist dieser Kontextmanager überflüssig.</translation>
+      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
+      <translation>Redundante Ausnahmetypen in 'except ({0}){1}:'. Schreibe 'except {2}{1}:', was die exakt gleichen Ausnahmen behandelt.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" />
-      <source>Function definition does not bind loop variable '{0}'.</source>
-      <translation>Funktionsdefinition bindet die Schleifenvariable '{0}' nicht.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" />
-      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
-      <translation>{0} ist eine abstrakte Basisklasse, aber keine ihrer definierten Methoden ist abstrakt. Dies ist nicht unbedingt ein Fehler, könnte aber auf das Fehlen eines @abstractmethod Decorators, ggf. im Zusammenhang mit @classmethod, @property und/oder @staticmethod zurückzuführen sein.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="322" />
-      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
-      <translation>Die Ausnahme '{0}' wurde mehrfach abgefangen. Nur das erste 'except' wird berücksichtigt und alle anderen 'except' Blöcke können entfernt werden.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="327" />
-      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
-      <translation>Von einer Star-arg Auflösung nach einem Schlüsselwortargument wird dringend abgeraten, da sie nur funktioniert, wenn der Schlüsselwortparameter nach allen Parameters der aufzulösenden Sequenz deklariert wird, und diese Änderung der Reihenfolge kann einen Leser überraschen und in die Irre führen.</translation>
+      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
+      <translation>Das Ergebnis des Vergleiches wird nicht verwendet. Diese Zeile macht nichts. Sollte ihr ein 'assert' vorangestellt werden?</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" />
+      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
+      <translation>Ein Literal kann nicht geworfen werden. Sollte es zurückgegeben oder eine Ausnahme geworfen werden?</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" />
+      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <translation>'assertRaises(Exception)' und 'pytest.raises(Exception)' sollten als unschön betrachtet werden. Sie können dazu führen, dass Tests bestanden werden, obwohl der Code auf Grund eines Tippfehlers niemals getestet wurde. Verwende ein Assert für eine spezifischere Exception oder verwende 'assertRaisesRegex' (statt 'assertRaises') oder verwende das 'match' Schlüsselwortargument (bei 'pytest.raises') oder verwende die Kontextmanager Form mit einem Ziel.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="329" />
+      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
+      <translation>Nutzloser Ausdruck gefunden. Er sollte einer Variablen zugewiesen oder entfernt werden.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" />
-      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
-      <translation>{0} ist eine leere Methode in einer abstrakten Klasse, hat aber keinen abstrakt Dekorator. Es sollte @abstractmethod hinzugefügt werden.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" />
-      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
-      <translation>Es wurde kein explizites 'stacklevel' Argument gefunden. Die 'warn' Methode des 'warnings' Moduls verwendet einen Stacklevel von 1. Dies zeigt nur einen Stacktrace für die Zeile, in der die 'warn' Methode aufgerufen wurde. Es wird daher empfohlen, einen Stacklevel von 2 oder größer zu verwenden, um dem Nutzer mehr Informationen zu präsentieren.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="347" />
-      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
-      <translation>Die Verwendung von 'except ():' mit eine leeren Tuple fangt nichts ab. Füge zu behandelnde Exceptions hinzu.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="352" />
-      <source>Except handlers should only be names of exception classes</source>
-      <translation>Except Handler sollten nur Namen von Exception Klassen sein</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="356" />
-      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
-      <translation>Die mehrfache Verwendung des von 'itertools.groupby()' zurückgegebenen Iterators hat bei der zweiten Verwendung keine Wirkung. Sichere das Ergebnis in einer Liste, falls es mehrfach verwendet werden muss.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" />
-      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
-      <translation>Mögliche ungewollte Typannotation (mit ':'). Sollte dies eine Zuweisung (mit '=') sein?</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" />
-      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
-      <translation>Sets sollten keine doppelte Elemente enthalten. Doppelte Einträge werden zur Laufzeit durch einen einzelnen Eintrag ersetzt.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="372" />
-      <source>unncessary f-string</source>
-      <translation>unnötige f-Zeichenkette</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" />
-      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
-      <translation>als erstes Argument von 'super()' kann nicht 'self.__class__' verwendet werden</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" />
-      <source>found {0} formatter</source>
-      <translation>{0} Format gefunden</translation>
+      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
+      <translation>Die Verwendung von 'functools.lru_cache' oder 'functools.cache' bei Methoden kann zu Speicherlecks führen. Der Cache kann Instanzreferenzen beibehalten und so die Garbage Collection verhindern.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="340" />
+      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <translation>Gefundene for-Schleife, die die Iterable bei jedem Schleifendurchlauf neu zuordnet.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="345" />
+      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <translation>f-String als Docstring verwendet. Dies wird durch Python als ein 'Joined String' anstelle eines Docstring interpretiert.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="350" />
+      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <translation>Keine Argumente an 'contextlib.suppress' übergeben. Es werden keine Ausnahmen unterdrückt und deshalb ist dieser Kontextmanager überflüssig.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="355" />
+      <source>Function definition does not bind loop variable '{0}'.</source>
+      <translation>Funktionsdefinition bindet die Schleifenvariable '{0}' nicht.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="359" />
+      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
+      <translation>{0} ist eine abstrakte Basisklasse, aber keine ihrer definierten Methoden ist abstrakt. Dies ist nicht unbedingt ein Fehler, könnte aber auf das Fehlen eines @abstractmethod Decorators, ggf. im Zusammenhang mit @classmethod, @property und/oder @staticmethod zurückzuführen sein.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" />
+      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
+      <translation>Die Ausnahme '{0}' wurde mehrfach abgefangen. Nur das erste 'except' wird berücksichtigt und alle anderen 'except' Blöcke können entfernt werden.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" />
+      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
+      <translation>Von einer Star-arg Auflösung nach einem Schlüsselwortargument wird dringend abgeraten, da sie nur funktioniert, wenn der Schlüsselwortparameter nach allen Parameters der aufzulösenden Sequenz deklariert wird, und diese Änderung der Reihenfolge kann einen Leser überraschen und in die Irre führen.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" />
-      <source>format string does contain unindexed parameters</source>
-      <translation>Formatstring enthält nicht indizierte Parameter</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="381" />
-      <source>docstring does contain unindexed parameters</source>
-      <translation>Dokumentationsstring enthält nicht indizierte Parameter</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="384" />
-      <source>other string does contain unindexed parameters</source>
-      <translation>Anderer String enthält nicht indizierte Parameter</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" />
-      <source>format call uses too large index ({0})</source>
-      <translation>Format Aufruf enthält zu großen Index ({0})</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="390" />
-      <source>format call uses missing keyword ({0})</source>
-      <translation>Format Aufruf verwendet fehlendes Schlüsselwort ({0})</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="393" />
-      <source>format call uses keyword arguments but no named entries</source>
-      <translation>Format Aufruf verwendet Schlüsselwort Argumente, enthält aber keine benannten Einträge</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="397" />
-      <source>format call uses variable arguments but no numbered entries</source>
-      <translation>Format Aufruf verwendet variable argumente, enthält aber keine nummerierten Einträge</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="401" />
-      <source>format call uses implicit and explicit indexes together</source>
-      <translation>Format Aufruf verwendet sowohl implizite als auch explizite Indizes</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="405" />
-      <source>format call provides unused index ({0})</source>
-      <translation>Format Aufruf verwendet ungenutzten Index ({0})</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" />
-      <source>format call provides unused keyword ({0})</source>
-      <translation>Format Aufruf verwendet ungenutztes Schlüsselwort ({0})</translation>
+      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
+      <translation>{0} ist eine leere Methode in einer abstrakten Klasse, hat aber keinen abstrakt Dekorator. Es sollte @abstractmethod hinzugefügt werden.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" />
+      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
+      <translation>Es wurde kein explizites 'stacklevel' Argument gefunden. Die 'warn' Methode des 'warnings' Moduls verwendet einen Stacklevel von 1. Dies zeigt nur einen Stacktrace für die Zeile, in der die 'warn' Methode aufgerufen wurde. Es wird daher empfohlen, einen Stacklevel von 2 oder größer zu verwenden, um dem Nutzer mehr Informationen zu präsentieren.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="391" />
+      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
+      <translation>Die Verwendung von 'except ():' mit eine leeren Tuple fangt nichts ab. Füge zu behandelnde Exceptions hinzu.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" />
+      <source>Except handlers should only be names of exception classes</source>
+      <translation>Except Handler sollten nur Namen von Exception Klassen sein</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="400" />
+      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
+      <translation>Die mehrfache Verwendung des von 'itertools.groupby()' zurückgegebenen Iterators hat bei der zweiten Verwendung keine Wirkung. Sichere das Ergebnis in einer Liste, falls es mehrfach verwendet werden muss.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="406" />
+      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
+      <translation>Mögliche ungewollte Typannotation (mit ':'). Sollte dies eine Zuweisung (mit '=') sein?</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" />
-      <source>logging statement uses string.format()</source>
-      <translation>Loggingbefehl verwendet 'string.format()'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="414" />
-      <source>logging statement uses '%'</source>
-      <translation>Loggingbefehl verwendet '%'</translation>
+      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
+      <translation>Sets sollten keine doppelte Elemente enthalten. Doppelte Einträge werden zur Laufzeit durch einen einzelnen Eintrag ersetzt.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="417" />
-      <source>logging statement uses '+'</source>
-      <translation>Loggingbefehl verwendet '+'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" />
-      <source>logging statement uses f-string</source>
-      <translation>Loggingbefehl verwendet 'f-string'</translation>
+      <source>unncessary f-string</source>
+      <translation>unnötige f-Zeichenkette</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="418" />
+      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
+      <translation>als erstes Argument von 'super()' kann nicht 'self.__class__' verwendet werden</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="423" />
-      <source>logging statement uses 'warn' instead of 'warning'</source>
-      <translation>Loggingbefehl verwendet 'warn' anstelle 'warning'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="426" />
-      <source>expected these __future__ imports: {0}; but only got: {1}</source>
-      <translation>erwartete __future__ Imports: {0}; aber nur {1} gefunden</translation>
+      <source>found {0} formatter</source>
+      <translation>{0} Format gefunden</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" />
+      <source>format string does contain unindexed parameters</source>
+      <translation>Formatstring enthält nicht indizierte Parameter</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="427" />
+      <source>docstring does contain unindexed parameters</source>
+      <translation>Dokumentationsstring enthält nicht indizierte Parameter</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="430" />
-      <source>expected these __future__ imports: {0}; but got none</source>
-      <translation>erwartete __future__ Imports: {0}; jedoch keine gefunden</translation>
+      <source>other string does contain unindexed parameters</source>
+      <translation>Anderer String enthält nicht indizierte Parameter</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" />
-      <source>gettext import with alias _ found: {0}</source>
-      <translation>gettext Import mit Alias _ entdeckt: {0}</translation>
+      <source>format call uses too large index ({0})</source>
+      <translation>Format Aufruf enthält zu großen Index ({0})</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="436" />
-      <source>print statement found</source>
-      <translation>print Statement gefunden</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" />
-      <source>one element tuple found</source>
-      <translation>Tuple mit einem Element gefunden</translation>
+      <source>format call uses missing keyword ({0})</source>
+      <translation>Format Aufruf verwendet fehlendes Schlüsselwort ({0})</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" />
+      <source>format call uses keyword arguments but no named entries</source>
+      <translation>Format Aufruf verwendet Schlüsselwort Argumente, enthält aber keine benannten Einträge</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="440" />
-      <source>mutable default argument of type {0}</source>
-      <translation>veränderbares Standardargument des Typs {0}</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="446" />
-      <source>mutable default argument of function call '{0}'</source>
-      <translation>Funktionsaufruf '{0}' als veränderbares Standardargument</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" />
-      <source>None should not be added at any return if function has no return value except None</source>
-      <translation>None sollte nicht zu einem return hinzugefügt werden, wenn die Funktion keinen Rückgabewert außer None besitzt</translation>
+      <source>format call uses variable arguments but no numbered entries</source>
+      <translation>Format Aufruf verwendet variable argumente, enthält aber keine nummerierten Einträge</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="447" />
+      <source>format call uses implicit and explicit indexes together</source>
+      <translation>Format Aufruf verwendet sowohl implizite als auch explizite Indizes</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="451" />
+      <source>format call provides unused index ({0})</source>
+      <translation>Format Aufruf verwendet ungenutzten Index ({0})</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" />
-      <source>an explicit value at every return should be added if function has a return value except None</source>
-      <translation>ein expliziter Wert sollte jedem return hinzugefügt werden, wenn eine Funktion einen Rückgabewert außer None besitzt</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="459" />
-      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
-      <translation>ein expliziter Rückgabewert sollte am Ende einer Funktion hinzugefügt werden, wenn sie einen Rückgabewert außer None besitzt</translation>
+      <source>format call provides unused keyword ({0})</source>
+      <translation>Format Aufruf verwendet ungenutztes Schlüsselwort ({0})</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" />
+      <source>logging statement uses string.format()</source>
+      <translation>Loggingbefehl verwendet 'string.format()'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="461" />
+      <source>logging statement uses '%'</source>
+      <translation>Loggingbefehl verwendet '%'</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="464" />
-      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
-      <translation>einer Variable sollte kein Wert zugewiesen werden, wenn sie nur als Rückgabewert verwendet wird</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="469" />
-      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
-      <translation>ziehe eine implizite Zeilenfortsetzung innerhalb von Klammern gegenüber einem Backslash (\) vor</translation>
+      <source>logging statement uses '+'</source>
+      <translation>Loggingbefehl verwendet '+'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" />
+      <source>logging statement uses f-string</source>
+      <translation>Loggingbefehl verwendet 'f-string'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="470" />
+      <source>logging statement uses 'warn' instead of 'warning'</source>
+      <translation>Loggingbefehl verwendet 'warn' anstelle 'warning'</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="474" />
+      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <translation>erwartete __future__ Imports: {0}; aber nur {1} gefunden</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="478" />
+      <source>expected these __future__ imports: {0}; but got none</source>
+      <translation>erwartete __future__ Imports: {0}; jedoch keine gefunden</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="482" />
+      <source>gettext import with alias _ found: {0}</source>
+      <translation>gettext Import mit Alias _ entdeckt: {0}</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="486" />
+      <source>print statement found</source>
+      <translation>print Statement gefunden</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="488" />
+      <source>one element tuple found</source>
+      <translation>Tuple mit einem Element gefunden</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="495" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="492" />
+      <source>mutable default argument of type {0}</source>
+      <translation>veränderbares Standardargument des Typs {0}</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="498" />
+      <source>mutable default argument of function call '{0}'</source>
+      <translation>Funktionsaufruf '{0}' als veränderbares Standardargument</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="502" />
+      <source>None should not be added at any return if function has no return value except None</source>
+      <translation>None sollte nicht zu einem return hinzugefügt werden, wenn die Funktion keinen Rückgabewert außer None besitzt</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="507" />
+      <source>an explicit value at every return should be added if function has a return value except None</source>
+      <translation>ein expliziter Wert sollte jedem return hinzugefügt werden, wenn eine Funktion einen Rückgabewert außer None besitzt</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="512" />
+      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <translation>ein expliziter Rückgabewert sollte am Ende einer Funktion hinzugefügt werden, wenn sie einen Rückgabewert außer None besitzt</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" />
+      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
+      <translation>einer Variable sollte kein Wert zugewiesen werden, wenn sie nur als Rückgabewert verwendet wird</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="523" />
+      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <translation>ziehe eine implizite Zeilenfortsetzung innerhalb von Klammern gegenüber einem Backslash (\) vor</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="529" />
       <source>commented code lines should be removed</source>
       <translation>auskommentierte Codezeilen sollten entfernt werden</translation>
     </message>
@@ -56609,103 +56677,103 @@
       <translation>python konnte nicht gestarted werden.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="193" />
+      <location filename="../PipInterface/Pip.py" line="195" />
       <source>&lt;project&gt;</source>
       <translation>&lt;Projekt&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="216" />
+      <location filename="../PipInterface/Pip.py" line="220" />
       <source>Interpreter for Virtual Environment</source>
       <translation>Interpreter für virtuelle Umgebung</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="217" />
+      <location filename="../PipInterface/Pip.py" line="221" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation>Für die gewählte virtuelle Umgebung ist kein Interpreter konfiguriert.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="257" />
+      <location filename="../PipInterface/Pip.py" line="261" />
       <source>Install PIP</source>
       <translation>PIP installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="304" />
+      <location filename="../PipInterface/Pip.py" line="308" />
       <source>Repair PIP</source>
       <translation>PIP reparieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="395" />
+      <location filename="../PipInterface/Pip.py" line="399" />
       <source>Upgrade Packages</source>
       <translation>Pakete aktualisieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="441" />
+      <location filename="../PipInterface/Pip.py" line="445" />
       <source>Install Packages</source>
       <translation>Pakete installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="471" />
+      <location filename="../PipInterface/Pip.py" line="475" />
       <source>Install Packages from Requirements</source>
       <translation>Pakete gem. Anforderungen installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="492" />
+      <location filename="../PipInterface/Pip.py" line="496" />
       <source>Install Project</source>
       <translation>Projekt installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="549" />
-      <location filename="../PipInterface/Pip.py" line="521" />
-      <location filename="../PipInterface/Pip.py" line="512" />
+      <location filename="../PipInterface/Pip.py" line="553" />
+      <location filename="../PipInterface/Pip.py" line="525" />
+      <location filename="../PipInterface/Pip.py" line="516" />
       <source>Uninstall Packages</source>
       <translation>Pakete deinstallieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="550" />
-      <location filename="../PipInterface/Pip.py" line="513" />
+      <location filename="../PipInterface/Pip.py" line="554" />
+      <location filename="../PipInterface/Pip.py" line="517" />
       <source>Do you really want to uninstall these packages?</source>
       <translation>Sollen diese Pakete wirklich deinstalliert werden?</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="559" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Uninstall Packages from Requirements</source>
       <translation>Pakete gem. Anforderungen deinstallieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="912" />
+      <location filename="../PipInterface/Pip.py" line="916" />
       <source>Cache Info</source>
       <translation>Zwischenspeicherinformationen</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="938" />
-      <location filename="../PipInterface/Pip.py" line="929" />
+      <location filename="../PipInterface/Pip.py" line="942" />
+      <location filename="../PipInterface/Pip.py" line="933" />
       <source>List Cached Files</source>
       <translation>Liste zwischengespeicherte Dateien</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="930" />
+      <location filename="../PipInterface/Pip.py" line="934" />
       <source>Enter a file pattern (empty for all):</source>
       <translation>Gib ein Dateinamenmuster ein (leer für alle):</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="962" />
-      <location filename="../PipInterface/Pip.py" line="955" />
+      <location filename="../PipInterface/Pip.py" line="966" />
+      <location filename="../PipInterface/Pip.py" line="959" />
       <source>Remove Cached Files</source>
       <translation>Zwischengespeicherte Dateien Löschen</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="956" />
+      <location filename="../PipInterface/Pip.py" line="960" />
       <source>Enter a file pattern:</source>
       <translation>Gib ein Dateinamenmuster ein:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="987" />
-      <location filename="../PipInterface/Pip.py" line="979" />
+      <location filename="../PipInterface/Pip.py" line="991" />
+      <location filename="../PipInterface/Pip.py" line="983" />
       <source>Purge Cache</source>
       <translation>Zwischenspeicher Leeren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="980" />
+      <location filename="../PipInterface/Pip.py" line="984" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation>Soll der pip Zwischenspeicher wirklich geleert werden? Alle Dateien müssen neu heruntergeladen werden.</translation>
     </message>
@@ -56728,12 +56796,12 @@
       <translation>Fehler</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="153" />
+      <location filename="../PipInterface/PipDialog.py" line="154" />
       <source>Process Generation Error</source>
       <translation>Prozessfehler</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="154" />
+      <location filename="../PipInterface/PipDialog.py" line="155" />
       <source>The process {0} could not be started.</source>
       <translation>Der Prozess {0} konnte nicht gestartet werden.</translation>
     </message>
@@ -57598,30 +57666,30 @@
       <translation>Dateien:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="434" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="435" />
       <source>Getting installed packages...</source>
       <translation>Ermittle installierte Pakete...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="448" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="449" />
       <source>Getting outdated packages...</source>
       <translation>Ermittle veraltete Pakete...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1202" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1022" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1009" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="973" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
       <source>Search PyPI</source>
       <translation>PyPI durchsuchen</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="975" />
       <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Fehler während der Suche nach &lt;b&gt;{0}&lt;/b&gt; empfangen.&lt;/p&gt;&lt;p&gt;Fehler: {1}&lt;/p&gt;</translation>
     </message>
     <message numerus="yes">
-      <location filename="../PipInterface/PipPackagesWidget.py" line="989" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="990" />
       <source>%n package(s) found.</source>
       <translation>
         <numerusform>%n Paket gefunden.</numerusform>
@@ -57629,195 +57697,203 @@
       </translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="996" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="997" />
       <source>Showing first {0} packages found.</source>
       <translation>Zeige die ersten {0} gefundenen Pakete.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1015" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1016" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1011" />
       <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Es gab keine Ergebnisse für &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1024" />
       <source>&lt;p&gt;There were no more results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Es gab keine weiteren Ergebnisse für &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1204" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Keine detaillierten Paketinformationen für &lt;b&gt;{0}&lt;/b&gt; verfügbar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1222" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1223" />
       <source>Pip</source>
       <translation>Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1224" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1225" />
       <source>Install Pip</source>
       <translation>Pip installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1227" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1228" />
       <source>Install Pip to User-Site</source>
       <translation>Pip in Nutzerverzeichnis installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1230" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1231" />
       <source>Repair Pip</source>
       <translation>Pip reparieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1237" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1238" />
       <source>Install</source>
       <translation>Installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1402" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1239" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1403" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1240" />
       <source>Install Packages</source>
       <translation>Pakete installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1242" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1243" />
       <source>Install Local Package</source>
       <translation>Lokales Paket installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1245" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1246" />
       <source>Re-Install Selected Packages</source>
       <translation>Ausgewählte Pakete neu installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1252" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1253" />
       <source>Requirements/Constraints</source>
       <translation>Anforderungen/Constraints</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1254" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1255" />
       <source>Install Requirements</source>
       <translation>Anforderungen installieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1257" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1258" />
       <source>Uninstall Requirements</source>
       <translation>Anforderungen deinstallieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1260" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1261" />
       <source>Generate Requirements...</source>
       <translation>Anforderungen erzeugen...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1264" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1265" />
       <source>Generate Constraints...</source>
       <translation>Constraints generieren...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1271" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1272" />
       <source>Cache</source>
       <translation>Zwischenspeicher</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1273" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1274" />
       <source>Show Cache Info...</source>
       <translation>Zwischenspeicherinfo...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1276" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1277" />
       <source>Show Cached Files...</source>
       <translation>Zwischengespeicherte Dateien...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1279" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1280" />
       <source>Remove Cached Files...</source>
       <translation>Zwischengespeicherte Dateien löschen...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1282" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1283" />
       <source>Purge Cache...</source>
       <translation>Zwischenspeicher leeren...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1299" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1300" />
       <source>Show Licenses...</source>
       <translation>Lizenzen anzeigen...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1303" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1304" />
       <source>Check Vulnerabilities</source>
       <translation>Verwundbarkeiten prüfen</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1307" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1308" />
       <source>Update Vulnerability Database</source>
       <translation>Verwundbarkeitsdatenbank aktualisieren</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1311" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1312" />
       <source>Create SBOM file</source>
       <translation>STL Datei erzeugen</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1318" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1319" />
       <source>Edit User Configuration...</source>
       <translation>Nutzerkonfiguration bearbeiten...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1321" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1322" />
       <source>Edit Environment Configuration...</source>
       <translation>Umgebungskonfiguration bearbeiten...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1326" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1327" />
       <source>Configure...</source>
       <translation>Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1545" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1532" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1521" />
-      <source>Edit Configuration</source>
-      <translation>Konfiguration bearbeiten</translation>
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1546" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1533" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1522" />
+      <source>Edit Configuration</source>
+      <translation>Konfiguration bearbeiten</translation>
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1547" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1534" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1523" />
       <source>No valid configuration path determined. Aborting</source>
       <translation>Es konnte kein gültiger Konfigurationspfad ermittelt werden. Abbruch</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1714" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1736" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation>{0} {1}</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1735" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1757" />
       <source>Affected Version:</source>
       <translation>Betroffene Version:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1760" />
       <source>Advisory:</source>
       <translation>Advisory:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1862" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1843" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1890" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1865" />
       <source>unknown</source>
       <translation>unbekannt</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1887" />
       <source>any</source>
       <translation>beliebig</translation>
     </message>
   </context>
   <context>
+    <name>PipPackagesWindow</name>
+    <message>
+      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <source>Manage Packages</source>
+      <translation>Paketverwaltung</translation>
+    </message>
+  </context>
+  <context>
     <name>PipPage</name>
     <message>
       <location filename="../Preferences/ConfigurationPages/PipPage.py" line="31" />
@@ -59214,7 +59290,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="471" />
       <source>Variable Name</source>
       <translation>Variablenname</translation>
     </message>
@@ -60846,8 +60922,8 @@
       <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="6671" />
-      <location filename="../Project/Project.py" line="6642" />
+      <location filename="../Project/Project.py" line="6668" />
+      <location filename="../Project/Project.py" line="6639" />
       <location filename="../Project/Project.py" line="6593" />
       <location filename="../Project/Project.py" line="4800" />
       <source>Execute Make</source>
@@ -60869,7 +60945,7 @@
       <translation>&lt;b&gt;Make ausführen&lt;/b&gt;&lt;p&gt;Die führt einen 'make' Lauf aus, um das konfigurierte Ziel zu bauen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6648" />
+      <location filename="../Project/Project.py" line="6645" />
       <location filename="../Project/Project.py" line="4819" />
       <source>Test for Changes</source>
       <translation>Auf Änderungen prüfen</translation>
@@ -61389,22 +61465,22 @@
       <translation>Der make Prozess ist nicht gestartet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6643" />
+      <location filename="../Project/Project.py" line="6640" />
       <source>The make process crashed.</source>
       <translation>Der make Prozess ist abgestürzt.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6651" />
+      <location filename="../Project/Project.py" line="6648" />
       <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="6656" />
+      <location filename="../Project/Project.py" line="6653" />
       <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="6672" />
+      <location filename="../Project/Project.py" line="6669" />
       <source>The makefile contains errors.</source>
       <translation>Die make Datei enthält Fehler.</translation>
     </message>
@@ -64054,7 +64130,7 @@
       <translation>JSON Bericht</translation>
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="424" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="434" />
       <location filename="../DataViews/PyCoverageDialog.py" line="69" />
       <source>LCOV Report</source>
       <translation>LCOV Bericht</translation>
@@ -64083,12 +64159,12 @@
       </translation>
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="425" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="435" />
       <source>Enter the path of the output file:</source>
       <translation>Gib den Pfad zur Ausgabedatei ein:</translation>
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="429" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="439" />
       <source>LCOV Files (*.lcov);;All Files (*)</source>
       <translation>LCOV Dateien (*.lcov);;Alle Dateien (*)</translation>
     </message>
@@ -64365,7 +64441,7 @@
       <translation>%v/%m Dateien</translation>
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="361" />
+      <location filename="../DataViews/PyProfileDialog.py" line="371" />
       <location filename="../DataViews/PyProfileDialog.py" line="91" />
       <source>Exclude Python Library</source>
       <translation>Python-Bibliothek ausblenden</translation>
@@ -64416,7 +64492,7 @@
       <translation>&lt;p&gt;Die Profildaten konnten nicht aus der Datei &lt;b&gt;{0}&lt;/b&gt; gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="357" />
+      <location filename="../DataViews/PyProfileDialog.py" line="367" />
       <source>Include Python Library</source>
       <translation>Python-Bibliothek einblenden</translation>
     </message>
@@ -65807,38 +65883,38 @@
       <translation>Qelltextbereich</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="213" />
+      <location filename="../UI/PythonAstViewer.py" line="214" />
       <source>No editor has been opened.</source>
       <translation>Es wurde kein Editor geöffnet.</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="223" />
+      <location filename="../UI/PythonAstViewer.py" line="224" />
       <source>The current editor does not contain any source code.</source>
       <translation>Der aktuelle Editor enthält keinen Quelltext.</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="229" />
+      <location filename="../UI/PythonAstViewer.py" line="230" />
       <source>The current editor does not contain Python source code.</source>
       <translation>Der aktuelle Editor enthält keinen Python Quelltext.</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="247" />
+      <location filename="../UI/PythonAstViewer.py" line="248" />
       <source>Module</source>
       <translation>Modul</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="279" />
+      <location filename="../UI/PythonAstViewer.py" line="280" />
       <source>{0}: {1}</source>
       <translation>{0}: {1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="296" />
-      <location filename="../UI/PythonAstViewer.py" line="286" />
+      <location filename="../UI/PythonAstViewer.py" line="297" />
+      <location filename="../UI/PythonAstViewer.py" line="287" />
       <source>{0},{1}</source>
       <translation>{0},{1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="303" />
+      <location filename="../UI/PythonAstViewer.py" line="304" />
       <source>{0}  -  {1}</source>
       <translation>{0}  -  {1}</translation>
     </message>
@@ -68427,7 +68503,7 @@
       <translation>Verfügbare Patchschlangen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="716" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="714" />
       <source>Initializing new queue repository</source>
       <translation>Neues Patchschlangenrepository initialisieren</translation>
     </message>
@@ -69405,50 +69481,82 @@
       <translation>WebREPL wird auf diesem Gerät nicht unterstützt.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1341" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1555" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
       <source>Active</source>
       <translation>Aktiv</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
-      <source>Connected</source>
-      <translation>Verbunden</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1345" />
-      <source>Status</source>
-      <translation>Status</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1349" />
-      <source>Hostname</source>
-      <translation>Hostname</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1350" />
-      <source>IPv4 Address</source>
-      <translation>IPv4 Adresse</translation>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1343" />
+      <source>Name</source>
+      <translation>Name</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1568" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1344" />
+      <source>MAC-Address</source>
+      <translation>MAC-Addresse</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1347" />
+      <source>Address Type</source>
+      <translation>Adresstyp</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Public</source>
+      <translation>Öffentlich</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Random</source>
+      <translation>Zufällig</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>MTU</source>
+      <translation>MTU</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>{0} Bytes</source>
+      <translation>{0} Bytes</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1556" />
+      <source>Connected</source>
+      <translation>Verbunden</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1559" />
+      <source>Status</source>
+      <translation>Status</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1563" />
+      <source>Hostname</source>
+      <translation>Hostname</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1564" />
+      <source>IPv4 Address</source>
+      <translation>IPv4 Adresse</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1565" />
       <source>Netmask</source>
       <translation>Netzmaske</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1352" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1566" />
       <source>Gateway</source>
       <translation>Gateway</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1353" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1567" />
       <source>DNS</source>
       <translation>DNS</translation>
     </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1354" />
-      <source>MAC-Address</source>
-      <translation>MAC-Addresse</translation>
-    </message>
   </context>
   <context>
     <name>RccCompilerOptionsDialog</name>
@@ -70531,7 +70639,7 @@
       <translation>Groß-/Kleinschreibung</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SearchWidget.py" line="98" />
+      <location filename="../WebBrowser/SearchWidget.py" line="100" />
       <source>Expression was not found.</source>
       <translation>Ausdruck nicht gefunden.</translation>
     </message>
@@ -71907,46 +72015,46 @@
       <translation>Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2063" />
-      <location filename="../QScintilla/Shell.py" line="1845" />
+      <location filename="../QScintilla/Shell.py" line="2059" />
+      <location filename="../QScintilla/Shell.py" line="1841" />
       <location filename="../QScintilla/Shell.py" line="408" />
       <source>Project</source>
       <translation>Projekt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="810" />
+      <location filename="../QScintilla/Shell.py" line="806" />
       <source>Select History</source>
       <translation>Eintrag auswählen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="811" />
+      <location filename="../QScintilla/Shell.py" line="807" />
       <source>Select the history entry to execute (most recent shown last).</source>
       <translation>Wähle den auszuführenden Eintrag aus (aktuellster ist zuletzt dargestellt).</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="876" />
+      <location filename="../QScintilla/Shell.py" line="872" />
       <source>Passive Debug Mode</source>
       <translation>Passiver Debugmodus</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="877" />
+      <location filename="../QScintilla/Shell.py" line="873" />
       <source>
 Not connected</source>
       <translation>
 nicht verbunden</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="880" />
+      <location filename="../QScintilla/Shell.py" line="876" />
       <source>No.</source>
       <translation>Nr.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="882" />
+      <location filename="../QScintilla/Shell.py" line="878" />
       <source>{0} on {1}</source>
       <translation>{0} auf {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="929" />
+      <location filename="../QScintilla/Shell.py" line="925" />
       <source>Exception "{0}"
 {1}
 File: {2}, Line: {3}
@@ -71957,7 +72065,7 @@
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="938" />
+      <location filename="../QScintilla/Shell.py" line="934" />
       <source>Exception "{0}"
 {1}
 </source>
@@ -71966,43 +72074,43 @@
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="958" />
+      <location filename="../QScintilla/Shell.py" line="954" />
       <source>Unspecified syntax error.
 </source>
       <translation>Unspezifischer Syntaxfehler.
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="961" />
+      <location filename="../QScintilla/Shell.py" line="957" />
       <source>Syntax error "{1}" in file {0} at line {2}, character {3}.
 </source>
       <translation>Syntaxfehler "{1}" in Datei {0}, Zeile {2}, Zeichen {3}.
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="985" />
+      <location filename="../QScintilla/Shell.py" line="981" />
       <source>Signal "{0}" generated in file {1} at line {2}.
 Function: {3}({4})</source>
       <translation>Signal "{0}" in der Datei {1} in Zeile {2} erzeugt.
 Funktion: {3}({4})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1067" />
+      <location filename="../QScintilla/Shell.py" line="1063" />
       <source>StdOut: {0}</source>
       <translation>StdOut: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1075" />
+      <location filename="../QScintilla/Shell.py" line="1071" />
       <source>StdErr: {0}</source>
       <translation>StdErr: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1101" />
+      <location filename="../QScintilla/Shell.py" line="1097" />
       <source>&lt;{0}&gt; {1}</source>
       <translation>&lt;{0}&gt; {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1888" />
+      <location filename="../QScintilla/Shell.py" line="1884" />
       <source>Available Virtual Environments:
 {0}
 </source>
@@ -72011,42 +72119,42 @@
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1931" />
-      <location filename="../QScintilla/Shell.py" line="1895" />
+      <location filename="../QScintilla/Shell.py" line="1927" />
+      <location filename="../QScintilla/Shell.py" line="1891" />
       <source>Current Virtual Environment: '{0}'
 </source>
       <translation>Aktuelle virtuelle Umgebung: '{0}'
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2203" />
+      <location filename="../QScintilla/Shell.py" line="2199" />
       <source>Drop Error</source>
       <translation>Drop Fehler</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2204" />
+      <location filename="../QScintilla/Shell.py" line="2200" />
       <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="2446" />
-      <location filename="../QScintilla/Shell.py" line="2431" />
-      <location filename="../QScintilla/Shell.py" line="2412" />
+      <location filename="../QScintilla/Shell.py" line="2442" />
+      <location filename="../QScintilla/Shell.py" line="2427" />
+      <location filename="../QScintilla/Shell.py" line="2408" />
       <source>Save Shell Contents</source>
       <translation>Shellinhalt speichern</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2414" />
+      <location filename="../QScintilla/Shell.py" line="2410" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation>Textdateien (*.txt);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2432" />
+      <location filename="../QScintilla/Shell.py" line="2428" />
       <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="2447" />
+      <location filename="../QScintilla/Shell.py" line="2443" />
       <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>
@@ -72292,335 +72400,335 @@
   <context>
     <name>ShellWindow</name>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1275" />
-      <location filename="../QScintilla/ShellWindow.py" line="54" />
+      <location filename="../QScintilla/ShellWindow.py" line="1279" />
+      <location filename="../QScintilla/ShellWindow.py" line="62" />
       <source>eric Shell</source>
       <translation>eric Shell</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="220" />
-      <source>Quit</source>
-      <translation>Beenden</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="222" />
-      <source>&amp;Quit</source>
-      <translation>B&amp;eenden</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="223" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Q</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="228" />
-      <source>Quit the Shell</source>
-      <translation>Beenden der Shell</translation>
+      <source>Quit</source>
+      <translation>Beenden</translation>
     </message>
     <message>
       <location filename="../QScintilla/ShellWindow.py" line="230" />
+      <source>&amp;Quit</source>
+      <translation>B&amp;eenden</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="231" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="236" />
+      <source>Quit the Shell</source>
+      <translation>Beenden der Shell</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="238" />
       <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Beenden der Shell&lt;/b&gt;&lt;p&gt;Dies schließt das Shell Fenster.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="237" />
+      <location filename="../QScintilla/ShellWindow.py" line="245" />
       <source>New Window</source>
       <translation>Neues Fenster</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="239" />
+      <location filename="../QScintilla/ShellWindow.py" line="247" />
       <source>New &amp;Window</source>
       <translation>Neues &amp;Fenster</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="240" />
+      <location filename="../QScintilla/ShellWindow.py" line="248" />
       <source>Ctrl+Shift+N</source>
       <comment>File|New Window</comment>
       <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="245" />
+      <location filename="../QScintilla/ShellWindow.py" line="253" />
       <source>Open a new Shell window</source>
       <translation>Öffne ein neues Shell Fenster</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="247" />
+      <location filename="../QScintilla/ShellWindow.py" line="255" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Neues Fenster&lt;/b&gt;&lt;p&gt;Dies öffnet eine neue Instanz des Shell Fensters.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="258" />
-      <location filename="../QScintilla/ShellWindow.py" line="256" />
-      <source>Restart</source>
-      <translation>Neu starten</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="264" />
-      <source>Restart the shell</source>
-      <translation>Shell neu starten</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="266" />
+      <location filename="../QScintilla/ShellWindow.py" line="264" />
+      <source>Restart</source>
+      <translation>Neu starten</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="272" />
+      <source>Restart the shell</source>
+      <translation>Shell neu starten</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="274" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Neu starten&lt;/b&gt;&lt;p&gt;Dies startet die Shell für die aktuell ausgewählte Umgebung neu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="278" />
-      <location filename="../QScintilla/ShellWindow.py" line="276" />
+      <location filename="../QScintilla/ShellWindow.py" line="286" />
+      <location filename="../QScintilla/ShellWindow.py" line="284" />
       <source>Restart and Clear</source>
       <translation>Neu starten und löschen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="285" />
+      <location filename="../QScintilla/ShellWindow.py" line="293" />
       <source>Clear the window and restart the shell</source>
       <translation>Löscht das Fenster und startet die Shell neu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="288" />
+      <location filename="../QScintilla/ShellWindow.py" line="296" />
       <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Neu starten und löschen&lt;/b&gt;&lt;p&gt;Löscht das Shell Fenster und startet die Shell für die aktuell ausgewählte Umgebung neu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="298" />
+      <location filename="../QScintilla/ShellWindow.py" line="306" />
       <source>Save Contents</source>
       <translation>Inhalt speichern</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="300" />
+      <location filename="../QScintilla/ShellWindow.py" line="308" />
       <source>Save Contents...</source>
       <translation>Inhalt speichern...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="309" />
+      <location filename="../QScintilla/ShellWindow.py" line="317" />
       <source>Save the current contents of the shell to a file</source>
       <translation>Speichert den aktuellen Inhalt der Shell in eine Datei</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="312" />
+      <location filename="../QScintilla/ShellWindow.py" line="320" />
       <source>&lt;b&gt;Save Contents&lt;/b&gt;&lt;p&gt;Save the current contents of the shell to a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Inhalt speichern&lt;/b&gt;&lt;p&gt;Speichert den aktuellen Inhalt der Shell in eine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="345" />
+      <location filename="../QScintilla/ShellWindow.py" line="353" />
       <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ausschneiden&lt;/b&gt;&lt;p&gt;Schneidet den ausgewählten Text aus und legt ihn in die Zwischenablage.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="367" />
+      <location filename="../QScintilla/ShellWindow.py" line="375" />
       <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Kopieren&lt;/b&gt;&lt;p&gt;Kopiert den ausgewählten Text in die Zwischenablage.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="389" />
+      <location filename="../QScintilla/ShellWindow.py" line="397" />
       <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Einfügen&lt;/b&gt;&lt;p&gt;Fügt den Text der Zwischenablage ein.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="411" />
+      <location filename="../QScintilla/ShellWindow.py" line="419" />
       <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Alles Löschen&lt;/b&gt;&lt;p&gt;Dies löscht den gesamten Text.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="709" />
-      <location filename="../QScintilla/ShellWindow.py" line="708" />
+      <location filename="../QScintilla/ShellWindow.py" line="713" />
+      <location filename="../QScintilla/ShellWindow.py" line="712" />
       <source>Move forward one history entry</source>
       <translation>Einen Chronikeintrag vorwärts</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="721" />
-      <location filename="../QScintilla/ShellWindow.py" line="720" />
+      <location filename="../QScintilla/ShellWindow.py" line="725" />
+      <location filename="../QScintilla/ShellWindow.py" line="724" />
       <source>Move back one history entry</source>
       <translation>Einen Chronikeintrag zurück</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1115" />
+      <location filename="../QScintilla/ShellWindow.py" line="1119" />
       <source>Show History</source>
       <translation>Chronik anzeigen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1117" />
+      <location filename="../QScintilla/ShellWindow.py" line="1121" />
       <source>&amp;Show History...</source>
       <translation>Chronik &amp;anzeigen...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1123" />
-      <source>Show the shell history in a dialog</source>
-      <translation>Zeigt die Shell Chronik in einem Dialog an</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1127" />
+      <source>Show the shell history in a dialog</source>
+      <translation>Zeigt die Shell Chronik in einem Dialog an</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1131" />
       <source>Clear History</source>
       <translation>Chronik löschen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1129" />
+      <location filename="../QScintilla/ShellWindow.py" line="1133" />
       <source>&amp;Clear History...</source>
       <translation>Chronik &amp;löschen...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1135" />
-      <source>Clear the shell history</source>
-      <translation>Löscht die Shell Chronik</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1139" />
+      <source>Clear the shell history</source>
+      <translation>Löscht die Shell Chronik</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1143" />
       <source>Select History Entry</source>
       <translation>Chronikeintrag auswählen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1140" />
+      <location filename="../QScintilla/ShellWindow.py" line="1144" />
       <source>Select History &amp;Entry</source>
       <translation>Chronik&amp;eintrag auswählen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1147" />
+      <location filename="../QScintilla/ShellWindow.py" line="1151" />
       <source>Select an entry of the shell history</source>
       <translation>Wählt einen Eintrag in der Shell Chronik aus</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
+      <location filename="../QScintilla/ShellWindow.py" line="1160" />
       <source>About</source>
       <translation>Über</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
-      <source>&amp;About</source>
-      <translation>Ü&amp;ber</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1158" />
-      <source>Display information about this software</source>
-      <translation>Zeigt Informationen zu diesem Programm an</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1160" />
+      <source>&amp;About</source>
+      <translation>Ü&amp;ber</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1162" />
+      <source>Display information about this software</source>
+      <translation>Zeigt Informationen zu diesem Programm an</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1164" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Über&lt;/b&gt;&lt;p&gt;Zeigt einige Informationen über dieses Programm an.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About Qt</source>
       <translation>Über Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About &amp;Qt</source>
       <translation>Über &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1172" />
+      <location filename="../QScintilla/ShellWindow.py" line="1176" />
       <source>Display information about the Qt toolkit</source>
       <translation>Zeige Informationen über das Qt-Toolkit an</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1175" />
+      <location filename="../QScintilla/ShellWindow.py" line="1179" />
       <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Über Qt&lt;/b&gt;&lt;p&gt;Zeige Informationen über das Qt-Toolkit an.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1184" />
+      <location filename="../QScintilla/ShellWindow.py" line="1188" />
       <source>What's This?</source>
       <translation>Was ist das?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1186" />
+      <location filename="../QScintilla/ShellWindow.py" line="1190" />
       <source>&amp;What's This?</source>
       <translation>&amp;Was ist das?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1187" />
+      <location filename="../QScintilla/ShellWindow.py" line="1191" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1192" />
+      <location filename="../QScintilla/ShellWindow.py" line="1196" />
       <source>Context sensitive help</source>
       <translation>Kontextsensitive Hilfe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1194" />
+      <location filename="../QScintilla/ShellWindow.py" line="1198" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zeige kontextsensitive Hilfe an&lt;b&gt;&lt;/p&gt;Im „Was ist das?“-Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten HMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1273" />
+      <location filename="../QScintilla/ShellWindow.py" line="1277" />
       <source>eric Shell [{0}]</source>
       <translation>eric Shell [{0}]</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="1346" />
       <source>About eric Shell Window</source>
       <translation>Über das eric Shell Fenster</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1343" />
+      <location filename="../QScintilla/ShellWindow.py" line="1347" />
       <source>The eric Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
       <translation>Die eric Shell ist ein unabhängiges Shell Fenster. Es verwendet das gleiche Debugger Backend wie die vollständige IDE, wird aber unabhängig ausgeführt.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1370" />
+      <location filename="../QScintilla/ShellWindow.py" line="1374" />
       <source>&amp;File</source>
       <translation>&amp;Datei</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1381" />
+      <location filename="../QScintilla/ShellWindow.py" line="1385" />
       <source>&amp;Edit</source>
       <translation>&amp;Bearbeiten</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1392" />
+      <location filename="../QScintilla/ShellWindow.py" line="1396" />
       <source>&amp;View</source>
       <translation>&amp;Ansicht</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1399" />
+      <location filename="../QScintilla/ShellWindow.py" line="1403" />
       <source>Histor&amp;y</source>
       <translation>&amp;Chronik</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1406" />
+      <location filename="../QScintilla/ShellWindow.py" line="1410" />
       <source>&amp;Start</source>
       <translation>&amp;Starten</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1412" />
+      <location filename="../QScintilla/ShellWindow.py" line="1416" />
       <source>&amp;Help</source>
       <translation>&amp;Hilfe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1445" />
+      <location filename="../QScintilla/ShellWindow.py" line="1449" />
       <source>File</source>
       <translation>Datei</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1455" />
+      <location filename="../QScintilla/ShellWindow.py" line="1459" />
       <source>Edit</source>
       <translation>Bearbeiten</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1461" />
+      <location filename="../QScintilla/ShellWindow.py" line="1465" />
       <source>Find</source>
       <translation>Suchen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1466" />
+      <location filename="../QScintilla/ShellWindow.py" line="1470" />
       <source>View</source>
       <translation>Anzeigen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1472" />
+      <location filename="../QScintilla/ShellWindow.py" line="1476" />
       <source>History</source>
       <translation>Chronik</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1477" />
+      <location filename="../QScintilla/ShellWindow.py" line="1481" />
       <source>Help</source>
       <translation>Hilfe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1499" />
+      <location filename="../QScintilla/ShellWindow.py" line="1503" />
       <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dieser Teil der Statusleiste ermöglicht das Zoomen der Shell.&lt;/p&gt;</translation>
     </message>
@@ -72978,24 +73086,24 @@
       <translation>eric Web Browser</translation>
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="363" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="345" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="324" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
       <source>Edit shortcuts</source>
       <translation>Kurzbefehle bearbeiten</translation>
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="326" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; wurde bereits der Aktion &lt;b&gt;{1}&lt;/b&gt; zugewiesen. Diese Bindung löschen?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="347" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; verdeckt die Aktion &lt;b&gt;{1}&lt;/b&gt;. Diese Bindung löschen?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="365" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; wird durch die Aktion &lt;b&gt;{1}&lt;/b&gt; verdeckt. Diese Bindung löschen?&lt;/p&gt;</translation>
     </message>
@@ -76182,330 +76290,330 @@
       <translation>Das Projekt konnte nicht aus dem Repository geladen werden.&lt;br /&gt;Stelle das Original wieder her.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="310" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="327" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="312" />
       <source>Importing project into Subversion repository</source>
       <translation>Lade das Projekt in das Subversion-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="328" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="330" />
       <source>Imported revision {0}.
 </source>
       <translation>Revision {0} importiert.
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="362" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="364" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="367" />
       <source>Subversion Checkout</source>
       <translation>Subversion-Checkout</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="420" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="433" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="422" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="368" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation>Das Tag muss ein normales Tag (tags) oder ein Zweigtag (branches) sein. Bitte aus der Liste auswählen.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="389" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="388" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="391" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="390" />
       <source>Checking project out of Subversion repository</source>
       <translation>Lade das Projekt aus dem Subversion-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="419" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="432" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="421" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="434" />
       <source>Subversion Export</source>
       <translation>Subversion-Export</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="443" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="445" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="456" />
       <source>Exporting project from Subversion repository</source>
       <translation>Expotiere das Projekt aus dem Subversion-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="514" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="535" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="516" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="537" />
       <source>Commit Changes</source>
       <translation>Änderungen einpflegen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="515" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="517" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="538" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation>Das Einpflegen von Änderungen betrifft Dateien mit ungesicherten Änderungen. Soll die Aktion fortgesetzt werden?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="578" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="580" />
       <source>Commiting changes to Subversion repository</source>
       <translation>Pflege Änderungen in das Subversion-Repository ein</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="614" />
       <source>Committed revision {0}.</source>
       <translation>Revision {0} eingepflegt.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="638" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="684" />
       <source>Synchronizing with the Subversion repository</source>
       <translation>Gleiche mit dem Subversion-Repository ab</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="735" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="793" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation>Füge Dateien/Verzeichnisse dem Subversion-Repository hinzu</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="898" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="900" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation>Füge Verzeichnisbäume dem Subversion-Repository hinzu</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="859" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="937" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="939" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation>Lösche Dateien/Verzeichnisse aus dem Subversion-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="918" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="920" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="998" />
       <source>Moving {0}</source>
       <translation>Verschiebe {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1177" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1148" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1027" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="998" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1292" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1124" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1094" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1179" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1029" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1294" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1265" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1126" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1096" />
       <source>Subversion Error</source>
       <translation>Subversion-Fehler</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1095" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1001" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1097" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation>Die URL des Projektrepositorys konnte nicht aus der Arbeitskopie ermittelt werden. Die Tag-Operation wird abgebrochen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1028" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1125" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1030" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1127" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation>Die URL des Projektrepositorys hat ein ungültiges Format. Die Tag-Operation wird abgebrochen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1062" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1161" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1147" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1149" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation>Markiere {0} im Subversion-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1324" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1172" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1326" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1174" />
       <source>Revision {0}.
 </source>
       <translation>Revision {0}.
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1106" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1095" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1197" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1108" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1097" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
       <source>Revert changes</source>
       <translation>Änderungen rückgängig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1096" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1198" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1200" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation>Wollen Sie wirklich alle Änderungen an den folgenden Dateien oder Verzeichnissen rückgängig machen?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1107" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1109" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1211" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation>Wollen Sie wirklich alle Änderungen des Projektes rückgängig machen?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1113" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1115" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1219" />
       <source>Reverting changes</source>
       <translation>Mache Änderungen rückgängig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1149" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1264" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1151" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1266" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation>Die URL des Projektrepositorys konnte nicht aus der Arbeitskopie ermittelt werden. Die Umschaltoperation wird abgebrochen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1178" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1293" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1180" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1295" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation>Die URL des Projektrepositorys hat ein ungültiges Format. Die Umschaltoperation wird abgebrochen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1207" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1318" />
       <source>Switching to {0}</source>
       <translation>Schalte {0} um</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1416" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1275" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1418" />
       <source>Merging {0}</source>
       <translation>Arbeite Änderungen in {0} ein</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1543" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1723" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1544" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1725" />
       <source>Cleaning up {0}</source>
       <translation>Räume {0} auf</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1573" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1763" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1765" />
       <source>Subversion command</source>
       <translation>Subversion-Befehl</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1744" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1883" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1747" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1887" />
       <source>Resolving conficts</source>
       <translation>Löse Konflikte</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1924" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1928" />
       <source>Copying {0}</source>
       <translation>Kopiere {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1844" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1823" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2000" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1847" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1987" />
       <source>Subversion Set Property</source>
       <translation>Subversion-Eigenschaft definieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1870" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2045" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1988" />
       <source>You have to supply a property name. Aborting.</source>
       <translation>Sie müssen einen Namen für die Eigenschaft angeben. Abbruch.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2023" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2027" />
       <source>Property set.</source>
       <translation>Eigenschaft definiert.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1887" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1858" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2061" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2044" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1890" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1872" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2048" />
       <source>Subversion Delete Property</source>
       <translation>Subversion-Eigenschaft löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2079" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2083" />
       <source>Property deleted.</source>
       <translation>Eigenschaft gelöscht.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2114" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2102" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2093" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2294" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2105" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2096" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2310" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2298" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2289" />
       <source>Subversion Side-by-Side Difference</source>
       <translation>Subversion Unterschiede nebeneinander anzeigen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2115" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2307" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2118" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2311" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2348" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2352" />
       <source>Subversion Lock</source>
       <translation>Subversion-Sperre</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2349" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2353" />
       <source>Enter lock comment</source>
       <translation>Gib eine Kommentar für die Sperre ein</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2165" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2370" />
       <source>Locking in the Subversion repository</source>
       <translation>Sperren im Subversion-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2192" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2195" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2411" />
       <source>Unlocking in the Subversion repository</source>
       <translation>Entsperren im Subversion-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2217" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2458" />
       <source>Relocating</source>
       <translation>Relozierung</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2235" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2479" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2238" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2483" />
       <source>Repository Browser</source>
       <translation>Repositorybrowser</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2236" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2480" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2239" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2484" />
       <source>Enter the repository URL.</source>
       <translation>Gib die URL des Repository ein.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2269" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2505" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2309" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2272" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2509" />
       <source>Remove from changelist</source>
       <translation>Von Änderungsliste entfernen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2285" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2544" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2533" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2548" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2537" />
       <source>Add to changelist</source>
       <translation>Zu Änderungsliste hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2534" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2289" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2538" />
       <source>Enter name of the changelist:</source>
       <translation>Gib den Namen der Änderungsliste ein:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2373" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2598" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2602" />
       <source>Upgrade</source>
       <translation>Modernisieren</translation>
     </message>
@@ -76686,7 +76794,7 @@
       <translation>Der svn-Prozess endete mit dem Code {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2052" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="181" />
       <source>The svn process did not finish within 30s.</source>
       <translation>Der svn-Prozess endete nicht innerhalb von 30s.</translation>
@@ -76697,12 +76805,12 @@
       <translation>Das svn-Programm konnte nicht gestartet werden.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1862" />
       <source>Enter property name</source>
       <translation>Gib den Namen der Eigenschaft ein</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2051" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2054" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
@@ -77337,27 +77445,27 @@
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="208" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="284" />
       <source>There is no difference.</source>
       <translation>Es gibt keinen Unterschied.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="223" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="342" />
       <source>&lt;Start&gt;</source>
       <translation>&lt;Anfang&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="225" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="343" />
       <source>&lt;End&gt;</source>
       <translation>&lt;Ende&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="410" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="444" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="426" />
@@ -77365,19 +77473,19 @@
       <translation>Diff speichern</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="378" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="428" />
       <source>Patch Files (*.diff)</source>
       <translation>Patchdateien (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="396" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="445" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Patchdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="412" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="461" />
       <source>&lt;p&gt;The patch 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 Patchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;br&gt;Grund: {1}&lt;/p&gt;</translation>
@@ -77633,7 +77741,7 @@
       <translation>Wähle das als Filter zu verwendende Feld</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="566" />
@@ -77643,7 +77751,7 @@
       <translation>Revision</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="674" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="563" />
@@ -79659,7 +79767,7 @@
       <translation>Wähle den Status anzuzeigender Einträge</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="654" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.ui" line="0" />
@@ -79883,8 +79991,8 @@
       <translation>Zu Änderungsliste hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1057" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="129" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="915" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="894" />
@@ -79893,7 +80001,7 @@
       <translation>Von Änderungsliste entfernen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="134" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="818" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="134" />
@@ -79901,7 +80009,7 @@
       <translation>Sperren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="136" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="837" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="136" />
@@ -79985,7 +80093,7 @@
       <translation>ja</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="491" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="562" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="491" />
@@ -79993,34 +80101,34 @@
       <translation>alle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="798" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="655" />
       <source>There are no entries selected to be committed.</source>
       <translation>Es sind keine Einträge zum Einpflegen ausgewählt.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
-      <source>Add</source>
-      <translation>Hinzufügen</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
+      <source>Add</source>
+      <translation>Hinzufügen</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="840" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="697" />
       <source>There are no unversioned entries available/selected.</source>
       <translation>Es sind keine unversionierten Einträge vorhanden/ausgewählt.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="888" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="862" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="720" />
       <source>Revert</source>
       <translation>Rückgängig machen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="934" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="912" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="864" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="791" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="769" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="721" />
@@ -80028,41 +80136,41 @@
       <translation>Es sind keine nicht eingepflegten Änderungen vorhanden/ausgewählt.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="747" />
       <source>There are no missing entries available/selected.</source>
       <translation>Es sind keine fehlenden Einträge vorhanden/ausgewählt.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="768" />
       <source>Differences</source>
       <translation>Unterschiede</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="939" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="797" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="790" />
       <source>Side-by-Side Diff</source>
       <translation>Unterschiede nebeneinander</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="941" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="798" />
       <source>Only one file with uncommitted changes must be selected.</source>
       <translation>Es darf nur eine Datei ausgewählt werden.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="819" />
       <source>There are no unlocked files available/selected.</source>
       <translation>Es sind keine ungesperrten Dateien vorhanden/ausgewählt.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="981" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="876" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="857" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="838" />
@@ -80070,25 +80178,25 @@
       <translation>Es sind keine gesperrten Dateien vorhanden/ausgewählt.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="998" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="856" />
       <source>Break Lock</source>
       <translation>Sperre brechen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1017" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="875" />
       <source>Steal Lock</source>
       <translation>Sperre stehlen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1038" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="895" />
       <source>There are no files available/selected not belonging to a changelist.</source>
       <translation>Es sind keine Dateien vorhanden/ausgewählt, die nicht zu einer Änderungsliste gehören.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1059" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="916" />
       <source>There are no files available/selected belonging to a changelist.</source>
       <translation>Es sind keine Dateien vorhanden/ausgewählt, die zu einer Änderungsliste gehören.</translation>
@@ -80216,7 +80324,7 @@
   <context>
     <name>SvnStatusMonitorThread</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="141" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="143" />
       <source>Subversion status checked successfully (using pysvn)</source>
       <translation>Subversion-Status erfolgreich überprüft (mit pysvn)</translation>
     </message>
@@ -81822,7 +81930,7 @@
       <translation>keine Synchronisation</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="187" />
+      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="188" />
       <source>&lt;font color="#FF0000"&gt;&lt;b&gt;Error:&lt;/b&gt; {0}&lt;/font&gt;</source>
       <translation>&lt;font color="#FF0000"&gt;&lt;b&gt;Fehler:&lt;/b&gt; {0}&lt;/font&gt;</translation>
     </message>
@@ -82852,7 +82960,7 @@
       <translation>Ausgewählte Register &amp;schließen</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="565" />
+      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="563" />
       <source>Show Tab Manager</source>
       <translation>Zeige Registerverwaltung</translation>
     </message>
@@ -83418,47 +83526,47 @@
       <translation>Manuelle Aufgaben</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="743" />
+      <location filename="../Tasks/TaskViewer.py" line="744" />
       <source>Activate task filter</source>
       <translation>Aufgabenfilter aktivieren</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="744" />
+      <location filename="../Tasks/TaskViewer.py" line="745" />
       <source>The task filter doesn't have any active filters. Do you want to configure the filter settings?</source>
       <translation>Der Aufgabenfilter hat keinen aktiven Filter. Soll die Filterkonfiguration erstellt werden?</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="778" />
-      <source>Scan Filter Patterns</source>
-      <translation>Scanfiltermuster</translation>
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="779" />
+      <source>Scan Filter Patterns</source>
+      <translation>Scanfiltermuster</translation>
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="780" />
       <source>Enter filename patterns of files to be excluded separated by a comma:</source>
       <translation>Gib Dateimuster getrennt durch Komma von Dateien ein, die ignoriert werden sollen:</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="821" />
-      <source>Extracting project tasks...</source>
-      <translation>Extrahiere Projektaufgaben...</translation>
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="822" />
+      <source>Extracting project tasks...</source>
+      <translation>Extrahiere Projektaufgaben...</translation>
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="823" />
       <source>Abort</source>
       <translation>Abbrechen</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="825" />
+      <location filename="../Tasks/TaskViewer.py" line="826" />
       <source>%v/%m Files</source>
       <translation>%v/%m Dateien</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="829" />
+      <location filename="../Tasks/TaskViewer.py" line="830" />
       <source>Tasks</source>
       <translation>Aufgaben</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="836" />
+      <location filename="../Tasks/TaskViewer.py" line="837" />
       <source>Extracting project tasks...
 {0}</source>
       <translation>Extrahiere Projektaufgaben...
@@ -83601,7 +83709,7 @@
       <translation>MicroPython Flashanweisungen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="316" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="318" />
       <location filename="../MicroPython/Devices/TeensyDevices.py" line="154" />
       <source>Flash MicroPython Firmware</source>
       <translation>MicroPython Firmware flashen</translation>
@@ -83642,17 +83750,17 @@
       <translation>MicroPython Version</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="317" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="319" />
       <source>&lt;p&gt;Teensy 4.0 and Teensy 4.1 are flashed using the 'Teensy Loader' application. Make sure you downloaded the MicroPython or CircuitPython .hex file.&lt;/p&gt;&lt;p&gt;See &lt;a href="{0}"&gt;the PJRC Teensy web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Teensy 4.0 und Teensy 4.1 werden mit der 'Teensy Loader' Anwendung geflasht. Stelle sicher, dass die MicroPython .hex Datei geladen ist.&lt;/p&gt;&lt;p&gt;Siehe &lt;a href="{0}"&gt;die PJRC Teensy Webseite&lt;/a&gt; für Details.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="339" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="341" />
       <source>Start 'Teensy Loader'</source>
       <translation>'Teensy Loader' starten</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="340" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="342" />
       <source>&lt;p&gt;The 'Teensy Loader' application &lt;b&gt;teensy&lt;/b&gt; could not be started. Ensure it is in the application search path or start it manually.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die 'Teensy Loader' Anwendung &lt;b&gt;teensy&lt;/b&gt; konnte nicht gestartet werden. Stelle sicher, dass sie sich im Suchpfad befindet oder starte sie manuell.&lt;/p&gt;</translation>
     </message>
@@ -83880,78 +83988,78 @@
       <translation>Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="531" />
+      <location filename="../Templates/TemplateViewer.py" line="533" />
       <source>Remove Template</source>
       <translation>Vorlage löschen</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="532" />
+      <location filename="../Templates/TemplateViewer.py" line="534" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soll &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="560" />
-      <source>Import Templates</source>
-      <translation>Vorlagen importieren</translation>
-    </message>
-    <message>
       <location filename="../Templates/TemplateViewer.py" line="562" />
+      <source>Import Templates</source>
+      <translation>Vorlagen importieren</translation>
+    </message>
+    <message>
+      <location filename="../Templates/TemplateViewer.py" line="564" />
       <source>Templates Files (*.ecj);;XML Templates Files (*.e4c);;All Files (*)</source>
       <translation>Vorlagendateien (*.ecj);;XML Vorlagendateien (*.e4c);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="595" />
-      <location filename="../Templates/TemplateViewer.py" line="579" />
+      <location filename="../Templates/TemplateViewer.py" line="597" />
+      <location filename="../Templates/TemplateViewer.py" line="581" />
       <source>Export Templates</source>
       <translation>Vorlagen exportieren</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="581" />
+      <location filename="../Templates/TemplateViewer.py" line="583" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation>Vorlagendateien (*.ecj);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="596" />
+      <location filename="../Templates/TemplateViewer.py" line="598" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Vorlagendatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="614" />
+      <location filename="../Templates/TemplateViewer.py" line="616" />
       <source>Reload Templates</source>
       <translation>Vorlagen neu laden</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="615" />
+      <location filename="../Templates/TemplateViewer.py" line="617" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation>Die Vorlagen enthalten ungesicherte Änderungen. Sollen diese verworfen werden?</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
       <source>Template Help</source>
       <translation>Hilfe zu Vorlagen</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;Vorlagengruppen&lt;/b&gt; sind ein Mittel, um einzelne Vorlagen zusammenzufassen. Gruppen haben ein Attribut, das angibt, für welche Programmiersprache sie gültig sind. Um Vorlagen hinzuzufügen, muss mindestens eine Vorlagengruppe angelegt werden.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Vorlageneinträge&lt;/b&gt; sind die eigentlichen Vorlagen. Sie werden durch Vorlagengruppen zusammengefaßt. Zusätzliche Hilfe zu Vorlagen sind im Editierdialog verfügbar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="883" />
+      <location filename="../Templates/TemplateViewer.py" line="885" />
       <source>Edit Template Group</source>
       <translation>Vorlagengruppe editieren</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="884" />
+      <location filename="../Templates/TemplateViewer.py" line="886" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Eine Vorlagengruppe mit dem Namen &lt;b&gt;{0}&lt;/b&gt; existiert bereits.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1005" />
+      <location filename="../Templates/TemplateViewer.py" line="1007" />
       <source>Read Templates</source>
       <translation>Vorlagen lesen</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1006" />
+      <location filename="../Templates/TemplateViewer.py" line="1008" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Vorlagendatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
@@ -86819,99 +86927,99 @@
   <context>
     <name>UMLGraphicsView</name>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="90" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="94" />
       <source>Delete shapes</source>
       <translation>Objekte löschen</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="96" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="100" />
       <source>Increase width by {0} points</source>
       <translation>Breite um {0} Punkte vergrößern</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="103" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="107" />
       <source>Increase height by {0} points</source>
       <translation>Höhe um {0} Punkte vergrößern</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="110" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="114" />
       <source>Decrease width by {0} points</source>
       <translation>Breite um {0} Punkte verkleinern</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="117" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="121" />
       <source>Decrease height by {0} points</source>
       <translation>Höhe um {0} Punkte verkleinern</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="123" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="127" />
       <source>Set size</source>
       <translation>Größe setzen</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="128" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="132" />
       <source>Re-Scan</source>
       <translation>Neu einlesen</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="133" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="137" />
       <source>Re-Layout</source>
       <translation>Neuberechung</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="138" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="142" />
       <source>Align Left</source>
       <translation>Links ausrichten</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="145" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="149" />
       <source>Align Center Horizontal</source>
       <translation>Mitte horizontal ausrichten</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="152" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="156" />
       <source>Align Right</source>
       <translation>Rechts ausrichten</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="158" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="162" />
       <source>Align Top</source>
       <translation>Oben ausrichten</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="165" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="169" />
       <source>Align Center Vertical</source>
       <translation>Mitte vertikal ausrichten</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="172" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="176" />
       <source>Align Bottom</source>
       <translation>Unten ausrichten</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="235" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="240" />
       <source>Graphics</source>
       <translation>Grafiken</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="395" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="382" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="365" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="400" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="387" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="370" />
       <source>Save Diagram</source>
       <translation>Diagramm speichern</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="367" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="372" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="383" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="388" />
       <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="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="401" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;/p&gt;</translation>
     </message>
@@ -87638,7 +87746,7 @@
       <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="7688" />
+      <location filename="../UI/UserInterface.py" line="7687" />
       <location filename="../UI/UserInterface.py" line="1934" />
       <location filename="../UI/UserInterface.py" line="1927" />
       <source>Load session</source>
@@ -88925,8 +89033,8 @@
       <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="7373" />
-      <location filename="../UI/UserInterface.py" line="7354" />
+      <location filename="../UI/UserInterface.py" line="7372" />
+      <location filename="../UI/UserInterface.py" line="7353" />
       <location filename="../UI/UserInterface.py" line="3358" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Tastaturkurzbefehle exportieren</translation>
@@ -88947,7 +89055,7 @@
       <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="7392" />
+      <location filename="../UI/UserInterface.py" line="7391" />
       <location filename="../UI/UserInterface.py" line="3377" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Tastaturkurzbefehle importieren</translation>
@@ -89669,186 +89777,186 @@
       <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="6609" />
+      <location filename="../UI/UserInterface.py" line="6610" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Prozess „{0}“ ist beendet.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6896" />
-      <location filename="../UI/UserInterface.py" line="6834" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6716" />
-      <location filename="../UI/UserInterface.py" line="6652" />
-      <source>Documentation Missing</source>
-      <translation>Dokumentation fehlt</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6897" />
       <location filename="../UI/UserInterface.py" line="6835" />
       <location filename="../UI/UserInterface.py" line="6791" />
       <location filename="../UI/UserInterface.py" line="6717" />
       <location filename="../UI/UserInterface.py" line="6653" />
+      <source>Documentation Missing</source>
+      <translation>Dokumentation fehlt</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6898" />
+      <location filename="../UI/UserInterface.py" line="6836" />
+      <location filename="../UI/UserInterface.py" line="6792" />
+      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6654" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der Dokumentationsstartpunkt „&lt;b&gt;{0}&lt;/b&gt;“ konnte nicht gefunden werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6878" />
-      <location filename="../UI/UserInterface.py" line="6760" />
-      <source>Documentation</source>
-      <translation>Dokumentation</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6761" />
-      <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="6879" />
+      <location filename="../UI/UserInterface.py" line="6761" />
+      <source>Documentation</source>
+      <translation>Dokumentation</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6762" />
+      <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="6880" />
       <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="7056" />
+      <location filename="../UI/UserInterface.py" line="6993" />
+      <source>Start Web Browser</source>
+      <translation>Web Browser starten</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6994" />
+      <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="7057" />
-      <location filename="../UI/UserInterface.py" line="6994" />
-      <source>Start Web Browser</source>
-      <translation>Web Browser starten</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6995" />
-      <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="7058" />
       <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="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Open Browser</source>
       <translation>Browser starten</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <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="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation>Tastaturkurzbefehlsdatei (*.ekj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7374" />
+      <location filename="../UI/UserInterface.py" line="7373" />
       <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="7394" />
+      <location filename="../UI/UserInterface.py" line="7393" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation>Tastaturkurzbefehlsdatei (*.ekj);;XML Tastaturkurzbefehlsdatei (*.e4k)</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7576" />
+      <source>Read Tasks</source>
+      <translation>Aufgaben lesen</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7577" />
-      <source>Read Tasks</source>
-      <translation>Aufgaben lesen</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7578" />
       <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Aufgabendatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
+      <location filename="../UI/UserInterface.py" line="7620" />
       <source>Read Session</source>
       <translation>Sitzung lesen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7649" />
-      <location filename="../UI/UserInterface.py" line="7622" />
-      <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="7648" />
+      <location filename="../UI/UserInterface.py" line="7621" />
+      <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="7647" />
       <source>Read session</source>
       <translation>Sitzung lesen</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7665" />
+      <location filename="../UI/UserInterface.py" line="7664" />
       <source>Save Session</source>
       <translation>Sitzung speichern</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7667" />
+      <location filename="../UI/UserInterface.py" line="7666" />
       <source>eric Session Files (*.esj)</source>
       <translation>eric Sitzungsdateien (*.esj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7690" />
+      <location filename="../UI/UserInterface.py" line="7689" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation>eric Sitzungsdateien (*.esj);;eric XML Sitzungsdateien (*.e5s)</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7735" />
+      <source>Crash Session found!</source>
+      <translation>Absturzsitzung gefunden!</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7736" />
-      <source>Crash Session found!</source>
-      <translation>Absturzsitzung gefunden!</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7737" />
       <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="8106" />
+      <source>Drop Error</source>
+      <translation>Drop-Fehler</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8107" />
-      <source>Drop Error</source>
-      <translation>Drop-Fehler</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8108" />
       <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="8288" />
+      <source>Upgrade available</source>
+      <translation>Aktualisierung verfügbar</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8289" />
-      <source>Upgrade available</source>
-      <translation>Aktualisierung verfügbar</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8290" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Eine neuere Version des &lt;b&gt;eric-ide&lt;/b&gt; Paketes ist auf &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt; verfügbar.&lt;/p&gt;&lt;p&gt;Installiert: {1}&lt;br/&gt;Verfügbar: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Soll &lt;b&gt;eric-ide&lt;/b&gt; aktualisiert werden?&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8346" />
+      <location filename="../UI/UserInterface.py" line="8333" />
+      <source>First time usage</source>
+      <translation>Erstmalige Nutzung</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8334" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation>eric7 wurde noch nicht konfiguriert, aber es wurde eine eric6 Konfiguration gefunden. Soll diese importiert werden?</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8347" />
-      <location filename="../UI/UserInterface.py" line="8334" />
-      <source>First time usage</source>
-      <translation>Erstmalige Nutzung</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8335" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation>eric7 wurde noch nicht konfiguriert, aber es wurde eine eric6 Konfiguration gefunden. Soll diese importiert werden?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8348" />
       <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="8371" />
+      <location filename="../UI/UserInterface.py" line="8370" />
       <source>Select Workspace Directory</source>
       <translation>Wähle Arbeitsverzeichnis</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8530" />
+      <source>Unsaved Data Detected</source>
+      <translation>Nicht gespeicherte Daten gefunden</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8531" />
-      <source>Unsaved Data Detected</source>
-      <translation>Nicht gespeicherte Daten gefunden</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8532" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation>Einige Editoren haben nicht gespeicherte Inhalte. Sollen diese gespeichert werden?</translation>
     </message>
@@ -89929,7 +90037,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="989" />
+      <location filename="../Utilities/__init__.py" line="991" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Sie können %-Codes als Platzhalter in der Eingabe verwenden. Unterstützte Codes sind:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;Spalte des Cursor des aktuellen Editors&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;Verzeichnis des aktuellen Editors&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;Dateiname des aktuellen Editors&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;Home-Verzeichnis des aktullen Nutzers&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;Zeile des Cursor des aktuellen Editors&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;Pfad des aktuellen Projektes&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selektierter Text des aktuellen Editors&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;Nutzername des aktuellen Nutzers&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;das Prozentzeichen&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -91041,663 +91149,663 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="681" />
-      <location filename="../QScintilla/ShellWindow.py" line="302" />
+      <location filename="../QScintilla/ShellWindow.py" line="310" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation>Ctrl+S</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1032" />
-      <location filename="../QScintilla/ShellWindow.py" line="329" />
+      <location filename="../QScintilla/ShellWindow.py" line="337" />
       <source>Cut</source>
       <translation>Ausschneiden</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1034" />
-      <location filename="../QScintilla/ShellWindow.py" line="331" />
+      <location filename="../QScintilla/ShellWindow.py" line="339" />
       <source>Cu&amp;t</source>
       <translation>&amp;Ausschneiden</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1036" />
-      <location filename="../QScintilla/ShellWindow.py" line="333" />
+      <location filename="../QScintilla/ShellWindow.py" line="341" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation>Ctrl+X</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1039" />
-      <location filename="../QScintilla/ShellWindow.py" line="336" />
+      <location filename="../QScintilla/ShellWindow.py" line="344" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation>Shift+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1045" />
-      <location filename="../QScintilla/ShellWindow.py" line="342" />
+      <location filename="../QScintilla/ShellWindow.py" line="350" />
       <source>Cut the selection</source>
       <translation>Schneidet die Auswahl aus</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1059" />
-      <location filename="../QScintilla/ShellWindow.py" line="351" />
+      <location filename="../QScintilla/ShellWindow.py" line="359" />
       <source>Copy</source>
       <translation>Kopieren</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1061" />
-      <location filename="../QScintilla/ShellWindow.py" line="353" />
+      <location filename="../QScintilla/ShellWindow.py" line="361" />
       <source>&amp;Copy</source>
       <translation>&amp;Kopieren</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1063" />
-      <location filename="../QScintilla/ShellWindow.py" line="355" />
+      <location filename="../QScintilla/ShellWindow.py" line="363" />
       <source>Ctrl+C</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+C</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1066" />
-      <location filename="../QScintilla/ShellWindow.py" line="358" />
+      <location filename="../QScintilla/ShellWindow.py" line="366" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+Einfg</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1072" />
-      <location filename="../QScintilla/ShellWindow.py" line="364" />
+      <location filename="../QScintilla/ShellWindow.py" line="372" />
       <source>Copy the selection</source>
       <translation>Kopiert die Auswahl</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1086" />
-      <location filename="../QScintilla/ShellWindow.py" line="373" />
+      <location filename="../QScintilla/ShellWindow.py" line="381" />
       <source>Paste</source>
       <translation>Einfügen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1088" />
-      <location filename="../QScintilla/ShellWindow.py" line="375" />
+      <location filename="../QScintilla/ShellWindow.py" line="383" />
       <source>&amp;Paste</source>
       <translation>Ein&amp;fügen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1090" />
-      <location filename="../QScintilla/ShellWindow.py" line="377" />
+      <location filename="../QScintilla/ShellWindow.py" line="385" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation>Ctrl+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1093" />
-      <location filename="../QScintilla/ShellWindow.py" line="380" />
+      <location filename="../QScintilla/ShellWindow.py" line="388" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation>Shift+Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1099" />
-      <location filename="../QScintilla/ShellWindow.py" line="386" />
+      <location filename="../QScintilla/ShellWindow.py" line="394" />
       <source>Paste the last cut/copied text</source>
       <translation>Fügt den Inhalt der Zwischenablage ein</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1115" />
       <location filename="../ViewManager/ViewManager.py" line="1113" />
-      <location filename="../QScintilla/ShellWindow.py" line="400" />
-      <location filename="../QScintilla/ShellWindow.py" line="398" />
+      <location filename="../QScintilla/ShellWindow.py" line="408" />
+      <location filename="../QScintilla/ShellWindow.py" line="406" />
       <source>Clear</source>
       <translation>Löschen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1117" />
-      <location filename="../QScintilla/ShellWindow.py" line="402" />
+      <location filename="../QScintilla/ShellWindow.py" line="410" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation>Alt+Shift+C</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1124" />
-      <location filename="../QScintilla/ShellWindow.py" line="409" />
+      <location filename="../QScintilla/ShellWindow.py" line="417" />
       <source>Clear all text</source>
       <translation>Löscht den gesamten Text</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
-      <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/ShellWindow.py" line="435" />
-      <location filename="../QScintilla/ShellWindow.py" line="434" />
+      <location filename="../QScintilla/MiniEditor.py" line="1681" />
+      <location filename="../QScintilla/MiniEditor.py" line="1680" />
+      <location filename="../QScintilla/ShellWindow.py" line="439" />
+      <location filename="../QScintilla/ShellWindow.py" line="438" />
       <source>Delete current line</source>
       <translation>Aktuelle Zeile löschen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1686" />
-      <location filename="../QScintilla/ShellWindow.py" line="436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1682" />
+      <location filename="../QScintilla/ShellWindow.py" line="440" />
       <source>Ctrl+Shift+L</source>
       <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
-      <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/ShellWindow.py" line="447" />
-      <location filename="../QScintilla/ShellWindow.py" line="446" />
+      <location filename="../QScintilla/MiniEditor.py" line="1203" />
+      <location filename="../QScintilla/MiniEditor.py" line="1202" />
+      <location filename="../QScintilla/ShellWindow.py" line="451" />
+      <location filename="../QScintilla/ShellWindow.py" line="450" />
       <source>Indent one level</source>
       <translation>Eine Ebene einrücken</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1208" />
-      <location filename="../QScintilla/ShellWindow.py" line="448" />
+      <location filename="../QScintilla/MiniEditor.py" line="1204" />
+      <location filename="../QScintilla/ShellWindow.py" line="452" />
       <source>Tab</source>
       <translation>Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
-      <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/ShellWindow.py" line="459" />
-      <location filename="../QScintilla/ShellWindow.py" line="458" />
+      <location filename="../QScintilla/MiniEditor.py" line="1669" />
+      <location filename="../QScintilla/MiniEditor.py" line="1668" />
+      <location filename="../QScintilla/ShellWindow.py" line="463" />
+      <location filename="../QScintilla/ShellWindow.py" line="462" />
       <source>Insert new line</source>
       <translation>Neue Zeile einfügen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
-      <location filename="../QScintilla/ShellWindow.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1670" />
+      <location filename="../QScintilla/ShellWindow.py" line="464" />
       <source>Return</source>
       <translation>Return</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1675" />
-      <location filename="../QScintilla/ShellWindow.py" line="461" />
+      <location filename="../QScintilla/MiniEditor.py" line="1671" />
+      <location filename="../QScintilla/ShellWindow.py" line="465" />
       <source>Enter</source>
       <translation>Enter</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
-      <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/ShellWindow.py" line="471" />
-      <location filename="../QScintilla/ShellWindow.py" line="470" />
+      <location filename="../QScintilla/MiniEditor.py" line="1555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1554" />
+      <location filename="../QScintilla/ShellWindow.py" line="475" />
+      <location filename="../QScintilla/ShellWindow.py" line="474" />
       <source>Delete previous character</source>
       <translation>Zeichen links löschen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1560" />
-      <location filename="../QScintilla/ShellWindow.py" line="472" />
+      <location filename="../QScintilla/MiniEditor.py" line="1556" />
+      <location filename="../QScintilla/ShellWindow.py" line="476" />
       <source>Backspace</source>
       <translation>Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1567" />
-      <location filename="../QScintilla/ShellWindow.py" line="479" />
+      <location filename="../QScintilla/MiniEditor.py" line="1563" />
+      <location filename="../QScintilla/ShellWindow.py" line="483" />
       <source>Meta+H</source>
       <translation>Meta+H</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1572" />
-      <location filename="../QScintilla/ShellWindow.py" line="484" />
+      <location filename="../QScintilla/MiniEditor.py" line="1568" />
+      <location filename="../QScintilla/ShellWindow.py" line="488" />
       <source>Shift+Backspace</source>
       <translation>Shift+Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
-      <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/ShellWindow.py" line="493" />
-      <location filename="../QScintilla/ShellWindow.py" line="492" />
+      <location filename="../QScintilla/MiniEditor.py" line="1593" />
+      <location filename="../QScintilla/MiniEditor.py" line="1592" />
+      <location filename="../QScintilla/ShellWindow.py" line="497" />
+      <location filename="../QScintilla/ShellWindow.py" line="496" />
       <source>Delete current character</source>
       <translation>Aktuelles Zeichen löschen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1598" />
-      <location filename="../QScintilla/ShellWindow.py" line="494" />
+      <location filename="../QScintilla/MiniEditor.py" line="1594" />
+      <location filename="../QScintilla/ShellWindow.py" line="498" />
       <source>Del</source>
       <translation>Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1605" />
-      <location filename="../QScintilla/ShellWindow.py" line="501" />
+      <location filename="../QScintilla/MiniEditor.py" line="1601" />
+      <location filename="../QScintilla/ShellWindow.py" line="505" />
       <source>Meta+D</source>
       <translation>Meta+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
-      <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/ShellWindow.py" line="509" />
-      <location filename="../QScintilla/ShellWindow.py" line="508" />
+      <location filename="../QScintilla/MiniEditor.py" line="1609" />
+      <location filename="../QScintilla/MiniEditor.py" line="1608" />
+      <location filename="../QScintilla/ShellWindow.py" line="513" />
+      <location filename="../QScintilla/ShellWindow.py" line="512" />
       <source>Delete word to left</source>
       <translation>Wort links löschen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1614" />
-      <location filename="../QScintilla/ShellWindow.py" line="510" />
+      <location filename="../QScintilla/MiniEditor.py" line="1610" />
+      <location filename="../QScintilla/ShellWindow.py" line="514" />
       <source>Ctrl+Backspace</source>
       <translation>Ctrl+Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
-      <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/ShellWindow.py" line="521" />
-      <location filename="../QScintilla/ShellWindow.py" line="520" />
+      <location filename="../QScintilla/MiniEditor.py" line="1621" />
+      <location filename="../QScintilla/MiniEditor.py" line="1620" />
+      <location filename="../QScintilla/ShellWindow.py" line="525" />
+      <location filename="../QScintilla/ShellWindow.py" line="524" />
       <source>Delete word to right</source>
       <translation>Wort rechts löschen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1626" />
-      <location filename="../QScintilla/ShellWindow.py" line="522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1622" />
+      <location filename="../QScintilla/ShellWindow.py" line="526" />
       <source>Ctrl+Del</source>
       <translation>Ctrl+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
-      <location filename="../QScintilla/MiniEditor.py" line="1637" />
-      <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/ShellWindow.py" line="533" />
-      <location filename="../QScintilla/ShellWindow.py" line="532" />
+      <location filename="../QScintilla/MiniEditor.py" line="1633" />
+      <location filename="../QScintilla/MiniEditor.py" line="1632" />
+      <location filename="../QScintilla/ShellWindow.py" line="537" />
+      <location filename="../QScintilla/ShellWindow.py" line="536" />
       <source>Delete line to left</source>
       <translation>Zeile links löschen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1639" />
-      <location filename="../QScintilla/ShellWindow.py" line="535" />
+      <location filename="../QScintilla/MiniEditor.py" line="1635" />
+      <location filename="../QScintilla/ShellWindow.py" line="539" />
       <source>Ctrl+Shift+Backspace</source>
       <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
-      <location filename="../QScintilla/MiniEditor.py" line="1651" />
-      <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/ShellWindow.py" line="547" />
-      <location filename="../QScintilla/ShellWindow.py" line="546" />
+      <location filename="../QScintilla/MiniEditor.py" line="1647" />
+      <location filename="../QScintilla/MiniEditor.py" line="1646" />
+      <location filename="../QScintilla/ShellWindow.py" line="551" />
+      <location filename="../QScintilla/ShellWindow.py" line="550" />
       <source>Delete line to right</source>
       <translation>Zeile rechts löschen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1659" />
-      <location filename="../QScintilla/ShellWindow.py" line="555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1655" />
+      <location filename="../QScintilla/ShellWindow.py" line="559" />
       <source>Meta+K</source>
       <translation>Meta+K</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1664" />
-      <location filename="../QScintilla/ShellWindow.py" line="560" />
+      <location filename="../QScintilla/MiniEditor.py" line="1660" />
+      <location filename="../QScintilla/ShellWindow.py" line="564" />
       <source>Ctrl+Shift+Del</source>
       <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
-      <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/ShellWindow.py" line="569" />
-      <location filename="../QScintilla/ShellWindow.py" line="568" />
+      <location filename="../QScintilla/MiniEditor.py" line="891" />
+      <location filename="../QScintilla/MiniEditor.py" line="890" />
+      <location filename="../QScintilla/ShellWindow.py" line="573" />
+      <location filename="../QScintilla/ShellWindow.py" line="572" />
       <source>Move left one character</source>
       <translation>Ein Zeichen nach links</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="896" />
-      <location filename="../QScintilla/ShellWindow.py" line="570" />
+      <location filename="../QScintilla/MiniEditor.py" line="892" />
+      <location filename="../QScintilla/ShellWindow.py" line="574" />
       <source>Left</source>
       <translation>Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="904" />
-      <location filename="../QScintilla/ShellWindow.py" line="578" />
+      <location filename="../QScintilla/MiniEditor.py" line="900" />
+      <location filename="../QScintilla/ShellWindow.py" line="582" />
       <source>Meta+B</source>
       <translation>Meta+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
-      <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/ShellWindow.py" line="585" />
-      <location filename="../QScintilla/ShellWindow.py" line="584" />
+      <location filename="../QScintilla/MiniEditor.py" line="907" />
+      <location filename="../QScintilla/MiniEditor.py" line="906" />
+      <location filename="../QScintilla/ShellWindow.py" line="589" />
+      <location filename="../QScintilla/ShellWindow.py" line="588" />
       <source>Move right one character</source>
       <translation>Ein Zeichen nach rechts</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="912" />
-      <location filename="../QScintilla/ShellWindow.py" line="586" />
+      <location filename="../QScintilla/MiniEditor.py" line="908" />
+      <location filename="../QScintilla/ShellWindow.py" line="590" />
       <source>Right</source>
       <translation>Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="919" />
-      <location filename="../QScintilla/ShellWindow.py" line="593" />
+      <location filename="../QScintilla/MiniEditor.py" line="915" />
+      <location filename="../QScintilla/ShellWindow.py" line="597" />
       <source>Meta+F</source>
       <translation>Meta+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="991" />
-      <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/ShellWindow.py" line="601" />
-      <location filename="../QScintilla/ShellWindow.py" line="600" />
+      <location filename="../QScintilla/MiniEditor.py" line="987" />
+      <location filename="../QScintilla/MiniEditor.py" line="986" />
+      <location filename="../QScintilla/ShellWindow.py" line="605" />
+      <location filename="../QScintilla/ShellWindow.py" line="604" />
       <source>Move left one word</source>
       <translation>Ein Wort nach links</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="999" />
-      <location filename="../QScintilla/MiniEditor.py" line="967" />
-      <location filename="../QScintilla/ShellWindow.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="995" />
+      <location filename="../QScintilla/MiniEditor.py" line="963" />
+      <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Alt+Left</source>
       <translation>Alt+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1059" />
-      <location filename="../QScintilla/MiniEditor.py" line="1003" />
-      <location filename="../QScintilla/ShellWindow.py" line="613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1055" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/ShellWindow.py" line="617" />
       <source>Ctrl+Left</source>
       <translation>Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
-      <location filename="../QScintilla/MiniEditor.py" line="1011" />
-      <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/ShellWindow.py" line="621" />
-      <location filename="../QScintilla/ShellWindow.py" line="620" />
+      <location filename="../QScintilla/MiniEditor.py" line="1007" />
+      <location filename="../QScintilla/MiniEditor.py" line="1006" />
+      <location filename="../QScintilla/ShellWindow.py" line="625" />
+      <location filename="../QScintilla/ShellWindow.py" line="624" />
       <source>Move right one word</source>
       <translation>Ein Wort nach rechts</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="1023" />
-      <location filename="../QScintilla/ShellWindow.py" line="629" />
+      <location filename="../QScintilla/MiniEditor.py" line="1809" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/ShellWindow.py" line="633" />
       <source>Ctrl+Right</source>
       <translation>Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1033" />
-      <location filename="../QScintilla/MiniEditor.py" line="1030" />
-      <location filename="../QScintilla/ShellWindow.py" line="639" />
-      <location filename="../QScintilla/ShellWindow.py" line="636" />
+      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1026" />
+      <location filename="../QScintilla/ShellWindow.py" line="643" />
+      <location filename="../QScintilla/ShellWindow.py" line="640" />
       <source>Move to first visible character in document line</source>
       <translation>Zum ersten sichtbaren Zeichen der Dokumentzeile springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2074" />
-      <location filename="../QScintilla/MiniEditor.py" line="1043" />
-      <location filename="../QScintilla/ShellWindow.py" line="649" />
+      <location filename="../QScintilla/MiniEditor.py" line="2070" />
+      <location filename="../QScintilla/MiniEditor.py" line="1039" />
+      <location filename="../QScintilla/ShellWindow.py" line="653" />
       <source>Home</source>
       <translation>Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
-      <location filename="../QScintilla/MiniEditor.py" line="1071" />
-      <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/ShellWindow.py" line="657" />
-      <location filename="../QScintilla/ShellWindow.py" line="656" />
+      <location filename="../QScintilla/MiniEditor.py" line="1067" />
+      <location filename="../QScintilla/MiniEditor.py" line="1066" />
+      <location filename="../QScintilla/ShellWindow.py" line="661" />
+      <location filename="../QScintilla/ShellWindow.py" line="660" />
       <source>Move to end of document line</source>
       <translation>Zum Ende der Dokumentenzeile springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1079" />
-      <location filename="../QScintilla/ShellWindow.py" line="665" />
+      <location filename="../QScintilla/MiniEditor.py" line="1075" />
+      <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>Meta+E</source>
       <translation>Meta+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1083" />
-      <location filename="../QScintilla/ShellWindow.py" line="669" />
+      <location filename="../QScintilla/MiniEditor.py" line="2087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
+      <location filename="../QScintilla/ShellWindow.py" line="673" />
       <source>End</source>
       <translation>End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
-      <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/ShellWindow.py" line="677" />
-      <location filename="../QScintilla/ShellWindow.py" line="676" />
+      <location filename="../QScintilla/MiniEditor.py" line="923" />
+      <location filename="../QScintilla/MiniEditor.py" line="922" />
+      <location filename="../QScintilla/ShellWindow.py" line="681" />
+      <location filename="../QScintilla/ShellWindow.py" line="680" />
       <source>Move up one line</source>
       <translation>Eine Zeile nach oben</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="928" />
-      <location filename="../QScintilla/ShellWindow.py" line="678" />
+      <location filename="../QScintilla/MiniEditor.py" line="924" />
+      <location filename="../QScintilla/ShellWindow.py" line="682" />
       <source>Up</source>
       <translation>Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="935" />
-      <location filename="../QScintilla/ShellWindow.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="689" />
       <source>Meta+P</source>
       <translation>Meta+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
-      <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/ShellWindow.py" line="693" />
-      <location filename="../QScintilla/ShellWindow.py" line="692" />
+      <location filename="../QScintilla/MiniEditor.py" line="939" />
+      <location filename="../QScintilla/MiniEditor.py" line="938" />
+      <location filename="../QScintilla/ShellWindow.py" line="697" />
+      <location filename="../QScintilla/ShellWindow.py" line="696" />
       <source>Move down one line</source>
       <translation>Eine Zeile nach unten</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="944" />
-      <location filename="../QScintilla/ShellWindow.py" line="694" />
+      <location filename="../QScintilla/MiniEditor.py" line="940" />
+      <location filename="../QScintilla/ShellWindow.py" line="698" />
       <source>Down</source>
       <translation>Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="951" />
-      <location filename="../QScintilla/ShellWindow.py" line="701" />
+      <location filename="../QScintilla/MiniEditor.py" line="947" />
+      <location filename="../QScintilla/ShellWindow.py" line="705" />
       <source>Meta+N</source>
       <translation>Meta+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1195" />
-      <location filename="../QScintilla/MiniEditor.py" line="1092" />
-      <location filename="../QScintilla/ShellWindow.py" line="710" />
+      <location filename="../QScintilla/MiniEditor.py" line="1191" />
+      <location filename="../QScintilla/MiniEditor.py" line="1088" />
+      <location filename="../QScintilla/ShellWindow.py" line="714" />
       <source>Ctrl+Down</source>
       <translation>Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1175" />
-      <location filename="../QScintilla/MiniEditor.py" line="1104" />
-      <location filename="../QScintilla/ShellWindow.py" line="722" />
+      <location filename="../QScintilla/MiniEditor.py" line="1171" />
+      <location filename="../QScintilla/MiniEditor.py" line="1100" />
+      <location filename="../QScintilla/ShellWindow.py" line="726" />
       <source>Ctrl+Up</source>
       <translation>Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
-      <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/ShellWindow.py" line="733" />
-      <location filename="../QScintilla/ShellWindow.py" line="732" />
+      <location filename="../QScintilla/MiniEditor.py" line="1135" />
+      <location filename="../QScintilla/MiniEditor.py" line="1134" />
+      <location filename="../QScintilla/ShellWindow.py" line="737" />
+      <location filename="../QScintilla/ShellWindow.py" line="736" />
       <source>Move up one page</source>
       <translation>Eine Seite hoch</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1140" />
-      <location filename="../QScintilla/ShellWindow.py" line="734" />
+      <location filename="../QScintilla/MiniEditor.py" line="1136" />
+      <location filename="../QScintilla/ShellWindow.py" line="738" />
       <source>PgUp</source>
       <translation>PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/ShellWindow.py" line="745" />
-      <location filename="../QScintilla/ShellWindow.py" line="744" />
+      <location filename="../QScintilla/MiniEditor.py" line="1147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1146" />
+      <location filename="../QScintilla/ShellWindow.py" line="749" />
+      <location filename="../QScintilla/ShellWindow.py" line="748" />
       <source>Move down one page</source>
       <translation>Eine Seite nach unten</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1152" />
-      <location filename="../QScintilla/ShellWindow.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="1148" />
+      <location filename="../QScintilla/ShellWindow.py" line="750" />
       <source>PgDown</source>
       <translation>PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1159" />
-      <location filename="../QScintilla/ShellWindow.py" line="753" />
+      <location filename="../QScintilla/MiniEditor.py" line="1155" />
+      <location filename="../QScintilla/ShellWindow.py" line="757" />
       <source>Meta+V</source>
       <translation>Meta+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
-      <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/ShellWindow.py" line="761" />
-      <location filename="../QScintilla/ShellWindow.py" line="760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1855" />
+      <location filename="../QScintilla/MiniEditor.py" line="1854" />
+      <location filename="../QScintilla/ShellWindow.py" line="765" />
+      <location filename="../QScintilla/ShellWindow.py" line="764" />
       <source>Escape</source>
       <translation>Abbruch</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1860" />
-      <location filename="../QScintilla/ShellWindow.py" line="762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1856" />
+      <location filename="../QScintilla/ShellWindow.py" line="766" />
       <source>Esc</source>
       <translation>Esc</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1233" />
-      <location filename="../QScintilla/MiniEditor.py" line="1230" />
-      <location filename="../QScintilla/ShellWindow.py" line="775" />
-      <location filename="../QScintilla/ShellWindow.py" line="772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1226" />
+      <location filename="../QScintilla/ShellWindow.py" line="779" />
+      <location filename="../QScintilla/ShellWindow.py" line="776" />
       <source>Extend selection left one character</source>
       <translation>Auswahl um ein Zeichen nach links erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1236" />
-      <location filename="../QScintilla/ShellWindow.py" line="778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1232" />
+      <location filename="../QScintilla/ShellWindow.py" line="782" />
       <source>Shift+Left</source>
       <translation>Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1243" />
-      <location filename="../QScintilla/ShellWindow.py" line="785" />
+      <location filename="../QScintilla/MiniEditor.py" line="1239" />
+      <location filename="../QScintilla/ShellWindow.py" line="789" />
       <source>Meta+Shift+B</source>
       <translation>Meta+Shift+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1253" />
-      <location filename="../QScintilla/MiniEditor.py" line="1250" />
-      <location filename="../QScintilla/ShellWindow.py" line="795" />
-      <location filename="../QScintilla/ShellWindow.py" line="792" />
+      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1246" />
+      <location filename="../QScintilla/ShellWindow.py" line="799" />
+      <location filename="../QScintilla/ShellWindow.py" line="796" />
       <source>Extend selection right one character</source>
       <translation>Auswahl um ein Zeichen nach rechts erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1256" />
-      <location filename="../QScintilla/ShellWindow.py" line="798" />
+      <location filename="../QScintilla/MiniEditor.py" line="1252" />
+      <location filename="../QScintilla/ShellWindow.py" line="802" />
       <source>Shift+Right</source>
       <translation>Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1263" />
-      <location filename="../QScintilla/ShellWindow.py" line="805" />
+      <location filename="../QScintilla/MiniEditor.py" line="1259" />
+      <location filename="../QScintilla/ShellWindow.py" line="809" />
       <source>Meta+Shift+F</source>
       <translation>Meta+Shift+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
-      <location filename="../QScintilla/MiniEditor.py" line="1347" />
-      <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/ShellWindow.py" line="813" />
-      <location filename="../QScintilla/ShellWindow.py" line="812" />
+      <location filename="../QScintilla/MiniEditor.py" line="1343" />
+      <location filename="../QScintilla/MiniEditor.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="817" />
+      <location filename="../QScintilla/ShellWindow.py" line="816" />
       <source>Extend selection left one word</source>
       <translation>Auswahl um ein Wort nach links erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1356" />
-      <location filename="../QScintilla/MiniEditor.py" line="1316" />
-      <location filename="../QScintilla/ShellWindow.py" line="822" />
+      <location filename="../QScintilla/MiniEditor.py" line="1352" />
+      <location filename="../QScintilla/MiniEditor.py" line="1312" />
+      <location filename="../QScintilla/ShellWindow.py" line="826" />
       <source>Alt+Shift+Left</source>
       <translation>Alt+Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2277" />
-      <location filename="../QScintilla/MiniEditor.py" line="1362" />
-      <location filename="../QScintilla/ShellWindow.py" line="828" />
+      <location filename="../QScintilla/MiniEditor.py" line="2273" />
+      <location filename="../QScintilla/MiniEditor.py" line="1358" />
+      <location filename="../QScintilla/ShellWindow.py" line="832" />
       <source>Ctrl+Shift+Left</source>
       <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1373" />
-      <location filename="../QScintilla/MiniEditor.py" line="1370" />
-      <location filename="../QScintilla/ShellWindow.py" line="839" />
-      <location filename="../QScintilla/ShellWindow.py" line="836" />
+      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1366" />
+      <location filename="../QScintilla/ShellWindow.py" line="843" />
+      <location filename="../QScintilla/ShellWindow.py" line="840" />
       <source>Extend selection right one word</source>
       <translation>Auswahl um ein Wort nach rechts erweitern</translation>
     </message>
@@ -91705,60 +91813,60 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1384" />
-      <location filename="../QScintilla/MiniEditor.py" line="1338" />
-      <location filename="../QScintilla/ShellWindow.py" line="850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1380" />
+      <location filename="../QScintilla/MiniEditor.py" line="1334" />
+      <location filename="../QScintilla/ShellWindow.py" line="854" />
       <source>Alt+Shift+Right</source>
       <translation>Alt+Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1838" />
-      <location filename="../QScintilla/MiniEditor.py" line="1390" />
-      <location filename="../QScintilla/ShellWindow.py" line="856" />
+      <location filename="../QScintilla/MiniEditor.py" line="1834" />
+      <location filename="../QScintilla/MiniEditor.py" line="1386" />
+      <location filename="../QScintilla/ShellWindow.py" line="860" />
       <source>Ctrl+Shift+Right</source>
       <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1402" />
       <location filename="../QScintilla/MiniEditor.py" line="1398" />
+      <location filename="../QScintilla/MiniEditor.py" line="1394" />
+      <location filename="../QScintilla/ShellWindow.py" line="872" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
-      <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
       <translation>Auswahl zum ersten sichtbaren Zeichen der Dokumentzeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1413" />
-      <location filename="../QScintilla/ShellWindow.py" line="879" />
+      <location filename="../QScintilla/MiniEditor.py" line="1409" />
+      <location filename="../QScintilla/ShellWindow.py" line="883" />
       <source>Shift+Home</source>
       <translation>Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1423" />
-      <location filename="../QScintilla/MiniEditor.py" line="1420" />
-      <location filename="../QScintilla/ShellWindow.py" line="889" />
-      <location filename="../QScintilla/ShellWindow.py" line="886" />
+      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1416" />
+      <location filename="../QScintilla/ShellWindow.py" line="893" />
+      <location filename="../QScintilla/ShellWindow.py" line="890" />
       <source>Extend selection to end of document line</source>
       <translation>Auswahl zum Ende der Dokumentenzeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1433" />
-      <location filename="../QScintilla/ShellWindow.py" line="899" />
+      <location filename="../QScintilla/MiniEditor.py" line="1429" />
+      <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Meta+Shift+E</source>
       <translation>Meta+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1437" />
-      <location filename="../QScintilla/ShellWindow.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
+      <location filename="../QScintilla/ShellWindow.py" line="907" />
       <source>Shift+End</source>
       <translation>Shift+End</translation>
     </message>
@@ -91766,255 +91874,255 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2533" />
-      <location filename="../QScintilla/ShellWindow.py" line="917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2529" />
+      <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Search</source>
       <translation>Suchen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2535" />
-      <location filename="../QScintilla/ShellWindow.py" line="919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2531" />
+      <location filename="../QScintilla/ShellWindow.py" line="923" />
       <source>&amp;Search...</source>
       <translation>&amp;Suchen...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2537" />
-      <location filename="../QScintilla/ShellWindow.py" line="921" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
+      <location filename="../QScintilla/ShellWindow.py" line="925" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
       <translation>Ctrl+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2544" />
-      <location filename="../QScintilla/ShellWindow.py" line="928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2540" />
+      <location filename="../QScintilla/ShellWindow.py" line="932" />
       <source>Search for a text</source>
       <translation>Sucht nach Text</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="935" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Suchen&lt;/b&gt;&lt;p&gt;Sucht einen Text im Shell Fenster. Es wird ein Dialog eingeblendet, in dem der Suchtext und verschieden Suchoptionen eingegeben werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2559" />
-      <location filename="../QScintilla/ShellWindow.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="2555" />
+      <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>Search next</source>
       <translation>Weitersuchen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2561" />
-      <location filename="../QScintilla/ShellWindow.py" line="945" />
+      <location filename="../QScintilla/MiniEditor.py" line="2557" />
+      <location filename="../QScintilla/ShellWindow.py" line="949" />
       <source>Search &amp;next</source>
       <translation>&amp;Weitersuchen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2563" />
-      <location filename="../QScintilla/ShellWindow.py" line="947" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
+      <location filename="../QScintilla/ShellWindow.py" line="951" />
       <source>F3</source>
       <comment>Search|Search next</comment>
       <translation>F3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2570" />
-      <location filename="../QScintilla/ShellWindow.py" line="954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2566" />
+      <location filename="../QScintilla/ShellWindow.py" line="958" />
       <source>Search next occurrence of text</source>
       <translation>Das nächste Vorkommen des Textes in der Seite suchen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="957" />
+      <location filename="../QScintilla/ShellWindow.py" line="961" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Weitersuchen&lt;/b&gt;&lt;p&gt;Nach der nächsten Textstelle im Shell Fenster suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2585" />
-      <location filename="../QScintilla/ShellWindow.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="2581" />
+      <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Search previous</source>
       <translation>Rückwärtssuchen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2587" />
-      <location filename="../QScintilla/ShellWindow.py" line="973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2583" />
+      <location filename="../QScintilla/ShellWindow.py" line="977" />
       <source>Search &amp;previous</source>
       <translation>&amp;Rückwärtssuchen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2589" />
-      <location filename="../QScintilla/ShellWindow.py" line="975" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
+      <location filename="../QScintilla/ShellWindow.py" line="979" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
       <translation>Shift+F3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2598" />
-      <location filename="../QScintilla/ShellWindow.py" line="984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2594" />
+      <location filename="../QScintilla/ShellWindow.py" line="988" />
       <source>Search previous occurrence of text</source>
       <translation>Das vorherige Vorkommen des Textes in der Seite suchen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="989" />
+      <location filename="../QScintilla/ShellWindow.py" line="993" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Rückwärtssuchen&lt;/b&gt;&lt;p&gt;Nach der vorherigen Textstelle im Shell Fenster suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2758" />
-      <location filename="../QScintilla/ShellWindow.py" line="1010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2754" />
+      <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Zoom in</source>
       <translation>Vergrößern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2760" />
-      <location filename="../QScintilla/ShellWindow.py" line="1012" />
+      <location filename="../QScintilla/MiniEditor.py" line="2756" />
+      <location filename="../QScintilla/ShellWindow.py" line="1016" />
       <source>Zoom &amp;in</source>
       <translation>Ver&amp;größern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2762" />
-      <location filename="../QScintilla/ShellWindow.py" line="1014" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
+      <location filename="../QScintilla/ShellWindow.py" line="1018" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
       <translation>Ctrl++</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2765" />
-      <location filename="../QScintilla/ShellWindow.py" line="1017" />
+      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/ShellWindow.py" line="1021" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
       <translation>Vergrößern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2771" />
-      <location filename="../QScintilla/ShellWindow.py" line="1023" />
+      <location filename="../QScintilla/MiniEditor.py" line="2767" />
+      <location filename="../QScintilla/ShellWindow.py" line="1027" />
       <source>Zoom in on the text</source>
       <translation>Text vergrößern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2774" />
-      <location filename="../QScintilla/ShellWindow.py" line="1026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/ShellWindow.py" line="1030" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Vergrößern&lt;/b&gt;&lt;p&gt;Den angezeigten Text vergrößern.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2784" />
-      <location filename="../QScintilla/ShellWindow.py" line="1036" />
+      <location filename="../QScintilla/MiniEditor.py" line="2780" />
+      <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Zoom out</source>
       <translation>Verkleinern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2786" />
-      <location filename="../QScintilla/ShellWindow.py" line="1038" />
+      <location filename="../QScintilla/MiniEditor.py" line="2782" />
+      <location filename="../QScintilla/ShellWindow.py" line="1042" />
       <source>Zoom &amp;out</source>
       <translation>Ver&amp;kleinern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2788" />
-      <location filename="../QScintilla/ShellWindow.py" line="1040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
+      <location filename="../QScintilla/ShellWindow.py" line="1044" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
       <translation>Ctrl+-</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2791" />
-      <location filename="../QScintilla/ShellWindow.py" line="1043" />
+      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/ShellWindow.py" line="1047" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
       <translation>Verkleinern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2797" />
-      <location filename="../QScintilla/ShellWindow.py" line="1049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2793" />
+      <location filename="../QScintilla/ShellWindow.py" line="1053" />
       <source>Zoom out on the text</source>
       <translation>Text verkleinern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2800" />
-      <location filename="../QScintilla/ShellWindow.py" line="1052" />
+      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/ShellWindow.py" line="1056" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Verkleinern&lt;/b&gt;&lt;p&gt;Den angezeigten Text verkleinern.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2810" />
-      <location filename="../QScintilla/ShellWindow.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="2806" />
+      <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Zoom reset</source>
       <translation>Vergrößerung zurücksetzen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2812" />
-      <location filename="../QScintilla/ShellWindow.py" line="1064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2808" />
+      <location filename="../QScintilla/ShellWindow.py" line="1068" />
       <source>Zoom &amp;reset</source>
       <translation>Vergrößerung &amp;zurücksetzen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2814" />
-      <location filename="../QScintilla/ShellWindow.py" line="1066" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
+      <location filename="../QScintilla/ShellWindow.py" line="1070" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
       <translation>Ctrl+0</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2821" />
-      <location filename="../QScintilla/ShellWindow.py" line="1073" />
+      <location filename="../QScintilla/MiniEditor.py" line="2817" />
+      <location filename="../QScintilla/ShellWindow.py" line="1077" />
       <source>Reset the zoom of the text</source>
       <translation>Die Textgröße zurücksetzen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2824" />
-      <location filename="../QScintilla/ShellWindow.py" line="1076" />
+      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/ShellWindow.py" line="1080" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. 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="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2835" />
-      <location filename="../QScintilla/ShellWindow.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="2831" />
+      <location filename="../QScintilla/ShellWindow.py" line="1091" />
       <source>Zoom</source>
       <translation>Maßstab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2837" />
-      <location filename="../QScintilla/ShellWindow.py" line="1089" />
+      <location filename="../QScintilla/MiniEditor.py" line="2833" />
+      <location filename="../QScintilla/ShellWindow.py" line="1093" />
       <source>&amp;Zoom</source>
       <translation>&amp;Maßstab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2844" />
-      <location filename="../QScintilla/ShellWindow.py" line="1096" />
+      <location filename="../QScintilla/MiniEditor.py" line="2840" />
+      <location filename="../QScintilla/ShellWindow.py" line="1100" />
       <source>Zoom the text</source>
       <translation>Den Maßstab des Textes ändern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2847" />
-      <location filename="../QScintilla/ShellWindow.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/ShellWindow.py" line="1103" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Maßstab&lt;/b&gt;&lt;p&gt;dies ändert den Textmaßstab. Es wird ein dialog eingeblendet, in dem der Maßstab eingegeben werden kann.&lt;/p&gt;</translation>
     </message>
@@ -92028,977 +92136,977 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
-      <location filename="../QScintilla/MiniEditor.py" line="959" />
-      <location filename="../QScintilla/MiniEditor.py" line="958" />
+      <location filename="../QScintilla/MiniEditor.py" line="955" />
+      <location filename="../QScintilla/MiniEditor.py" line="954" />
       <source>Move left one word part</source>
       <translation>Ein Wortteil nach links</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
-      <location filename="../QScintilla/MiniEditor.py" line="975" />
-      <location filename="../QScintilla/MiniEditor.py" line="974" />
+      <location filename="../QScintilla/MiniEditor.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="970" />
       <source>Move right one word part</source>
       <translation>Ein Wortteil nach rechts</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2129" />
-      <location filename="../QScintilla/MiniEditor.py" line="1019" />
-      <location filename="../QScintilla/MiniEditor.py" line="983" />
+      <location filename="../QScintilla/MiniEditor.py" line="2125" />
+      <location filename="../QScintilla/MiniEditor.py" line="1015" />
+      <location filename="../QScintilla/MiniEditor.py" line="979" />
       <source>Alt+Right</source>
       <translation>Alt+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
-      <location filename="../QScintilla/MiniEditor.py" line="1051" />
-      <location filename="../QScintilla/MiniEditor.py" line="1050" />
+      <location filename="../QScintilla/MiniEditor.py" line="1047" />
+      <location filename="../QScintilla/MiniEditor.py" line="1046" />
       <source>Move to start of display line</source>
       <translation>Zum Beginn der Anzeigezeile springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1063" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
       <source>Alt+Home</source>
       <translation>Alt+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1090" />
+      <location filename="../QScintilla/MiniEditor.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1086" />
       <source>Scroll view down one line</source>
       <translation>Eine Zeile nach unten rollen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
-      <location filename="../QScintilla/MiniEditor.py" line="1102" />
+      <location filename="../QScintilla/MiniEditor.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="1098" />
       <source>Scroll view up one line</source>
       <translation>Eine Zeile nach oben rollen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
-      <location filename="../QScintilla/MiniEditor.py" line="1114" />
+      <location filename="../QScintilla/MiniEditor.py" line="1111" />
+      <location filename="../QScintilla/MiniEditor.py" line="1110" />
       <source>Move up one paragraph</source>
       <translation>Einen Absatz nach oben</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1116" />
+      <location filename="../QScintilla/MiniEditor.py" line="1112" />
       <source>Alt+Up</source>
       <translation>Alt+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
-      <location filename="../QScintilla/MiniEditor.py" line="1126" />
+      <location filename="../QScintilla/MiniEditor.py" line="1123" />
+      <location filename="../QScintilla/MiniEditor.py" line="1122" />
       <source>Move down one paragraph</source>
       <translation>Einen Absatz nach unten</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1128" />
+      <location filename="../QScintilla/MiniEditor.py" line="1124" />
       <source>Alt+Down</source>
       <translation>Alt+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
-      <location filename="../QScintilla/MiniEditor.py" line="1167" />
-      <location filename="../QScintilla/MiniEditor.py" line="1166" />
+      <location filename="../QScintilla/MiniEditor.py" line="1163" />
+      <location filename="../QScintilla/MiniEditor.py" line="1162" />
       <source>Move to start of document</source>
       <translation>Zum Dokumentenanfang springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1179" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
       <source>Ctrl+Home</source>
       <translation>Ctrl+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
-      <location filename="../QScintilla/MiniEditor.py" line="1187" />
-      <location filename="../QScintilla/MiniEditor.py" line="1186" />
+      <location filename="../QScintilla/MiniEditor.py" line="1183" />
+      <location filename="../QScintilla/MiniEditor.py" line="1182" />
       <source>Move to end of document</source>
       <translation>Zum Dokumentenende springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1199" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
       <source>Ctrl+End</source>
       <translation>Ctrl+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
-      <location filename="../QScintilla/MiniEditor.py" line="1218" />
+      <location filename="../QScintilla/MiniEditor.py" line="1215" />
+      <location filename="../QScintilla/MiniEditor.py" line="1214" />
       <source>Unindent one level</source>
       <translation>Eine Ebene ausrücken</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1220" />
+      <location filename="../QScintilla/MiniEditor.py" line="1216" />
       <source>Shift+Tab</source>
       <translation>Shift+Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
-      <location filename="../QScintilla/MiniEditor.py" line="1270" />
+      <location filename="../QScintilla/MiniEditor.py" line="1267" />
+      <location filename="../QScintilla/MiniEditor.py" line="1266" />
       <source>Extend selection up one line</source>
       <translation>Auswahl um eine Zeile nach oben erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1272" />
+      <location filename="../QScintilla/MiniEditor.py" line="1268" />
       <source>Shift+Up</source>
       <translation>Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1279" />
+      <location filename="../QScintilla/MiniEditor.py" line="1275" />
       <source>Meta+Shift+P</source>
       <translation>Meta+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
-      <location filename="../QScintilla/MiniEditor.py" line="1286" />
+      <location filename="../QScintilla/MiniEditor.py" line="1283" />
+      <location filename="../QScintilla/MiniEditor.py" line="1282" />
       <source>Extend selection down one line</source>
       <translation>Auswahl um eine Zeile nach unten erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1288" />
+      <location filename="../QScintilla/MiniEditor.py" line="1284" />
       <source>Shift+Down</source>
       <translation>Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1291" />
       <source>Meta+Shift+N</source>
       <translation>Meta+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1305" />
-      <location filename="../QScintilla/MiniEditor.py" line="1302" />
+      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1298" />
       <source>Extend selection left one word part</source>
       <translation>Auswahl um einen Wortteil nach links erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1327" />
-      <location filename="../QScintilla/MiniEditor.py" line="1324" />
+      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1320" />
       <source>Extend selection right one word part</source>
       <translation>Auswahl um einen Wortteil nach rechts erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1447" />
-      <location filename="../QScintilla/MiniEditor.py" line="1444" />
+      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1440" />
       <source>Extend selection up one paragraph</source>
       <translation>Auswahl um einen Absatz nach oben erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1450" />
+      <location filename="../QScintilla/MiniEditor.py" line="1446" />
       <source>Alt+Shift+Up</source>
       <translation>Alt+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1463" />
-      <location filename="../QScintilla/MiniEditor.py" line="1460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1456" />
       <source>Extend selection down one paragraph</source>
       <translation>Auswahl um einen Absatz nach unten erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1466" />
+      <location filename="../QScintilla/MiniEditor.py" line="1462" />
       <source>Alt+Shift+Down</source>
       <translation>Alt+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
-      <location filename="../QScintilla/MiniEditor.py" line="1476" />
+      <location filename="../QScintilla/MiniEditor.py" line="1473" />
+      <location filename="../QScintilla/MiniEditor.py" line="1472" />
       <source>Extend selection up one page</source>
       <translation>Auswahl um eine Seite nach oben erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1478" />
+      <location filename="../QScintilla/MiniEditor.py" line="1474" />
       <source>Shift+PgUp</source>
       <translation>Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
-      <location filename="../QScintilla/MiniEditor.py" line="1488" />
+      <location filename="../QScintilla/MiniEditor.py" line="1485" />
+      <location filename="../QScintilla/MiniEditor.py" line="1484" />
       <source>Extend selection down one page</source>
       <translation>Auswahl um eine Seite nach unten erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1490" />
+      <location filename="../QScintilla/MiniEditor.py" line="1486" />
       <source>Shift+PgDown</source>
       <translation>Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1497" />
+      <location filename="../QScintilla/MiniEditor.py" line="1493" />
       <source>Meta+Shift+V</source>
       <translation>Meta+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1507" />
-      <location filename="../QScintilla/MiniEditor.py" line="1504" />
+      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1500" />
       <source>Extend selection to start of document</source>
       <translation>Auswahl zum Dokumentenanfang erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1517" />
+      <location filename="../QScintilla/MiniEditor.py" line="1513" />
       <source>Ctrl+Shift+Up</source>
       <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1518" />
       <source>Ctrl+Shift+Home</source>
       <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1533" />
-      <location filename="../QScintilla/MiniEditor.py" line="1530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1526" />
       <source>Extend selection to end of document</source>
       <translation>Auswahl zum Dokumentenende erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1544" />
+      <location filename="../QScintilla/MiniEditor.py" line="1540" />
       <source>Ctrl+Shift+Down</source>
       <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1550" />
+      <location filename="../QScintilla/MiniEditor.py" line="1546" />
       <source>Ctrl+Shift+End</source>
       <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1583" />
-      <location filename="../QScintilla/MiniEditor.py" line="1580" />
+      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1576" />
       <source>Delete previous character if not at start of line</source>
       <translation>Zeichen links löschen, wenn nicht am Zeilenanfang</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
-      <location filename="../QScintilla/MiniEditor.py" line="1696" />
+      <location filename="../QScintilla/MiniEditor.py" line="1693" />
+      <location filename="../QScintilla/MiniEditor.py" line="1692" />
       <source>Duplicate current line</source>
       <translation>Aktuelle Zeile duplizieren</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1698" />
+      <location filename="../QScintilla/MiniEditor.py" line="1694" />
       <source>Ctrl+D</source>
       <translation>Ctrl+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1711" />
-      <location filename="../QScintilla/MiniEditor.py" line="1708" />
+      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1704" />
       <source>Swap current and previous lines</source>
       <translation>Aktuelle Zeile mit vorhergehender tauschen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1714" />
+      <location filename="../QScintilla/MiniEditor.py" line="1710" />
       <source>Ctrl+T</source>
       <translation>Ctrl+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
-      <location filename="../QScintilla/MiniEditor.py" line="1724" />
+      <location filename="../QScintilla/MiniEditor.py" line="1721" />
+      <location filename="../QScintilla/MiniEditor.py" line="1720" />
       <source>Reverse selected lines</source>
       <translation>Ausgewählte Zeilen umkehren</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1726" />
+      <location filename="../QScintilla/MiniEditor.py" line="1722" />
       <source>Meta+Alt+R</source>
       <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
-      <location filename="../QScintilla/MiniEditor.py" line="1736" />
+      <location filename="../QScintilla/MiniEditor.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="1732" />
       <source>Cut current line</source>
       <translation>Aktuelle Zeile ausschneiden</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1738" />
+      <location filename="../QScintilla/MiniEditor.py" line="1734" />
       <source>Alt+Shift+L</source>
       <translation>Alt+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="1748" />
+      <location filename="../QScintilla/MiniEditor.py" line="1745" />
+      <location filename="../QScintilla/MiniEditor.py" line="1744" />
       <source>Copy current line</source>
       <translation>Aktuelle Zeile kopieren</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1750" />
+      <location filename="../QScintilla/MiniEditor.py" line="1746" />
       <source>Ctrl+Shift+T</source>
       <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
-      <location filename="../QScintilla/MiniEditor.py" line="1760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1757" />
+      <location filename="../QScintilla/MiniEditor.py" line="1756" />
       <source>Toggle insert/overtype</source>
       <translation>Einfügen/Überschreiben umschalten</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1758" />
       <source>Ins</source>
       <translation>Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1775" />
-      <location filename="../QScintilla/MiniEditor.py" line="1772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1768" />
       <source>Convert selection to lower case</source>
       <translation>Auswahl in Kleinbuchstaben umwandeln</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1774" />
       <source>Alt+Shift+U</source>
       <translation>Alt+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1791" />
-      <location filename="../QScintilla/MiniEditor.py" line="1788" />
+      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1784" />
       <source>Convert selection to upper case</source>
       <translation>Auswahl in Großbuchstaben umwandeln</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1794" />
+      <location filename="../QScintilla/MiniEditor.py" line="1790" />
       <source>Ctrl+Shift+U</source>
       <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
-      <location filename="../QScintilla/MiniEditor.py" line="1805" />
-      <location filename="../QScintilla/MiniEditor.py" line="1804" />
+      <location filename="../QScintilla/MiniEditor.py" line="1801" />
+      <location filename="../QScintilla/MiniEditor.py" line="1800" />
       <source>Move to end of display line</source>
       <translation>Zum Ende der Anzeigezeile springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1817" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
       <source>Alt+End</source>
       <translation>Alt+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1827" />
-      <location filename="../QScintilla/MiniEditor.py" line="1824" />
+      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1820" />
       <source>Extend selection to end of display line</source>
       <translation>Auswahl zum Ende der Anzeigezeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
-      <location filename="../QScintilla/MiniEditor.py" line="1847" />
-      <location filename="../QScintilla/MiniEditor.py" line="1846" />
+      <location filename="../QScintilla/MiniEditor.py" line="1843" />
+      <location filename="../QScintilla/MiniEditor.py" line="1842" />
       <source>Formfeed</source>
       <translation>Seitenumbruch</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1873" />
-      <location filename="../QScintilla/MiniEditor.py" line="1870" />
+      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1866" />
       <source>Extend rectangular selection down one line</source>
       <translation>Rechteckige Auswahl um eine Zeile nach unten erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1876" />
+      <location filename="../QScintilla/MiniEditor.py" line="1872" />
       <source>Alt+Ctrl+Down</source>
       <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1884" />
+      <location filename="../QScintilla/MiniEditor.py" line="1880" />
       <source>Meta+Alt+Shift+N</source>
       <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1895" />
-      <location filename="../QScintilla/MiniEditor.py" line="1892" />
+      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1888" />
       <source>Extend rectangular selection up one line</source>
       <translation>Rechteckige Auswahl um eine Zeile nach oben erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1898" />
+      <location filename="../QScintilla/MiniEditor.py" line="1894" />
       <source>Alt+Ctrl+Up</source>
       <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1906" />
+      <location filename="../QScintilla/MiniEditor.py" line="1902" />
       <source>Meta+Alt+Shift+P</source>
       <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1917" />
-      <location filename="../QScintilla/MiniEditor.py" line="1914" />
+      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1910" />
       <source>Extend rectangular selection left one character</source>
       <translation>Rechteckige Auswahl um ein Zeichen nach links erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1920" />
+      <location filename="../QScintilla/MiniEditor.py" line="1916" />
       <source>Alt+Ctrl+Left</source>
       <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1928" />
+      <location filename="../QScintilla/MiniEditor.py" line="1924" />
       <source>Meta+Alt+Shift+B</source>
       <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1939" />
-      <location filename="../QScintilla/MiniEditor.py" line="1936" />
+      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1932" />
       <source>Extend rectangular selection right one character</source>
       <translation>Rechteckige Auswahl um ein Zeichen nach rechts erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1942" />
+      <location filename="../QScintilla/MiniEditor.py" line="1938" />
       <source>Alt+Ctrl+Right</source>
       <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1950" />
+      <location filename="../QScintilla/MiniEditor.py" line="1946" />
       <source>Meta+Alt+Shift+F</source>
       <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1963" />
-      <location filename="../QScintilla/MiniEditor.py" line="1958" />
+      <location filename="../QScintilla/MiniEditor.py" line="1959" />
+      <location filename="../QScintilla/MiniEditor.py" line="1954" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation>Rechteckige Auswahl zum ersten sichtbaren Zeichen der Dokumentzeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1976" />
+      <location filename="../QScintilla/MiniEditor.py" line="1972" />
       <source>Alt+Shift+Home</source>
       <translation>Alt+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1987" />
-      <location filename="../QScintilla/MiniEditor.py" line="1984" />
+      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1980" />
       <source>Extend rectangular selection to end of document line</source>
       <translation>Rechteckige Auswahl zum Ende der Dokumentenzeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1998" />
+      <location filename="../QScintilla/MiniEditor.py" line="1994" />
       <source>Meta+Alt+Shift+E</source>
       <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2003" />
+      <location filename="../QScintilla/MiniEditor.py" line="1999" />
       <source>Alt+Shift+End</source>
       <translation>Alt+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2013" />
-      <location filename="../QScintilla/MiniEditor.py" line="2010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2006" />
       <source>Extend rectangular selection up one page</source>
       <translation>Rechteckige Auswahl um eine Seite nach oben erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2016" />
+      <location filename="../QScintilla/MiniEditor.py" line="2012" />
       <source>Alt+Shift+PgUp</source>
       <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2029" />
-      <location filename="../QScintilla/MiniEditor.py" line="2026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2022" />
       <source>Extend rectangular selection down one page</source>
       <translation>Rechteckige Auswahl um eine Seite nach unten erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2032" />
+      <location filename="../QScintilla/MiniEditor.py" line="2028" />
       <source>Alt+Shift+PgDown</source>
       <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2036" />
       <source>Meta+Alt+Shift+V</source>
       <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="2048" />
+      <location filename="../QScintilla/MiniEditor.py" line="2511" />
+      <location filename="../QScintilla/MiniEditor.py" line="2510" />
+      <location filename="../QScintilla/MiniEditor.py" line="2045" />
+      <location filename="../QScintilla/MiniEditor.py" line="2044" />
       <source>Duplicate current selection</source>
       <translation>Aktuelle Auswahl duplizieren</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2516" />
-      <location filename="../QScintilla/MiniEditor.py" line="2050" />
+      <location filename="../QScintilla/MiniEditor.py" line="2512" />
+      <location filename="../QScintilla/MiniEditor.py" line="2046" />
       <source>Ctrl+Shift+D</source>
       <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2064" />
-      <location filename="../QScintilla/MiniEditor.py" line="2061" />
+      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2057" />
       <source>Scroll to start of document</source>
       <translation>Zum Dokumentenanfang rollen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
-      <location filename="../QScintilla/MiniEditor.py" line="2083" />
-      <location filename="../QScintilla/MiniEditor.py" line="2082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2079" />
+      <location filename="../QScintilla/MiniEditor.py" line="2078" />
       <source>Scroll to end of document</source>
       <translation>Zum Dokumentenende rollen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2102" />
-      <location filename="../QScintilla/MiniEditor.py" line="2099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2095" />
       <source>Scroll vertically to center current line</source>
       <translation>Vertical rollen, um aktuelle Zeile zu zentrieren</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2112" />
+      <location filename="../QScintilla/MiniEditor.py" line="2108" />
       <source>Meta+L</source>
       <translation>Meta+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
-      <location filename="../QScintilla/MiniEditor.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2120" />
+      <location filename="../QScintilla/MiniEditor.py" line="2117" />
+      <location filename="../QScintilla/MiniEditor.py" line="2116" />
       <source>Move to end of next word</source>
       <translation>Zum Ende des nächsten Wortes springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2140" />
-      <location filename="../QScintilla/MiniEditor.py" line="2137" />
+      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2133" />
       <source>Extend selection to end of next word</source>
       <translation>Auswahl bis zum Ende des nächsten Wortes erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2163" />
-      <location filename="../QScintilla/MiniEditor.py" line="2160" />
+      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2156" />
       <source>Move to end of previous word</source>
       <translation>Zum Ende des vorigen Wortes springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2180" />
-      <location filename="../QScintilla/MiniEditor.py" line="2177" />
+      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2173" />
       <source>Extend selection to end of previous word</source>
       <translation>Auswahl bis zum Ende des vorigen Wortes erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2197" />
-      <location filename="../QScintilla/MiniEditor.py" line="2194" />
+      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2190" />
       <source>Move to start of document line</source>
       <translation>Zum Beginn der Dokumentenzeile springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2207" />
+      <location filename="../QScintilla/MiniEditor.py" line="2203" />
       <source>Meta+A</source>
       <translation>Meta+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2218" />
-      <location filename="../QScintilla/MiniEditor.py" line="2215" />
+      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2211" />
       <source>Extend selection to start of document line</source>
       <translation>Auswahl zum Beginn der Dokumentenzeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2229" />
+      <location filename="../QScintilla/MiniEditor.py" line="2225" />
       <source>Meta+Shift+A</source>
       <translation>Meta+Shift+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2242" />
       <location filename="../QScintilla/MiniEditor.py" line="2238" />
+      <location filename="../QScintilla/MiniEditor.py" line="2234" />
       <source>Extend rectangular selection to start of document line</source>
       <translation>Rechteckige Auswahl zum Beginn der Dokumentenzeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2254" />
+      <location filename="../QScintilla/MiniEditor.py" line="2250" />
       <source>Meta+Alt+Shift+A</source>
       <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2266" />
-      <location filename="../QScintilla/MiniEditor.py" line="2263" />
+      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2259" />
       <source>Extend selection to start of display line</source>
       <translation>Auswahl zum Beginn der Anzeigezeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2289" />
-      <location filename="../QScintilla/MiniEditor.py" line="2286" />
+      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2282" />
       <source>Move to start of display or document line</source>
       <translation>Zum Beginn der Dokumenten- oder Anzeigezeile springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2307" />
       <location filename="../QScintilla/MiniEditor.py" line="2303" />
+      <location filename="../QScintilla/MiniEditor.py" line="2299" />
       <source>Extend selection to start of display or document line</source>
       <translation>Auswahl zum Beginn der Dokumenten- oder Anzeigezeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2326" />
       <location filename="../QScintilla/MiniEditor.py" line="2322" />
+      <location filename="../QScintilla/MiniEditor.py" line="2318" />
       <source>Move to first visible character in display or document line</source>
       <translation>Zum ersten sichtbaren Zeichen der Dokument- oder Anzeigezeile springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2346" />
-      <location filename="../QScintilla/MiniEditor.py" line="2341" />
+      <location filename="../QScintilla/MiniEditor.py" line="2342" />
+      <location filename="../QScintilla/MiniEditor.py" line="2337" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation>Auswahl zum ersten sichtbaren Zeichen der Dokument- oder Anzeigezeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2365" />
-      <location filename="../QScintilla/MiniEditor.py" line="2362" />
+      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2358" />
       <source>Move to end of display or document line</source>
       <translation>Zum Ende der Dokumenten- oder Anzeigezeile springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2382" />
-      <location filename="../QScintilla/MiniEditor.py" line="2379" />
+      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2375" />
       <source>Extend selection to end of display or document line</source>
       <translation>Auswahl zum Ende der Dokumenten- oder Anzeigezeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
-      <location filename="../QScintilla/MiniEditor.py" line="2397" />
-      <location filename="../QScintilla/MiniEditor.py" line="2396" />
+      <location filename="../QScintilla/MiniEditor.py" line="2393" />
+      <location filename="../QScintilla/MiniEditor.py" line="2392" />
       <source>Stuttered move up one page</source>
       <translation>„Stotternd“ um eine Seite nach oben</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2412" />
-      <location filename="../QScintilla/MiniEditor.py" line="2409" />
+      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2405" />
       <source>Stuttered extend selection up one page</source>
       <translation>Auswahl „stotternd“ um eine Seite nach oben erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2429" />
-      <location filename="../QScintilla/MiniEditor.py" line="2426" />
+      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2422" />
       <source>Stuttered move down one page</source>
       <translation>„Stotternd“ um eine Seite nach unten</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2446" />
-      <location filename="../QScintilla/MiniEditor.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2439" />
       <source>Stuttered extend selection down one page</source>
       <translation>Auswahl „stotternd“ um eine Seite nach unten erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2463" />
-      <location filename="../QScintilla/MiniEditor.py" line="2460" />
+      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2456" />
       <source>Delete right to end of next word</source>
       <translation>Rechts bis zum Ende des nächsten Wortes löschen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2473" />
+      <location filename="../QScintilla/MiniEditor.py" line="2469" />
       <source>Alt+Del</source>
       <translation>Alt+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2484" />
-      <location filename="../QScintilla/MiniEditor.py" line="2481" />
+      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2477" />
       <source>Move selected lines up one line</source>
       <translation>Ausgewählte Zeilen um eine Zeile nach oben</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2501" />
-      <location filename="../QScintilla/MiniEditor.py" line="2498" />
+      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2494" />
       <source>Move selected lines down one line</source>
       <translation>Ausgewählte Zeilen um eine Zeile nach unten</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2547" />
+      <location filename="../QScintilla/MiniEditor.py" line="2543" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Suchen&lt;/b&gt;&lt;p&gt;Sucht einen Text im aktuellen Editor. Es wird ein Dialog eingeblendet, in dem der Suchtext und verschieden Suchoptionen eingegeben werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2573" />
+      <location filename="../QScintilla/MiniEditor.py" line="2569" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Weitersuchen&lt;/b&gt;&lt;p&gt;Nach der nächsten Textstelle im aktuellen Editor suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2603" />
+      <location filename="../QScintilla/MiniEditor.py" line="2599" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Rückwärtssuchen&lt;/b&gt;&lt;p&gt;Nach der vorherigen Textstelle im aktuellen Editor suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2617" />
-      <location filename="../QScintilla/MiniEditor.py" line="2615" />
+      <location filename="../QScintilla/MiniEditor.py" line="2613" />
+      <location filename="../QScintilla/MiniEditor.py" line="2611" />
       <source>Clear search markers</source>
       <translation>Suchmarkierungen löschen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2619" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation>Ctrl+3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2628" />
+      <location filename="../QScintilla/MiniEditor.py" line="2624" />
       <source>Clear all displayed search markers</source>
       <translation>Löscht alle angezeigten Suchmarkierungen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2633" />
+      <location filename="../QScintilla/MiniEditor.py" line="2629" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Suchmarkierungen löschen&lt;/b&gt;&lt;p&gt;Löscht alle angezeigten Suchmarkierungen.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2639" />
       <source>Replace</source>
       <translation>Ersetzen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2644" />
+      <location filename="../QScintilla/MiniEditor.py" line="2640" />
       <source>&amp;Replace...</source>
       <translation>&amp;Ersetzen...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2646" />
+      <location filename="../QScintilla/MiniEditor.py" line="2642" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation>Ctrl+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2653" />
+      <location filename="../QScintilla/MiniEditor.py" line="2649" />
       <source>Replace some text</source>
       <translation>Ersetzt Text</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2656" />
+      <location filename="../QScintilla/MiniEditor.py" line="2652" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ersetzen&lt;/b&gt;&lt;p&gt;Dies sucht nach Text im aktuellen Editor und ersetzt ihn. Es wird ein Dialog eingeblendet, in dem der Suchtext, der Ersetzungstext und verschieden Such- und Ersetzungsoptionen eingegeben werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2670" />
-      <location filename="../QScintilla/MiniEditor.py" line="2668" />
+      <location filename="../QScintilla/MiniEditor.py" line="2666" />
+      <location filename="../QScintilla/MiniEditor.py" line="2664" />
       <source>Replace and Search</source>
       <translation>Ersetzen und Suchen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2672" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation>Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2681" />
+      <location filename="../QScintilla/MiniEditor.py" line="2677" />
       <source>Replace the found text and search the next occurrence</source>
       <translation>Erstezt den gefundenen Text und sucht das nächste Vorkommen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2686" />
+      <location filename="../QScintilla/MiniEditor.py" line="2682" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ersetzen und Suchen&lt;/b&gt;&lt;p&gt;Ersetzt den Text an der Fundstelle im aktuellen Editor und sucht das nächste Vorkommen. Der zuvor eingegebene Suchtext und die Suchoptionen werden wiederverwendet.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2702" />
-      <location filename="../QScintilla/MiniEditor.py" line="2700" />
+      <location filename="../QScintilla/MiniEditor.py" line="2698" />
+      <location filename="../QScintilla/MiniEditor.py" line="2696" />
       <source>Replace Occurrence</source>
       <translation>Fundstelle ersetzen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2704" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2713" />
+      <location filename="../QScintilla/MiniEditor.py" line="2709" />
       <source>Replace the found text</source>
       <translation>Ersetzt den gefundenen Text</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2716" />
+      <location filename="../QScintilla/MiniEditor.py" line="2712" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Fundstelle ersetzen&lt;/b&gt;&lt;p&gt;Ersetzt den Text an der Fundstelle im aktuellen Editor.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2729" />
-      <location filename="../QScintilla/MiniEditor.py" line="2727" />
+      <location filename="../QScintilla/MiniEditor.py" line="2725" />
+      <location filename="../QScintilla/MiniEditor.py" line="2723" />
       <source>Replace All</source>
       <translation>Alle ersetzen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2731" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation>Shift+Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2740" />
+      <location filename="../QScintilla/MiniEditor.py" line="2736" />
       <source>Replace search text occurrences</source>
       <translation>Ersetzt alle Fundstellen des Suchtextes</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2743" />
+      <location filename="../QScintilla/MiniEditor.py" line="2739" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Alle ersetzen&lt;/b&gt;&lt;p&gt;Ersetzt alle Fundstellen des Suchtextes im aktuellen Editor.&lt;/p&gt;</translation>
     </message>
@@ -94936,29 +95044,29 @@
       <translation>&amp;Bearbeiten...</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7350" />
-      <location filename="../ViewManager/ViewManager.py" line="7336" />
-      <location filename="../ViewManager/ViewManager.py" line="7304" />
+      <location filename="../ViewManager/ViewManager.py" line="7349" />
+      <location filename="../ViewManager/ViewManager.py" line="7335" />
+      <location filename="../ViewManager/ViewManager.py" line="7303" />
       <source>Edit Spelling Dictionary</source>
       <translation>Wörterbuch bearbeiten</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7307" />
+      <location filename="../ViewManager/ViewManager.py" line="7306" />
       <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="7323" />
+      <location filename="../ViewManager/ViewManager.py" line="7322" />
       <source>Editing {0}</source>
       <translation>Bearbeite {0}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7339" />
+      <location filename="../ViewManager/ViewManager.py" line="7338" />
       <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="7353" />
+      <location filename="../ViewManager/ViewManager.py" line="7352" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation>Das Wörterbuch wurde erfolgreich gespeichert.</translation>
     </message>
@@ -96043,7 +96151,7 @@
 </translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="135" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="136" />
       <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="96" />
       <source>Failed
 
@@ -96053,7 +96161,7 @@
 </translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="144" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="145" />
       <source>
 pyvenv finished.
 </source>
@@ -96062,14 +96170,14 @@
 </translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="159" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="160" />
       <source>No suitable pyvenv program could be started.
 </source>
       <translation>Es konnte kein funktionierendes pyvenv Programm gestartet werden.
 </translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="222" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="223" />
       <source>
 Writing log file '{0}'.
 </source>
@@ -96078,21 +96186,21 @@
 </translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="226" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="227" />
       <source>Output:
 </source>
       <translation>Ausgabe:
 </translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="231" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="232" />
       <source>Errors:
 </source>
       <translation>Fehler:
 </translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="235" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="236" />
       <source>The logfile '{0}' could not be written.
 Reason: {1}
 </source>
@@ -96101,7 +96209,7 @@
 </translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="239" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="240" />
       <source>Done.
 </source>
       <translation>Fertig.
@@ -98312,32 +98420,32 @@
       <translation>Web Seite speichern</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2312" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2341" />
       <source>Quota Request</source>
       <translation>Speicherplatzanfrage</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2313" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2342" />
       <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="2389" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2385" />
       <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;Der Website &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Lese&lt;/b&gt;zugriff auf '{1}' gestatten?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2397" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2393" />
       <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;Der Website &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Schreib&lt;/b&gt;zugriff auf '{1}' gestatten?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2402" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2398" />
       <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;Der Website &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Lese- und Schreib&lt;/b&gt;zugriff auf '{1}' gestatten?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2409" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2405" />
       <source>File System Access Request</source>
       <translation>Dateisystemzugriffsanfrage</translation>
     </message>
@@ -101330,28 +101438,28 @@
       <translation>&lt;b&gt;eric Plugin Assistent&lt;/b&gt;&lt;p&gt;Dieser Assistent öffnet einen Dialog zur Eingabe aller Parameter, um einen Basisinhalt einer eric Plugindatei zu erzeugen. Der erzeugte Quelltext wird an die Stelle der Einfügemarke geschrieben.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="143" />
       <source>No current editor</source>
       <translation>Kein aktueller Editor</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="145" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
       <source>Please open or create a file first.</source>
       <translation>Bitte öffnen oder erzeugen Sie zuerst eine Datei.</translation>
     </message>
     <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="182" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="166" />
+      <source>Create Package</source>
+      <translation>Package erzeugen</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
+      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Das Packageverzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht angelegt werden. Abbruch...&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Plugins/PluginWizardEricPlugin.py" line="183" />
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
-      <source>Create Package</source>
-      <translation>Package erzeugen</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="168" />
-      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Das Packageverzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht angelegt werden. Abbruch...&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="184" />
       <source>&lt;p&gt;The package file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Packagedatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden. Abbruch...&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
@@ -101613,32 +101721,32 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1270" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1274" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Vorgänger #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Änderungssatz&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1801" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1282" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&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;Marken&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1807" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1284" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1811" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1288" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&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;Lesezeichen&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1814" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1291" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1295" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&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;Zweige&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1297" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1301" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
@@ -101647,7 +101755,7 @@
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed um&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1320" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -101658,38 +101766,38 @@
       <translation />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1775" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1779" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Kopf #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1782" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1786" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Vorgänger #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1793" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Spitze&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1794" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1798" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&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;Änderungssatz&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1825" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&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;Vorgänger&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1831" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -102373,17 +102481,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1814" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
       <source>unknown</source>
       <translation>Unbekannt</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1822" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Repositoryinformationen&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Aktuelle Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Eingepflegte Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Einpflegedatum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Einpflegezeit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Letzter Autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1667" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1670" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Repositoryinformationen&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Aktuelle Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Eingepflegte Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Einpflegedatum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Einpflegezeit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Letzter Autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_empty.ts	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/i18n/eric7_empty.ts	Sun Jul 02 17:39:33 2023 +0200
@@ -1245,6 +1245,16 @@
       <source>type annotation is too long ({0} &gt; {1})</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="76" />
+      <source>'typing.Union' is deprecated, use '|' instead (see PEP 604)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="80" />
+      <source>'typing.{0}' is deprecated, use '{1}' instead (see PEP 585)</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>ApplicationDiagramBuilder</name>
@@ -1678,42 +1688,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
+      <location filename="../Utilities/BackgroundService.py" line="217" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="219" />
+      <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>Restart background client?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Utilities/BackgroundService.py" line="232" />
-      <source>Restart background client?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Utilities/BackgroundService.py" line="233" />
       <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="262" />
+      <location filename="../Utilities/BackgroundService.py" line="261" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="497" />
+      <location filename="../Utilities/BackgroundService.py" line="502" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="506" />
+      <location filename="../Utilities/BackgroundService.py" line="511" />
       <source>Background client disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="507" />
+      <location filename="../Utilities/BackgroundService.py" line="512" />
       <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>
@@ -1776,22 +1786,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>Yes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>No</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>yes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>no</source>
       <translation type="unfinished" />
     </message>
@@ -2206,26 +2216,31 @@
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="97" />
-      <source>Complete {0}-bit Service UUID: {1}</source>
+      <source>Complete {0}-bit Service UUID: {1}{2}</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="99" />
-      <source>Incomplete {0}-bit Service UUID: {1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="110" />
-      <source>Manufacturer ID: 0x{0:x} ({1})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="114" />
+      <source>Incomplete {0}-bit Service UUID: {1}{2}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="107" />
+      <source> - {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="121" />
+      <source>Manufacturer ID: 0x{0:x} - {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="125" />
       <source>Manufacturer ID: 0x{0:x}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="123" />
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="134" />
       <source>Tx Power Level [dBm]: {0}</source>
       <translation type="unfinished" />
     </message>
@@ -2721,17 +2736,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="335" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
       <source>New Bookmark Folder</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="337" />
       <source>Enter title for new bookmark folder:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="343" />
       <source>New Folder</source>
       <translation type="unfinished" />
     </message>
@@ -2835,22 +2850,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="543" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="541" />
       <source>Remove Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="585" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="583" />
       <source>Insert Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="626" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="624" />
       <source>Name Change</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="630" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="628" />
       <source>Address Change</source>
       <translation type="unfinished" />
     </message>
@@ -2886,22 +2901,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="399" />
       <source>Export Bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="403" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
       <source>XBEL bookmarks (*.xbel);;XBEL bookmarks (*.xml);;HTML Bookmarks (*.html)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="429" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="427" />
       <source>Exporting Bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="430" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="428" />
       <source>Error exporting bookmarks to &lt;b&gt;{0}&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
@@ -3159,231 +3174,231 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="238" />
+      <location filename="../UI/Browser.py" line="239" />
       <source>Show Hidden Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="244" />
+      <location filename="../UI/Browser.py" line="245" />
       <source>New</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="246" />
+      <location filename="../UI/Browser.py" line="247" />
       <source>Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="249" />
+      <location filename="../UI/Browser.py" line="250" />
       <source>File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="323" />
-      <location filename="../UI/Browser.py" line="285" />
-      <location filename="../UI/Browser.py" line="255" />
+      <location filename="../UI/Browser.py" line="324" />
+      <location filename="../UI/Browser.py" line="286" />
+      <location filename="../UI/Browser.py" line="256" />
       <source>Open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="258" />
+      <location filename="../UI/Browser.py" line="259" />
       <source>Run Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="622" />
-      <location filename="../UI/Browser.py" line="614" />
-      <location filename="../UI/Browser.py" line="604" />
-      <location filename="../UI/Browser.py" line="595" />
-      <location filename="../UI/Browser.py" line="305" />
-      <location filename="../UI/Browser.py" line="262" />
-      <source>Show Mime-Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="266" />
-      <source>Refresh Source File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="361" />
-      <location filename="../UI/Browser.py" line="309" />
-      <location filename="../UI/Browser.py" line="271" />
-      <source>Copy Path to Clipboard</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="369" />
-      <location filename="../UI/Browser.py" line="329" />
-      <location filename="../UI/Browser.py" line="317" />
-      <location filename="../UI/Browser.py" line="279" />
-      <source>Delete</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="288" />
-      <source>Open in Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="292" />
-      <source>Open in Icon Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="296" />
-      <source>Open in Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="300" />
-      <source>Open in PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="388" />
-      <location filename="../UI/Browser.py" line="379" />
-      <location filename="../UI/Browser.py" line="335" />
-      <source>New toplevel directory...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="339" />
-      <source>Add as toplevel directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="343" />
-      <source>Remove from toplevel</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="348" />
-      <source>Refresh directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="353" />
-      <source>Find in this directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="357" />
-      <source>Find &amp;&amp; Replace in this directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="373" />
-      <source>Goto</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="491" />
-      <source>Line {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="596" />
-      <source>The mime type of the file could not be determined.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="615" />
-      <location filename="../UI/Browser.py" line="605" />
-      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="623" />
+      <location filename="../UI/Browser.py" line="615" />
+      <location filename="../UI/Browser.py" line="605" />
+      <location filename="../UI/Browser.py" line="596" />
+      <location filename="../UI/Browser.py" line="306" />
+      <location filename="../UI/Browser.py" line="263" />
+      <source>Show Mime-Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="267" />
+      <source>Refresh Source File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="362" />
+      <location filename="../UI/Browser.py" line="310" />
+      <location filename="../UI/Browser.py" line="272" />
+      <source>Copy Path to Clipboard</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="370" />
+      <location filename="../UI/Browser.py" line="330" />
+      <location filename="../UI/Browser.py" line="318" />
+      <location filename="../UI/Browser.py" line="280" />
+      <source>Delete</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="289" />
+      <source>Open in Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="293" />
+      <source>Open in Icon Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="297" />
+      <source>Open in Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="301" />
+      <source>Open in PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="389" />
+      <location filename="../UI/Browser.py" line="380" />
+      <location filename="../UI/Browser.py" line="336" />
+      <source>New toplevel directory...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="340" />
+      <source>Add as toplevel directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="344" />
+      <source>Remove from toplevel</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="349" />
+      <source>Refresh directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="354" />
+      <source>Find in this directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="358" />
+      <source>Find &amp;&amp; Replace in this directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="374" />
+      <source>Goto</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="492" />
+      <source>Line {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="597" />
+      <source>The mime type of the file could not be determined.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="616" />
+      <location filename="../UI/Browser.py" line="606" />
+      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="624" />
       <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="731" />
+      <location filename="../UI/Browser.py" line="732" />
       <source>New toplevel directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="967" />
-      <location filename="../UI/Browser.py" line="955" />
-      <location filename="../UI/Browser.py" line="946" />
-      <source>New Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="947" />
-      <source>Name for new directory:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="994" />
-      <location filename="../UI/Browser.py" line="956" />
-      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="968" />
+      <location filename="../UI/Browser.py" line="956" />
+      <location filename="../UI/Browser.py" line="947" />
+      <source>New Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="948" />
+      <source>Name for new directory:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="995" />
+      <location filename="../UI/Browser.py" line="957" />
+      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="969" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1006" />
-      <location filename="../UI/Browser.py" line="993" />
-      <location filename="../UI/Browser.py" line="984" />
-      <source>New File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="985" />
-      <source>Name for new file:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1007" />
+      <location filename="../UI/Browser.py" line="994" />
+      <location filename="../UI/Browser.py" line="985" />
+      <source>New File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="986" />
+      <source>Name for new file:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1008" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1103" />
-      <location filename="../UI/Browser.py" line="1045" />
-      <location filename="../UI/Browser.py" line="1035" />
-      <source>Delete File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1036" />
-      <source>Do you really want to delete this file?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1104" />
       <location filename="../UI/Browser.py" line="1046" />
+      <location filename="../UI/Browser.py" line="1036" />
+      <source>Delete File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1037" />
+      <source>Do you really want to delete this file?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1105" />
+      <location filename="../UI/Browser.py" line="1047" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1071" />
-      <location filename="../UI/Browser.py" line="1061" />
-      <source>Delete Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1062" />
-      <source>Do you really want to delete this directory?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1072" />
+      <location filename="../UI/Browser.py" line="1062" />
+      <source>Delete Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1063" />
+      <source>Do you really want to delete this directory?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1073" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1092" />
-      <source>Delete Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1093" />
+      <source>Delete Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1094" />
       <source>Do you really want to delete these files?</source>
       <translation type="unfinished" />
     </message>
@@ -5024,27 +5039,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1210" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1221" />
       <source>{0} (ignored)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1285" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1296" />
       <source>No issues found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1289" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1300" />
       <source>No files found (check your ignore list).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2891" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2935" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2892" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2936" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -5530,6 +5545,16 @@
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Exempted 'typing' symbols:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Enter deprecated symbols of the 'typing' module exempted from PEP-585 checking separated by space</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
       <source>Security</source>
       <translation type="unfinished" />
     </message>
@@ -6403,7 +6428,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="174" />
+      <location filename="../Utilities/__init__.py" line="176" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation type="unfinished" />
     </message>
@@ -7525,374 +7550,377 @@
   <context>
     <name>ConfigurationWidget</name>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="174" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="175" />
       <source>Application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="180" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="181" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="182" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="183" />
       <source>Cooperation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="189" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="190" />
       <source>Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="196" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="197" />
       <source>Email</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="203" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="204" />
       <source>Graphics</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="865" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="210" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="866" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="211" />
       <source>Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="946" />
       <location filename="../Preferences/ConfigurationDialog.py" line="914" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="882" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="851" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="754" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="639" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="217" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="883" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="852" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="755" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="640" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="218" />
       <source>Icons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="223" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="224" />
       <source>IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="225" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="226" />
       <source>Log-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="232" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="233" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="239" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="240" />
       <source>MIME-Types</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="768" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="246" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="769" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="247" />
       <source>Network</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="253" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="254" />
       <source>Notifications</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="896" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="260" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="897" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="261" />
       <source>PDF Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="267" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="928" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="268" />
       <source>Python Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="274" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="275" />
       <source>Plugin Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="775" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="653" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="281" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="776" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="654" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="282" />
       <source>Printer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="288" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="289" />
       <source>Python</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="294" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="295" />
       <source>Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="782" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="296" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="783" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="297" />
       <source>Security</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="303" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="304" />
       <source>Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="309" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="310" />
       <source>Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="311" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="312" />
       <source>Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="834" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="318" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="835" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="319" />
       <source>Tray Starter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="325" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="326" />
       <source>Version Control Systems</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="332" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="333" />
       <source>Debugger</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="667" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="374" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="339" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="668" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="375" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="340" />
       <source>General</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="346" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="347" />
       <source>Python3</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="660" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="353" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="661" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="354" />
       <source>Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="360" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="361" />
       <source>APIs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="367" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="368" />
       <source>Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="674" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="381" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="675" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="382" />
       <source>Filehandling</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="681" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="388" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="682" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="389" />
       <source>Searching</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="817" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="688" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="617" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="395" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="818" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="689" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="618" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="396" />
       <source>Spell checking</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="695" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="402" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="696" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="403" />
       <source>Style</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="409" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="410" />
       <source>Code Checkers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="702" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="416" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="703" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="417" />
       <source>Typing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="423" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="424" />
       <source>Exporters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="430" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="431" />
       <source>Autocompletion</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="458" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="437" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="459" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="438" />
       <source>QScintilla</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="514" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="465" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="444" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="515" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="466" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="445" />
       <source>Jedi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="451" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="452" />
       <source>Calltips</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="709" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="472" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="710" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="473" />
       <source>Highlighters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="716" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="479" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="717" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="480" />
       <source>Filetype Associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="723" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="486" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="724" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="487" />
       <source>Styles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="730" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="493" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="731" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="494" />
       <source>Keywords</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="737" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="500" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="738" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="501" />
       <source>Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="507" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="508" />
       <source>Mouse Click Handlers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="520" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="521" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="789" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="522" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="790" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="523" />
       <source>Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="529" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="530" />
       <source>Help Viewers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="550" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="536" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="551" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="537" />
       <source>Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="543" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="544" />
       <source>Project Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="557" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="558" />
       <source>Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="953" />
       <location filename="../Preferences/ConfigurationDialog.py" line="921" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="889" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="858" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="761" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="646" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="571" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="564" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="890" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="859" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="762" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="647" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="572" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="565" />
       <source>Interface</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="578" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="579" />
       <source>Viewmanager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="589" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="590" />
       <source>Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="796" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="596" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="797" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="597" />
       <source>Appearance</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="803" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="603" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="804" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="604" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="810" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="610" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="811" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="611" />
       <source>VirusTotal Interface</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1007" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1039" />
       <source>Enter search text...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1080" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1112" />
       <source>Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1086" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1118" />
       <source>Please select an entry of the list 
 to display the configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1163" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1195" />
       <source>Configuration Page Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1164" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1196" />
       <source>&lt;p&gt;The configuration page &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -10336,26 +10364,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Add allowed host</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
       <source>Enter the IP address of an allowed host</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
+      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
-      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
       <source>Edit allowed host</source>
       <translation type="unfinished" />
     </message>
@@ -11841,42 +11869,42 @@
   <context>
     <name>DownloadManager</name>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="111" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="113" />
       <source>Open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="117" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="119" />
       <source>Cancel</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="122" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="124" />
       <source>Open Containing Folder</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="125" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="127" />
       <source>Go to Download Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="126" />
-      <source>Copy Download Link</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/Download/DownloadManager.py" line="128" />
+      <source>Copy Download Link</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="130" />
       <source>Select All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="137" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="139" />
       <source>Remove From List</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="172" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="174" />
       <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
       <translation type="unfinished">
@@ -11884,41 +11912,41 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="264" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="266" />
       <source>Suspicuous URL detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="265" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="267" />
       <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="500" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="502" />
       <source>Downloads finished</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="501" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="503" />
       <source>All files have been downloaded.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/Download/DownloadManager.ui" line="0" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="586" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="509" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="588" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="511" />
       <source>Download Manager</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="619" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="621" />
       <source>{0}% of %n file(s) ({1}) {2}</source>
       <translation type="unfinished">
         <numerusform />
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="627" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="629" />
       <source>{0}% - Download Manager</source>
       <translation type="unfinished" />
     </message>
@@ -12159,7 +12187,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3335" />
+      <location filename="../QScintilla/Editor.py" line="3334" />
       <location filename="../QScintilla/Editor.py" line="428" />
       <location filename="../QScintilla/Editor.py" line="413" />
       <source>Open File</source>
@@ -12231,7 +12259,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9154" />
+      <location filename="../QScintilla/Editor.py" line="9152" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12504,7 +12532,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8272" />
+      <location filename="../QScintilla/Editor.py" line="8270" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation type="unfinished" />
@@ -12565,7 +12593,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5932" />
+      <location filename="../QScintilla/Editor.py" line="5929" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation type="unfinished" />
@@ -12757,398 +12785,398 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3277" />
+      <location filename="../QScintilla/Editor.py" line="3276" />
       <source>File Modified</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3278" />
+      <location filename="../QScintilla/Editor.py" line="3277" />
       <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="3336" />
+      <location filename="../QScintilla/Editor.py" line="3335" />
       <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="3511" />
+      <location filename="../QScintilla/Editor.py" line="3492" />
+      <location filename="../QScintilla/Editor.py" line="3454" />
+      <source>Save File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="3455" />
+      <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="3512" />
-      <location filename="../QScintilla/Editor.py" line="3493" />
-      <location filename="../QScintilla/Editor.py" line="3455" />
-      <source>Save File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3456" />
-      <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="3513" />
       <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="3649" />
+      <location filename="../QScintilla/Editor.py" line="3646" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3650" />
+      <location filename="../QScintilla/Editor.py" line="3647" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5106" />
+      <location filename="../QScintilla/Editor.py" line="5103" />
       <source>Autocompletion</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5107" />
+      <location filename="../QScintilla/Editor.py" line="5104" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5235" />
+      <location filename="../QScintilla/Editor.py" line="5232" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5236" />
+      <location filename="../QScintilla/Editor.py" line="5233" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5528" />
+      <location filename="../QScintilla/Editor.py" line="5525" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5529" />
+      <location filename="../QScintilla/Editor.py" line="5526" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5936" />
+      <location filename="../QScintilla/Editor.py" line="5933" />
       <source>Disable breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6315" />
+      <location filename="../QScintilla/Editor.py" line="6312" />
       <source>Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6316" />
+      <location filename="../QScintilla/Editor.py" line="6313" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6391" />
-      <location filename="../QScintilla/Editor.py" line="6383" />
+      <location filename="../QScintilla/Editor.py" line="6388" />
+      <location filename="../QScintilla/Editor.py" line="6380" />
       <source>Show Code Coverage Annotations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6384" />
+      <location filename="../QScintilla/Editor.py" line="6381" />
       <source>All lines have been covered.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6392" />
+      <location filename="../QScintilla/Editor.py" line="6389" />
       <source>There is no coverage file available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6496" />
+      <location filename="../QScintilla/Editor.py" line="6493" />
       <source>Profile Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6497" />
+      <location filename="../QScintilla/Editor.py" line="6494" />
       <source>Please select a profile file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6658" />
-      <location filename="../QScintilla/Editor.py" line="6652" />
+      <location filename="../QScintilla/Editor.py" line="6655" />
+      <location filename="../QScintilla/Editor.py" line="6649" />
       <source>Syntax Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6659" />
+      <location filename="../QScintilla/Editor.py" line="6656" />
       <source>No syntax error message available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
-      <location filename="../QScintilla/Editor.py" line="6864" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
+      <location filename="../QScintilla/Editor.py" line="6863" />
       <source>Warning</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
       <source>No warning messages available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6934" />
+      <location filename="../QScintilla/Editor.py" line="6933" />
       <source>Style: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6937" />
+      <location filename="../QScintilla/Editor.py" line="6936" />
       <source>Warning: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6944" />
+      <location filename="../QScintilla/Editor.py" line="6943" />
       <source>Error: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Macro Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Select a macro name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7077" />
+      <location filename="../QScintilla/Editor.py" line="7076" />
       <source>Load macro file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7123" />
-      <location filename="../QScintilla/Editor.py" line="7079" />
+      <location filename="../QScintilla/Editor.py" line="7122" />
+      <location filename="../QScintilla/Editor.py" line="7078" />
       <source>Macro files (*.macro)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7100" />
+      <location filename="../QScintilla/Editor.py" line="7090" />
+      <source>Error loading macro</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7091" />
+      <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="7101" />
-      <location filename="../QScintilla/Editor.py" line="7091" />
-      <source>Error loading macro</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7092" />
-      <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="7102" />
       <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="7121" />
+      <location filename="../QScintilla/Editor.py" line="7120" />
       <source>Save macro file</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7138" />
+      <source>Save macro</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7139" />
-      <source>Save macro</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7140" />
       <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="7154" />
+      <source>Error saving macro</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7155" />
-      <source>Error saving macro</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7156" />
       <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="7168" />
+      <source>Start Macro Recording</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7169" />
-      <source>Start Macro Recording</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7170" />
       <source>Macro recording is already active. Start new?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7195" />
+      <source>Macro Recording</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7196" />
-      <source>Macro Recording</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7348" />
+      <location filename="../QScintilla/Editor.py" line="7346" />
       <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="7354" />
+      <location filename="../QScintilla/Editor.py" line="7352" />
       <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="7361" />
+      <location filename="../QScintilla/Editor.py" line="7359" />
       <source>File changed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7411" />
+      <location filename="../QScintilla/Editor.py" line="7409" />
       <source>{0} (ro)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7716" />
+      <location filename="../QScintilla/Editor.py" line="7714" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7717" />
+      <location filename="../QScintilla/Editor.py" line="7715" />
       <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="7735" />
+      <source>Resources</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7737" />
-      <source>Resources</source>
+      <source>Add file...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7738" />
+      <source>Add files...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="7739" />
-      <source>Add file...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7740" />
-      <source>Add files...</source>
+      <source>Add aliased file...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="7741" />
-      <source>Add aliased file...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7746" />
+      <location filename="../QScintilla/Editor.py" line="7744" />
       <source>Add resource frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7765" />
+      <location filename="../QScintilla/Editor.py" line="7763" />
       <source>Add file resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7777" />
       <source>Add file resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7797" />
+      <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7795" />
       <source>Add aliased file resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7804" />
+      <location filename="../QScintilla/Editor.py" line="7802" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7879" />
+      <location filename="../QScintilla/Editor.py" line="7877" />
       <source>Package Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7880" />
+      <location filename="../QScintilla/Editor.py" line="7878" />
       <source>Include class attributes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7900" />
+      <location filename="../QScintilla/Editor.py" line="7898" />
       <source>Imports Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7901" />
+      <location filename="../QScintilla/Editor.py" line="7899" />
       <source>Include imports from external modules?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7920" />
+      <location filename="../QScintilla/Editor.py" line="7918" />
       <source>Application Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7921" />
+      <location filename="../QScintilla/Editor.py" line="7919" />
       <source>Include module names?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="8274" />
+      <source>Add to dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8276" />
-      <source>Add to dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8696" />
+      <location filename="../QScintilla/Editor.py" line="8694" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8697" />
+      <location filename="../QScintilla/Editor.py" line="8695" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8790" />
+      <location filename="../QScintilla/Editor.py" line="8788" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8791" />
+      <location filename="../QScintilla/Editor.py" line="8789" />
       <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="8887" />
+      <location filename="../QScintilla/Editor.py" line="8885" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8893" />
+      <location filename="../QScintilla/Editor.py" line="8891" />
       <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="8961" />
+      <location filename="../QScintilla/Editor.py" line="8959" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8962" />
+      <location filename="../QScintilla/Editor.py" line="8960" />
       <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>
@@ -14765,7 +14793,7 @@
   <context>
     <name>EditorHighlightersPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="144" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="145" />
       <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="51" />
       <source>Alternative</source>
       <translation type="unfinished" />
@@ -20608,8 +20636,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1589" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1573" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1591" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1575" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="196" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -20620,7 +20648,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1674" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1676" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="203" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -20671,8 +20699,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1673" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1632" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1634" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="363" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
@@ -20783,17 +20811,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1574" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1576" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1588" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1590" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1633" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1635" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -21408,27 +21436,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="72" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="67" />
       <source>{0} wants to use desktop notifications.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="98" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="92" />
       <source>Remember</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="100" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="94" />
       <source>Allow</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="101" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="95" />
       <source>Deny</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="126" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="120" />
       <source>{0} wants to use an unknown feature.</source>
       <translation type="unfinished" />
     </message>
@@ -21645,7 +21673,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="486" />
+      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="487" />
       <source>Error loading feed</source>
       <translation type="unfinished" />
     </message>
@@ -22837,7 +22865,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1643" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="213" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -22858,158 +22886,158 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="281" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="283" />
       <source>Creating Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="296" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="298" />
       <source>Adding files to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="305" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
       <source>Initial commit to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="333" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="335" />
       <source>Cloning project from a Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="428" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="429" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="485" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="546" />
       <source>Switch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="545" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="547" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="575" />
       <source>Synchronizing with the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="619" />
       <source>Adding files/directories to the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="691" />
       <source>Removing files/directories from the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="754" />
       <source>Renaming {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="876" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="929" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="918" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="919" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="930" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="936" />
       <source>Reverting changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="988" />
       <source>Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1012" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1016" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1228" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1232" />
       <source>Git Command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1330" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1336" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1334" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1340" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1346" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1352" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1357" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1356" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1362" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1361" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1367" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1366" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1372" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1371" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1377" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1383" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -23019,459 +23047,459 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1458" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1517" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1500" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1506" />
       <source>Git Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1507" />
       <source>&lt;p&gt;Copying the directory &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="../Plugins/VcsPlugins/vcsGit/git.py" line="1518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
       <source>&lt;p&gt;Copying the file &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="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2726" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1645" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1707" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1694" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1683" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1713" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1689" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1708" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1714" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1760" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1766" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1796" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1802" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1835" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1841" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1869" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1894" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1924" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1951" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1957" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1954" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1960" />
       <source>Apply patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2034" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2040" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2284" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2326" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2347" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2348" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2376" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2378" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2395" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2430" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2459" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2525" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2546" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2828" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2672" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2725" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2771" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2754" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2736" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2738" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2755" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2772" />
       <source>&lt;p&gt;The 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="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2791" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2819" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2793" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2817" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3161" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2991" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3047" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3048" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3183" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3240" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3271" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3294" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3318" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3396" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3598" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3436" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3599" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3559" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3510" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3437" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3509" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3469" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3483" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3558" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3547" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3548" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3573" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3609" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3610" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3620" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3647" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3707" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3729" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3798" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3804" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3815" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3821" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3839" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3905" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3945" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4012" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
-      <source>All</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
-      <source>Submodule Path</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
+      <source>All</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4029" />
+      <source>Submodule Path</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4030" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4079" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4112" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4143" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4266" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -23884,12 +23912,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="213" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="214" />
       <source>Changed by skipped commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="215" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="216" />
       <source>Commit cannot be skipped</source>
       <translation type="unfinished" />
     </message>
@@ -24988,7 +25016,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1896" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1891" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="340" />
       <source>Branch</source>
       <translation type="unfinished" />
@@ -25009,9 +25037,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1957" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1868" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1952" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1840" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="356" />
       <source>Switch</source>
       <translation type="unfinished" />
@@ -25022,7 +25050,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1979" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="364" />
       <source>Show Short Log</source>
       <translation type="unfinished" />
@@ -25043,125 +25071,125 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="662" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="664" />
+      <source>Could not start the git executable.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="667" />
-      <source>Could not start the git executable.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="670" />
       <source>Git Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="799" />
       <source>{0} ({1}%)</source>
       <comment>action, confidence</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="869" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="874" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="870" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1345" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1342" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1359" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1356" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1800" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1958" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1806" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1953" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1801" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1985" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1980" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841" />
       <source>Select a branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1935" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1897" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892" />
       <source>Select a default branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1934" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1929" />
       <source>Branch &amp; Switch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2159" />
       <source>Find Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2160" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2209" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2204" />
       <source>Differences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2221" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2216" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2237" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2232" />
       <source>Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2262" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2257" />
       <source>There is no difference.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2429" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2412" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2424" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2389" />
       <source>Save Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2391" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2408" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2425" />
       <source>&lt;p&gt;The patch 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>
@@ -28563,21 +28591,21 @@
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="383" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="384" />
       <source>%n file(s) changed</source>
       <translation type="unfinished">
         <numerusform />
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="386" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="387" />
       <source>%n line(s) inserted</source>
       <translation type="unfinished">
         <numerusform />
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="390" />
       <source>%n line(s) deleted</source>
       <translation type="unfinished">
         <numerusform />
@@ -28740,7 +28768,7 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195" />
       <source>Commit</source>
       <translation type="unfinished" />
@@ -28771,7 +28799,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210" />
       <source>Add</source>
       <translation type="unfinished" />
@@ -28802,7 +28830,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226" />
       <source>Differences</source>
       <translation type="unfinished" />
@@ -28823,7 +28851,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244" />
       <source>Revert</source>
       <translation type="unfinished" />
@@ -28834,7 +28862,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253" />
       <source>Forget Missing</source>
       <translation type="unfinished" />
@@ -28845,7 +28873,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="837" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257" />
       <source>Restore Missing</source>
       <translation type="unfinished" />
@@ -28892,98 +28920,98 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="605" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="468" />
       <source>all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="676" />
       <source>There are no entries selected to be committed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="719" />
       <source>There are no unversioned entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="741" />
-      <source>Stage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="742" />
+      <source>Stage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="743" />
       <source>There are no stageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="765" />
-      <source>Unstage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="766" />
+      <source>Unstage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="767" />
       <source>There are no unstageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="791" />
       <source>There are no missing entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810" />
       <source>There are no uncommitted, unstaged changes available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="874" />
       <source>There are no uncommitted changes available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="923" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="899" />
-      <source>Working Tree to Staging Area</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
-      <source>Staging Area to HEAD Commit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="924" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
+      <source>Working Tree to Staging Area</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="901" />
+      <source>Staging Area to HEAD Commit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="925" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="902" />
       <source>Working Tree to HEAD Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="928" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="905" />
-      <source>Differences Side-by-Side</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="929" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="906" />
+      <source>Differences Side-by-Side</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="907" />
       <source>Select the compare method.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1239" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1240" />
       <source>Revert selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1241" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1242" />
       <source>Revert hunk</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1247" />
       <source>Are you sure you want to revert the selected changes?</source>
       <translation type="unfinished" />
     </message>
@@ -29639,12 +29667,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="336" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="337" />
       <source>current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="340" />
       <source>checked out in linked worktree</source>
       <translation type="unfinished" />
     </message>
@@ -30130,101 +30158,101 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="516" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="533" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="552" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="535" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="553" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="576" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="577" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="578" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="612" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="595" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="597" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="614" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="634" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="636" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="642" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="669" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="723" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="699" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="701" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="725" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="750" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="762" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="752" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="763" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -30280,27 +30308,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="199" />
+      <location filename="../Globals/__init__.py" line="197" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="202" />
+      <location filename="../Globals/__init__.py" line="200" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="205" />
+      <location filename="../Globals/__init__.py" line="203" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="208" />
+      <location filename="../Globals/__init__.py" line="206" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="211" />
+      <location filename="../Globals/__init__.py" line="209" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -31098,37 +31126,37 @@
   <context>
     <name>HelpSearchWidget</name>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="166" />
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
       <source>Open Link</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="168" />
-      <source>Open Link in New Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
-      <source>Open Link in Background Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="171" />
-      <source>Open Link in New Tab</source>
+      <source>Open Link in New Page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="172" />
-      <source>Open Link in Background Tab</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="173" />
-      <source>Open Link in New Window</source>
+      <source>Open Link in Background Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="174" />
+      <source>Open Link in New Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="175" />
+      <source>Open Link in Background Tab</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="176" />
+      <source>Open Link in New Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="178" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -31453,104 +31481,104 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="442" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="443" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Qt6 Documentation</source>
+      <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>PyQt5 Documentation</source>
+      <source>Qt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>PyQt6 Documentation</source>
+      <source>Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PySide2 Documentation</source>
+      <source>PyQt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
+      <source>PyQt6 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="506" />
-      <source>Open HTML File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <source>Open HTML File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
       <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="699" />
       <source>Help Engine</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="723" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="732" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="734" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="759" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="762" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="767" />
       <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="860" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="840" />
       <source>Clear History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="968" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="970" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1026" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1028" />
       <source>Filtered by: </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1062" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1057" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1064" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
       <source>Unfiltered</source>
       <translation type="unfinished" />
     </message>
@@ -32950,446 +32978,446 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="311" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="313" />
       <source>Creating Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="330" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="332" />
       <source>Initial commit to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="368" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="370" />
       <source>Cloning project from a Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="468" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="470" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="469" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="471" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="531" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="533" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="623" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="625" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="653" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="708" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="754" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="756" />
       <source>Renaming {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="879" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="881" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="927" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="916" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="917" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="928" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="934" />
       <source>Reverting changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="977" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="979" />
       <source>Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1017" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1007" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1009" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1008" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1010" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1020" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1021" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1023" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1044" />
       <source>Current branch tip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1216" />
       <source>Mercurial command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1373" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1377" />
       <source>Copying {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1612" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1600" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1591" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1604" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1595" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1613" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1617" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2274" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2263" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2253" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1688" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2267" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2257" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1692" />
       <source>Apply changegroups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1691" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1695" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1733" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1875" />
       <source>Marking as 'unresolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1877" />
       <source>Marking as 'resolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1895" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1899" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1922" />
       <source>Creating branch in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1930" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
       <source>Showing current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2022" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2026" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2035" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2039" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2050" />
       <source>Showing aliases for remote repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2061" />
       <source>Recovering from interrupted transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2068" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2072" />
       <source>Identifying project directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2114" />
       <source>Create .hgignore file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2111" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2115" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2212" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2186" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2216" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2190" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2172" />
       <source>Create changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2170" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2174" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2187" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2191" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Preview changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2255" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2259" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2232" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2264" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2268" />
       <source>Shall the working directory be updated?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2300" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2320" />
       <source>Mercurial Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
       <source>Removing files from the Mercurial repository only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2383" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2364" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2387" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2368" />
       <source>Backing out changeset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2365" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
       <source>No revision given. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2403" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2398" />
+      <source>Rollback last transaction</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2399" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2394" />
-      <source>Rollback last transaction</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2465" />
       <source>Import Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2513" />
       <source>Export Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2553" />
       <source>Change Phase</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2607" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2646" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2656" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2662" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2666" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2685" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2689" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2703" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2700" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2704" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2789" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2769" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2793" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2762" />
       <source>Add Sub-repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2828" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2759" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2832" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2774" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2846" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2790" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2850" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2794" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2827" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2813" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2849" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2831" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2817" />
       <source>Remove Sub-repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2818" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3062" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2925" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3066" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2929" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2930" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3063" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3067" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3179" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3183" />
       <source>Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3195" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3199" />
       <source>Delete Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3200" />
       <source>Select the bookmark to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3210" />
       <source>Delete Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3235" />
       <source>Rename Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3268" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3272" />
       <source>Move Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3341" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3345" />
       <source>Pull Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3342" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
       <source>Select the bookmark to be pulled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3354" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3358" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3380" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3384" />
       <source>Push Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3385" />
       <source>Select the bookmark to be push:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3396" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3400" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
@@ -34232,42 +34260,42 @@
   <context>
     <name>HgClient</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="91" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="98" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="140" />
-      <source>Did not receive the 'hello' message.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="142" />
-      <source>Received data on unexpected channel.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="147" />
+      <source>Did not receive the 'hello' message.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="149" />
+      <source>Received data on unexpected channel.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="154" />
       <source>Bad 'hello' message, expected 'capabilities: ' but got '{0}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="152" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="159" />
       <source>'capabilities' message did not contain any capability.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="168" />
       <source>Bad 'hello' message, expected 'encoding: ' but got '{0}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="166" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="173" />
       <source>'encoding' message did not contain any encoding.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="377" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="385" />
       <source>For message see output dialog.</source>
       <translation type="unfinished" />
     </message>
@@ -35676,7 +35704,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2690" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2686" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="0" />
       <source>Differences</source>
       <translation type="unfinished" />
@@ -35807,7 +35835,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2150" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2146" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
@@ -35864,8 +35892,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2244" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2240" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2223" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343" />
       <source>Switch</source>
       <translation type="unfinished" />
@@ -35896,8 +35924,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2362" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1562" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2358" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1558" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371" />
       <source>Pull Changes</source>
       <translation type="unfinished" />
@@ -35954,7 +35982,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2501" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="424" />
       <source>Apply Changegroup</source>
       <translation type="unfinished" />
@@ -35985,7 +36013,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2408" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2404" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="454" />
       <source>Strip Changesets</source>
       <translation type="unfinished" />
@@ -36006,117 +36034,117 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="889" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="866" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="886" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="837" />
       <source>Mercurial Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1210" />
       <source>{0} (large file)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1472" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1468" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1479" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1641" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1560" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1556" />
       <source>Pull Selected Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2409" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2363" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2245" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2151" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2498" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2405" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2359" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2147" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2224" />
       <source>Select bookmark to switch to (leave empty to use revision):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2273" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2269" />
       <source>Define Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2274" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2270" />
       <source>Enter bookmark name for changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2303" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2299" />
       <source>Move Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2300" />
       <source>Select the bookmark to be moved  to changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2637" />
       <source>Find Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2638" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2689" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2685" />
       <source>Generating differences ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2701" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2697" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2713" />
       <source>Diff to Parent {0}{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2740" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2736" />
       <source>There is no difference.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2891" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2875" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2857" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2853" />
       <source>Save Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2859" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2855" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2876" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2872" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2892" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2888" />
       <source>&lt;p&gt;The patch 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>
@@ -40985,22 +41013,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="85" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -45731,9 +45759,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <location filename="../Network/IRC/IrcWidget.py" line="266" />
       <location filename="../Network/IRC/IrcWidget.py" line="261" />
       <location filename="../Network/IRC/IrcWidget.py" line="254" />
@@ -45768,260 +45796,260 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <source>Server found,connecting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
       <source>Connected,logging in...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
       <source>Server disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="607" />
+      <source>Message Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="608" />
-      <source>Message Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="609" />
       <source>Unknown message received from server:&lt;br/&gt;{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1032" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1022" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1014" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1006" />
-      <location filename="../Network/IRC/IrcWidget.py" line="651" />
-      <location filename="../Network/IRC/IrcWidget.py" line="643" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1030" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1020" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1012" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1004" />
+      <location filename="../Network/IRC/IrcWidget.py" line="650" />
+      <location filename="../Network/IRC/IrcWidget.py" line="642" />
       <source>CTCP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="644" />
+      <location filename="../Network/IRC/IrcWidget.py" line="643" />
       <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="652" />
+      <location filename="../Network/IRC/IrcWidget.py" line="651" />
       <source>Received unknown CTCP-{0} response from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="678" />
+      <location filename="../Network/IRC/IrcWidget.py" line="677" />
       <source>Notice</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="688" />
+      <location filename="../Network/IRC/IrcWidget.py" line="687" />
       <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="692" />
+      <location filename="../Network/IRC/IrcWidget.py" line="691" />
       <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="696" />
+      <location filename="../Network/IRC/IrcWidget.py" line="695" />
       <source>Mode</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="704" />
+      <location filename="../Network/IRC/IrcWidget.py" line="703" />
       <source>You have left channel {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="716" />
+      <location filename="../Network/IRC/IrcWidget.py" line="715" />
       <source>You are now known as {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="722" />
+      <location filename="../Network/IRC/IrcWidget.py" line="721" />
       <source>User {0} is now known as {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="728" />
+      <location filename="../Network/IRC/IrcWidget.py" line="727" />
       <source>Received PONG from {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="733" />
+      <location filename="../Network/IRC/IrcWidget.py" line="732" />
       <source>Server Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="767" />
+      <location filename="../Network/IRC/IrcWidget.py" line="765" />
       <source>Error</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="780" />
+      <source>Welcome</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="782" />
-      <source>Welcome</source>
+      <source>Support</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="784" />
-      <source>Support</source>
+      <source>User</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="786" />
-      <source>User</source>
+      <source>MOTD</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="788" />
-      <source>MOTD</source>
+      <source>Away</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="790" />
-      <source>Away</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="792" />
       <source>Info ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="794" />
+      <source>Message of the day</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="796" />
-      <source>Message of the day</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="798" />
       <source>End of message of the day</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="801" />
+      <location filename="../Network/IRC/IrcWidget.py" line="799" />
       <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="806" />
+      <location filename="../Network/IRC/IrcWidget.py" line="804" />
       <source>Current users on {0}: {1}, max. {2}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="811" />
+      <location filename="../Network/IRC/IrcWidget.py" line="809" />
       <source>Current users on the network: {0}, max. {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="813" />
+      <source>You are no longer marked as being away.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="815" />
-      <source>You are no longer marked as being away.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="817" />
       <source>You have been marked as being away.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="947" />
-      <location filename="../Network/IRC/IrcWidget.py" line="931" />
-      <location filename="../Network/IRC/IrcWidget.py" line="880" />
+      <location filename="../Network/IRC/IrcWidget.py" line="945" />
+      <location filename="../Network/IRC/IrcWidget.py" line="929" />
+      <location filename="../Network/IRC/IrcWidget.py" line="878" />
       <source>SSL Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="881" />
+      <location filename="../Network/IRC/IrcWidget.py" line="879" />
       <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
-      <location filename="../Network/IRC/IrcWidget.py" line="910" />
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
-      <location filename="../Network/IRC/IrcWidget.py" line="897" />
-      <location filename="../Network/IRC/IrcWidget.py" line="889" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
+      <location filename="../Network/IRC/IrcWidget.py" line="908" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
+      <location filename="../Network/IRC/IrcWidget.py" line="895" />
+      <location filename="../Network/IRC/IrcWidget.py" line="887" />
       <source>Socket Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="890" />
+      <location filename="../Network/IRC/IrcWidget.py" line="888" />
       <source>The host was not found. Please check the host name and port settings.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="898" />
+      <location filename="../Network/IRC/IrcWidget.py" line="896" />
       <source>The connection was refused by the peer. Please check the host name and port settings.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
       <source>The SSL handshake failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="911" />
+      <location filename="../Network/IRC/IrcWidget.py" line="909" />
       <source>The following network error occurred:&lt;br/&gt;{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
       <source>A network error occurred.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="932" />
+      <location filename="../Network/IRC/IrcWidget.py" line="930" />
       <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 type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="948" />
+      <location filename="../Network/IRC/IrcWidget.py" line="946" />
       <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1007" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1005" />
       <source>Received Version request from {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1015" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1013" />
       <source>Received CTCP-PING request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1023" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1021" />
       <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1033" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1031" />
       <source>Received unknown CTCP-{0} request from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1049" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1047" />
       <source>{0} ({1})</source>
       <comment>channel name, users count</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1071" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1069" />
       <source>Critical</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1072" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1070" />
       <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
       <source>The given nickname is already in use.</source>
       <translation type="unfinished" />
     </message>
@@ -47032,7 +47060,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/LexerAssociationDialog.py" line="131" />
+      <location filename="../Project/LexerAssociationDialog.py" line="132" />
       <location filename="../Project/LexerAssociationDialog.py" line="45" />
       <source>Alternative</source>
       <translation type="unfinished" />
@@ -48878,13 +48906,13 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="485" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="487" />
       <source>Untitled {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="627" />
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="491" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="629" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="493" />
       <source>{0} (ro)</source>
       <translation type="unfinished" />
     </message>
@@ -52186,317 +52214,317 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2862" />
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
       <source>About</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
+      <source>&amp;About</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2860" />
+      <source>Display information about this software</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2862" />
-      <source>&amp;About</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2864" />
-      <source>Display information about this software</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <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="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About &amp;Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2878" />
+      <location filename="../QScintilla/MiniEditor.py" line="2874" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2881" />
+      <location filename="../QScintilla/MiniEditor.py" line="2877" />
       <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="../QScintilla/MiniEditor.py" line="2890" />
+      <location filename="../QScintilla/MiniEditor.py" line="2886" />
       <source>What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <location filename="../QScintilla/MiniEditor.py" line="2888" />
       <source>&amp;What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2893" />
+      <location filename="../QScintilla/MiniEditor.py" line="2889" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2898" />
+      <location filename="../QScintilla/MiniEditor.py" line="2894" />
       <source>Context sensitive help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2900" />
+      <location filename="../QScintilla/MiniEditor.py" line="2896" />
       <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="../QScintilla/MiniEditor.py" line="2918" />
+      <location filename="../QScintilla/MiniEditor.py" line="2914" />
       <source>Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2920" />
+      <location filename="../QScintilla/MiniEditor.py" line="2916" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2926" />
+      <location filename="../QScintilla/MiniEditor.py" line="2922" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2924" />
       <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="../QScintilla/MiniEditor.py" line="2942" />
+      <location filename="../QScintilla/MiniEditor.py" line="2938" />
       <source>&amp;File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2950" />
       <source>&amp;Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2964" />
+      <location filename="../QScintilla/MiniEditor.py" line="2960" />
       <source>&amp;Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2974" />
+      <location filename="../QScintilla/MiniEditor.py" line="2970" />
       <source>&amp;View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2980" />
+      <location filename="../QScintilla/MiniEditor.py" line="2976" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2985" />
+      <location filename="../QScintilla/MiniEditor.py" line="2981" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2997" />
+      <location filename="../QScintilla/MiniEditor.py" line="2993" />
       <source>File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3009" />
+      <location filename="../QScintilla/MiniEditor.py" line="3005" />
       <source>Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3018" />
+      <location filename="../QScintilla/MiniEditor.py" line="3014" />
       <source>Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3024" />
+      <location filename="../QScintilla/MiniEditor.py" line="3020" />
       <source>View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3030" />
+      <location filename="../QScintilla/MiniEditor.py" line="3026" />
       <source>Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3033" />
+      <location filename="../QScintilla/MiniEditor.py" line="3029" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3046" />
+      <location filename="../QScintilla/MiniEditor.py" line="3042" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3056" />
+      <location filename="../QScintilla/MiniEditor.py" line="3052" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3065" />
+      <location filename="../QScintilla/MiniEditor.py" line="3061" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3074" />
+      <location filename="../QScintilla/MiniEditor.py" line="3070" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3088" />
+      <location filename="../QScintilla/MiniEditor.py" line="3084" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3095" />
+      <location filename="../QScintilla/MiniEditor.py" line="3091" />
       <source>Ready</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <location filename="../QScintilla/MiniEditor.py" line="3166" />
       <source>eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3171" />
+      <location filename="../QScintilla/MiniEditor.py" line="3167" />
       <source>The document has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="3194" />
       <source>Open File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3199" />
+      <location filename="../QScintilla/MiniEditor.py" line="3195" />
       <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/MiniEditor.py" line="3227" />
+      <location filename="../QScintilla/MiniEditor.py" line="3223" />
       <source>File loaded</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <location filename="../QScintilla/MiniEditor.py" line="3304" />
       <source>Save File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3309" />
+      <location filename="../QScintilla/MiniEditor.py" line="3305" />
       <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/MiniEditor.py" line="3315" />
+      <location filename="../QScintilla/MiniEditor.py" line="3311" />
       <source>File saved</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>[*] - {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="3655" />
-      <location filename="../QScintilla/MiniEditor.py" line="3339" />
+      <location filename="../QScintilla/MiniEditor.py" line="3680" />
+      <location filename="../QScintilla/MiniEditor.py" line="3651" />
+      <location filename="../QScintilla/MiniEditor.py" line="3335" />
       <source>Untitled</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
       <source>{0}[*] - {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3650" />
+      <location filename="../QScintilla/MiniEditor.py" line="3646" />
       <source>Printing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3666" />
+      <location filename="../QScintilla/MiniEditor.py" line="3662" />
       <source>Printing completed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3668" />
+      <location filename="../QScintilla/MiniEditor.py" line="3664" />
       <source>Error while printing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3671" />
+      <location filename="../QScintilla/MiniEditor.py" line="3667" />
       <source>Printing aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <location filename="../QScintilla/MiniEditor.py" line="3721" />
       <source>Select all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3726" />
+      <location filename="../QScintilla/MiniEditor.py" line="3722" />
       <source>Deselect all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3739" />
+      <location filename="../QScintilla/MiniEditor.py" line="3735" />
       <source>Languages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3742" />
+      <location filename="../QScintilla/MiniEditor.py" line="3738" />
       <source>No Language</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3760" />
+      <source>Guessed</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3782" />
       <location filename="../QScintilla/MiniEditor.py" line="3764" />
-      <source>Guessed</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3786" />
-      <location filename="../QScintilla/MiniEditor.py" line="3768" />
       <source>Alternatives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3783" />
+      <location filename="../QScintilla/MiniEditor.py" line="3779" />
       <source>Alternatives ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <location filename="../QScintilla/MiniEditor.py" line="3810" />
       <source>Pygments Lexer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3815" />
+      <location filename="../QScintilla/MiniEditor.py" line="3811" />
       <source>Select the Pygments lexer to apply.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4336" />
+      <location filename="../QScintilla/MiniEditor.py" line="4332" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4337" />
+      <location filename="../QScintilla/MiniEditor.py" line="4333" />
       <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>
@@ -52577,564 +52605,604 @@
   <context>
     <name>MiscellaneousChecker</name>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="15" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="16" />
       <source>coding magic comment not found</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="18" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="19" />
       <source>unknown encoding ({0}) found in coding magic comment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="21" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="23" />
       <source>copyright notice not present</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="24" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="26" />
       <source>copyright notice contains invalid author</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="27" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="30" />
       <source>"{0}" is a Python builtin and is being shadowed; consider renaming the variable</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="32" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="35" />
       <source>"{0}" is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="37" />
-      <source>unnecessary generator - rewrite as a list comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="41" />
+      <source>unnecessary generator - rewrite as a list comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="45" />
       <source>unnecessary generator - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="44" />
-      <source>unnecessary generator - rewrite as a dict comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="48" />
-      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
+      <source>unnecessary generator - rewrite as a dict comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="52" />
-      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="56" />
+      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="60" />
       <source>unnecessary {0} call - rewrite as a literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="59" />
-      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="63" />
-      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="67" />
+      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="71" />
       <source>unnecessary {0} call around {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="70" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="74" />
       <source>unnecessary {0} call within {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="73" />
-      <source>unnecessary subscript reversal of iterable within {0}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="77" />
+      <source>unnecessary subscript reversal of iterable within {0}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="81" />
       <source>unnecessary {0} literal - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="80" />
-      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="84" />
-      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
+      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="88" />
-      <source>unnecessary list call - remove the outer call to list()</source>
+      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="92" />
+      <source>unnecessary list call - remove the outer call to list()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="96" />
       <source>unnecessary {0} comprehension - rewrite using {0}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="95" />
-      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="99" />
-      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="103" />
+      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="108" />
       <source>sort keys - '{0}' should be before '{1}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="106" />
-      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="110" />
-      <source>use of 'datetime.datetime.today()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="115" />
-      <source>use of 'datetime.datetime.utcnow()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="120" />
-      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="125" />
-      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="129" />
-      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" />
-      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="112" />
+      <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="117" />
+      <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="122" />
+      <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="127" />
+      <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="131" />
+      <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" />
+      <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" />
-      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
+      <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="143" />
-      <source>use of 'datetime.date()' should be avoided.
-Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <source>multiple decorators were used to declare property '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="148" />
-      <source>use of 'datetime.date.today()' should be avoided.
-Use 'datetime.datetime.now(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="153" />
-      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="158" />
-      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="161" />
-      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="165" />
-      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="169" />
-      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="173" />
-      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="177" />
-      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="152" />
+      <source>use of 'datetime.datetime.today()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="157" />
+      <source>use of 'datetime.datetime.utcnow()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="162" />
+      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" />
+      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" />
+      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" />
+      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="181" />
-      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" />
-      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="188" />
-      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="193" />
-      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="198" />
-      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="202" />
-      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="206" />
-      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="210" />
-      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" />
-      <source>Python does not support the unary prefix increment</source>
+      <source>use of 'datetime.date()' should be avoided.
+Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" />
+      <source>use of 'datetime.date.today()' should be avoided.
+Use 'datetime.datetime.now(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" />
+      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="200" />
+      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" />
+      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="207" />
+      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="212" />
+      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="216" />
+      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="220" />
-      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="225" />
-      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="230" />
-      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="224" />
+      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" />
+      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="231" />
+      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" />
-      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
+      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" />
-      <source>do not call getattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="244" />
-      <source>do not call setattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="247" />
-      <source>do not call assert False since python -O removes these calls</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="251" />
-      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" />
-      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="262" />
-      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="267" />
-      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="272" />
-      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="276" />
-      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" />
+      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" />
+      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="254" />
+      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" />
+      <source>Python does not support the unary prefix increment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="264" />
+      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="269" />
+      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="274" />
+      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="280" />
+      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="285" />
-      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="290" />
-      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="296" />
-      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <source>do not call getattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" />
+      <source>do not call setattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" />
+      <source>do not call assert False since python -O removes these calls</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" />
+      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="301" />
-      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="306" />
-      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" />
-      <source>Function definition does not bind loop variable '{0}'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" />
-      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="322" />
-      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="327" />
-      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
+      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" />
+      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" />
+      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="329" />
+      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" />
-      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" />
-      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="347" />
-      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="352" />
-      <source>Except handlers should only be names of exception classes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="356" />
-      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" />
-      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" />
-      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="372" />
-      <source>unncessary f-string</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" />
-      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" />
-      <source>found {0} formatter</source>
+      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="340" />
+      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="345" />
+      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="350" />
+      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="355" />
+      <source>Function definition does not bind loop variable '{0}'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="359" />
+      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" />
+      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" />
+      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" />
-      <source>format string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="381" />
-      <source>docstring does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="384" />
-      <source>other string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" />
-      <source>format call uses too large index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="390" />
-      <source>format call uses missing keyword ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="393" />
-      <source>format call uses keyword arguments but no named entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="397" />
-      <source>format call uses variable arguments but no numbered entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="401" />
-      <source>format call uses implicit and explicit indexes together</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="405" />
-      <source>format call provides unused index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" />
-      <source>format call provides unused keyword ({0})</source>
+      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" />
+      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="391" />
+      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" />
+      <source>Except handlers should only be names of exception classes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="400" />
+      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="406" />
+      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" />
-      <source>logging statement uses string.format()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="414" />
-      <source>logging statement uses '%'</source>
+      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="417" />
-      <source>logging statement uses '+'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" />
-      <source>logging statement uses f-string</source>
+      <source>unncessary f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="418" />
+      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="423" />
-      <source>logging statement uses 'warn' instead of 'warning'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="426" />
-      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <source>found {0} formatter</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" />
+      <source>format string does contain unindexed parameters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="427" />
+      <source>docstring does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="430" />
-      <source>expected these __future__ imports: {0}; but got none</source>
+      <source>other string does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" />
-      <source>gettext import with alias _ found: {0}</source>
+      <source>format call uses too large index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="436" />
-      <source>print statement found</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" />
-      <source>one element tuple found</source>
+      <source>format call uses missing keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" />
+      <source>format call uses keyword arguments but no named entries</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="440" />
-      <source>mutable default argument of type {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="446" />
-      <source>mutable default argument of function call '{0}'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" />
-      <source>None should not be added at any return if function has no return value except None</source>
+      <source>format call uses variable arguments but no numbered entries</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="447" />
+      <source>format call uses implicit and explicit indexes together</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="451" />
+      <source>format call provides unused index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" />
-      <source>an explicit value at every return should be added if function has a return value except None</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="459" />
-      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <source>format call provides unused keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" />
+      <source>logging statement uses string.format()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="461" />
+      <source>logging statement uses '%'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="464" />
-      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="469" />
-      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <source>logging statement uses '+'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" />
+      <source>logging statement uses f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="470" />
+      <source>logging statement uses 'warn' instead of 'warning'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="474" />
+      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="478" />
+      <source>expected these __future__ imports: {0}; but got none</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="482" />
+      <source>gettext import with alias _ found: {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="486" />
+      <source>print statement found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="488" />
+      <source>one element tuple found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="495" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="492" />
+      <source>mutable default argument of type {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="498" />
+      <source>mutable default argument of function call '{0}'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="502" />
+      <source>None should not be added at any return if function has no return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="507" />
+      <source>an explicit value at every return should be added if function has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="512" />
+      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" />
+      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="523" />
+      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="529" />
       <source>commented code lines should be removed</source>
       <translation type="unfinished" />
     </message>
@@ -56347,103 +56415,103 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="193" />
+      <location filename="../PipInterface/Pip.py" line="195" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="216" />
+      <location filename="../PipInterface/Pip.py" line="220" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="217" />
+      <location filename="../PipInterface/Pip.py" line="221" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="257" />
+      <location filename="../PipInterface/Pip.py" line="261" />
       <source>Install PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="304" />
+      <location filename="../PipInterface/Pip.py" line="308" />
       <source>Repair PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="395" />
+      <location filename="../PipInterface/Pip.py" line="399" />
       <source>Upgrade Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="441" />
+      <location filename="../PipInterface/Pip.py" line="445" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="471" />
+      <location filename="../PipInterface/Pip.py" line="475" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="492" />
+      <location filename="../PipInterface/Pip.py" line="496" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="549" />
-      <location filename="../PipInterface/Pip.py" line="521" />
-      <location filename="../PipInterface/Pip.py" line="512" />
+      <location filename="../PipInterface/Pip.py" line="553" />
+      <location filename="../PipInterface/Pip.py" line="525" />
+      <location filename="../PipInterface/Pip.py" line="516" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="550" />
-      <location filename="../PipInterface/Pip.py" line="513" />
+      <location filename="../PipInterface/Pip.py" line="554" />
+      <location filename="../PipInterface/Pip.py" line="517" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="559" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="912" />
+      <location filename="../PipInterface/Pip.py" line="916" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="938" />
-      <location filename="../PipInterface/Pip.py" line="929" />
+      <location filename="../PipInterface/Pip.py" line="942" />
+      <location filename="../PipInterface/Pip.py" line="933" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="930" />
+      <location filename="../PipInterface/Pip.py" line="934" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="962" />
-      <location filename="../PipInterface/Pip.py" line="955" />
+      <location filename="../PipInterface/Pip.py" line="966" />
+      <location filename="../PipInterface/Pip.py" line="959" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="956" />
+      <location filename="../PipInterface/Pip.py" line="960" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="987" />
-      <location filename="../PipInterface/Pip.py" line="979" />
+      <location filename="../PipInterface/Pip.py" line="991" />
+      <location filename="../PipInterface/Pip.py" line="983" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="980" />
+      <location filename="../PipInterface/Pip.py" line="984" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -56466,12 +56534,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="153" />
+      <location filename="../PipInterface/PipDialog.py" line="154" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="154" />
+      <location filename="../PipInterface/PipDialog.py" line="155" />
       <source>The process {0} could not be started.</source>
       <translation type="unfinished" />
     </message>
@@ -57336,225 +57404,233 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="434" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="435" />
       <source>Getting installed packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="448" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="449" />
       <source>Getting outdated packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1202" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1022" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1009" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="973" />
-      <source>Search PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
-      <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message numerus="yes">
-      <location filename="../PipInterface/PipPackagesWidget.py" line="989" />
-      <source>%n package(s) found.</source>
-      <translation type="unfinished">
-        <numerusform />
-      </translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="996" />
-      <source>Showing first {0} packages found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1015" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
-      <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
-      <source>&lt;p&gt;There were no more results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
+      <source>Search PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="975" />
+      <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message numerus="yes">
+      <location filename="../PipInterface/PipPackagesWidget.py" line="990" />
+      <source>%n package(s) found.</source>
+      <translation type="unfinished">
+        <numerusform />
+      </translation>
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="997" />
+      <source>Showing first {0} packages found.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1016" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1011" />
+      <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1024" />
+      <source>&lt;p&gt;There were no more results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1204" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1222" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1223" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1224" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1225" />
       <source>Install Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1227" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1228" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1230" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1231" />
       <source>Repair Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1237" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1238" />
       <source>Install</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1402" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1239" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1403" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1240" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1242" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1243" />
       <source>Install Local Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1245" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1246" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1252" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1253" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1254" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1255" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1257" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1258" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1260" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1261" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1264" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1265" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1271" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1272" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1273" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1274" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1276" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1277" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1279" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1280" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1282" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1283" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1299" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1300" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1303" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1304" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1307" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1308" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1311" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1312" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1318" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1319" />
       <source>Edit User Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1321" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1322" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1326" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1327" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1545" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1532" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1521" />
-      <source>Edit Configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1546" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1533" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1522" />
+      <source>Edit Configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1547" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1534" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1523" />
       <source>No valid configuration path determined. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1714" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1736" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1735" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1757" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1760" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1862" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1843" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1890" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1865" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1887" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
   </context>
   <context>
+    <name>PipPackagesWindow</name>
+    <message>
+      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <source>Manage Packages</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>PipPage</name>
     <message>
       <location filename="../Preferences/ConfigurationPages/PipPage.py" line="31" />
@@ -58946,7 +59022,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="471" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -60577,8 +60653,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6671" />
-      <location filename="../Project/Project.py" line="6642" />
+      <location filename="../Project/Project.py" line="6668" />
+      <location filename="../Project/Project.py" line="6639" />
       <location filename="../Project/Project.py" line="6593" />
       <location filename="../Project/Project.py" line="4800" />
       <source>Execute Make</source>
@@ -60600,7 +60676,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6648" />
+      <location filename="../Project/Project.py" line="6645" />
       <location filename="../Project/Project.py" line="4819" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
@@ -61120,22 +61196,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6643" />
+      <location filename="../Project/Project.py" line="6640" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6651" />
+      <location filename="../Project/Project.py" line="6648" />
       <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="6656" />
+      <location filename="../Project/Project.py" line="6653" />
       <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="6672" />
+      <location filename="../Project/Project.py" line="6669" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
@@ -63774,7 +63850,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="424" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="434" />
       <location filename="../DataViews/PyCoverageDialog.py" line="69" />
       <source>LCOV Report</source>
       <translation type="unfinished" />
@@ -63802,12 +63878,12 @@
       </translation>
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="425" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="435" />
       <source>Enter the path of the output file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="429" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="439" />
       <source>LCOV Files (*.lcov);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -64077,7 +64153,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="361" />
+      <location filename="../DataViews/PyProfileDialog.py" line="371" />
       <location filename="../DataViews/PyProfileDialog.py" line="91" />
       <source>Exclude Python Library</source>
       <translation type="unfinished" />
@@ -64128,7 +64204,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="357" />
+      <location filename="../DataViews/PyProfileDialog.py" line="367" />
       <source>Include Python Library</source>
       <translation type="unfinished" />
     </message>
@@ -65459,38 +65535,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="213" />
+      <location filename="../UI/PythonAstViewer.py" line="214" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="223" />
+      <location filename="../UI/PythonAstViewer.py" line="224" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="229" />
+      <location filename="../UI/PythonAstViewer.py" line="230" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="247" />
+      <location filename="../UI/PythonAstViewer.py" line="248" />
       <source>Module</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="279" />
+      <location filename="../UI/PythonAstViewer.py" line="280" />
       <source>{0}: {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="296" />
-      <location filename="../UI/PythonAstViewer.py" line="286" />
+      <location filename="../UI/PythonAstViewer.py" line="297" />
+      <location filename="../UI/PythonAstViewer.py" line="287" />
       <source>{0},{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="303" />
+      <location filename="../UI/PythonAstViewer.py" line="304" />
       <source>{0}  -  {1}</source>
       <translation type="unfinished" />
     </message>
@@ -68014,7 +68090,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="716" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="714" />
       <source>Initializing new queue repository</source>
       <translation type="unfinished" />
     </message>
@@ -68992,50 +69068,82 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1341" />
-      <source>Active</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1555" />
       <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1345" />
-      <source>Status</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1349" />
-      <source>Hostname</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1350" />
-      <source>IPv4 Address</source>
+      <source>Active</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1343" />
+      <source>Name</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1568" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1344" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1347" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Public</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>MTU</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>{0} Bytes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1556" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1559" />
+      <source>Status</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1563" />
+      <source>Hostname</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1564" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1565" />
       <source>Netmask</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1352" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1566" />
       <source>Gateway</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1353" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1567" />
       <source>DNS</source>
       <translation type="unfinished" />
     </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1354" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
   </context>
   <context>
     <name>RccCompilerOptionsDialog</name>
@@ -70083,7 +70191,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SearchWidget.py" line="98" />
+      <location filename="../WebBrowser/SearchWidget.py" line="100" />
       <source>Expression was not found.</source>
       <translation type="unfinished" />
     </message>
@@ -71459,45 +71567,45 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2063" />
-      <location filename="../QScintilla/Shell.py" line="1845" />
+      <location filename="../QScintilla/Shell.py" line="2059" />
+      <location filename="../QScintilla/Shell.py" line="1841" />
       <location filename="../QScintilla/Shell.py" line="408" />
       <source>Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="810" />
+      <location filename="../QScintilla/Shell.py" line="806" />
       <source>Select History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="811" />
+      <location filename="../QScintilla/Shell.py" line="807" />
       <source>Select the history entry to execute (most recent shown last).</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Shell.py" line="872" />
+      <source>Passive Debug Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="873" />
+      <source>
+Not connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Shell.py" line="876" />
-      <source>Passive Debug Mode</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="877" />
-      <source>
-Not connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="880" />
       <source>No.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="882" />
+      <location filename="../QScintilla/Shell.py" line="878" />
       <source>{0} on {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="929" />
+      <location filename="../QScintilla/Shell.py" line="925" />
       <source>Exception "{0}"
 {1}
 File: {2}, Line: {3}
@@ -71505,88 +71613,88 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="938" />
+      <location filename="../QScintilla/Shell.py" line="934" />
       <source>Exception "{0}"
 {1}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="958" />
+      <location filename="../QScintilla/Shell.py" line="954" />
       <source>Unspecified syntax error.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="961" />
+      <location filename="../QScintilla/Shell.py" line="957" />
       <source>Syntax error "{1}" in file {0} at line {2}, character {3}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="985" />
+      <location filename="../QScintilla/Shell.py" line="981" />
       <source>Signal "{0}" generated in file {1} at line {2}.
 Function: {3}({4})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1067" />
+      <location filename="../QScintilla/Shell.py" line="1063" />
       <source>StdOut: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1075" />
+      <location filename="../QScintilla/Shell.py" line="1071" />
       <source>StdErr: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1101" />
+      <location filename="../QScintilla/Shell.py" line="1097" />
       <source>&lt;{0}&gt; {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1888" />
+      <location filename="../QScintilla/Shell.py" line="1884" />
       <source>Available Virtual Environments:
 {0}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1931" />
-      <location filename="../QScintilla/Shell.py" line="1895" />
+      <location filename="../QScintilla/Shell.py" line="1927" />
+      <location filename="../QScintilla/Shell.py" line="1891" />
       <source>Current Virtual Environment: '{0}'
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2203" />
+      <location filename="../QScintilla/Shell.py" line="2199" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2204" />
+      <location filename="../QScintilla/Shell.py" line="2200" />
       <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="2446" />
-      <location filename="../QScintilla/Shell.py" line="2431" />
-      <location filename="../QScintilla/Shell.py" line="2412" />
+      <location filename="../QScintilla/Shell.py" line="2442" />
+      <location filename="../QScintilla/Shell.py" line="2427" />
+      <location filename="../QScintilla/Shell.py" line="2408" />
       <source>Save Shell Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2414" />
+      <location filename="../QScintilla/Shell.py" line="2410" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2432" />
+      <location filename="../QScintilla/Shell.py" line="2428" />
       <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="2447" />
+      <location filename="../QScintilla/Shell.py" line="2443" />
       <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>
@@ -71831,335 +71939,335 @@
   <context>
     <name>ShellWindow</name>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1275" />
-      <location filename="../QScintilla/ShellWindow.py" line="54" />
+      <location filename="../QScintilla/ShellWindow.py" line="1279" />
+      <location filename="../QScintilla/ShellWindow.py" line="62" />
       <source>eric Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="220" />
-      <source>Quit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="222" />
-      <source>&amp;Quit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="223" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="228" />
-      <source>Quit the Shell</source>
+      <source>Quit</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/ShellWindow.py" line="230" />
+      <source>&amp;Quit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="231" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="236" />
+      <source>Quit the Shell</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="238" />
       <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="237" />
-      <source>New Window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="239" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="240" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="245" />
-      <source>Open a new Shell window</source>
+      <source>New Window</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/ShellWindow.py" line="247" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="248" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="253" />
+      <source>Open a new Shell window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="255" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="258" />
-      <location filename="../QScintilla/ShellWindow.py" line="256" />
-      <source>Restart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="264" />
-      <source>Restart the shell</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="266" />
+      <location filename="../QScintilla/ShellWindow.py" line="264" />
+      <source>Restart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="272" />
+      <source>Restart the shell</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="274" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="278" />
-      <location filename="../QScintilla/ShellWindow.py" line="276" />
+      <location filename="../QScintilla/ShellWindow.py" line="286" />
+      <location filename="../QScintilla/ShellWindow.py" line="284" />
       <source>Restart and Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="285" />
+      <location filename="../QScintilla/ShellWindow.py" line="293" />
       <source>Clear the window and restart the shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="288" />
+      <location filename="../QScintilla/ShellWindow.py" line="296" />
       <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="298" />
+      <location filename="../QScintilla/ShellWindow.py" line="306" />
       <source>Save Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="300" />
+      <location filename="../QScintilla/ShellWindow.py" line="308" />
       <source>Save Contents...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="309" />
+      <location filename="../QScintilla/ShellWindow.py" line="317" />
       <source>Save the current contents of the shell to a file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="312" />
+      <location filename="../QScintilla/ShellWindow.py" line="320" />
       <source>&lt;b&gt;Save Contents&lt;/b&gt;&lt;p&gt;Save the current contents of the shell to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="345" />
+      <location filename="../QScintilla/ShellWindow.py" line="353" />
       <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="../QScintilla/ShellWindow.py" line="367" />
+      <location filename="../QScintilla/ShellWindow.py" line="375" />
       <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="../QScintilla/ShellWindow.py" line="389" />
+      <location filename="../QScintilla/ShellWindow.py" line="397" />
       <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="411" />
+      <location filename="../QScintilla/ShellWindow.py" line="419" />
       <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="709" />
-      <location filename="../QScintilla/ShellWindow.py" line="708" />
+      <location filename="../QScintilla/ShellWindow.py" line="713" />
+      <location filename="../QScintilla/ShellWindow.py" line="712" />
       <source>Move forward one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="721" />
-      <location filename="../QScintilla/ShellWindow.py" line="720" />
+      <location filename="../QScintilla/ShellWindow.py" line="725" />
+      <location filename="../QScintilla/ShellWindow.py" line="724" />
       <source>Move back one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1115" />
+      <location filename="../QScintilla/ShellWindow.py" line="1119" />
       <source>Show History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1117" />
+      <location filename="../QScintilla/ShellWindow.py" line="1121" />
       <source>&amp;Show History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1123" />
-      <source>Show the shell history in a dialog</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1127" />
+      <source>Show the shell history in a dialog</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1131" />
       <source>Clear History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1129" />
+      <location filename="../QScintilla/ShellWindow.py" line="1133" />
       <source>&amp;Clear History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1135" />
-      <source>Clear the shell history</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1139" />
+      <source>Clear the shell history</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1143" />
       <source>Select History Entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1140" />
+      <location filename="../QScintilla/ShellWindow.py" line="1144" />
       <source>Select History &amp;Entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1147" />
+      <location filename="../QScintilla/ShellWindow.py" line="1151" />
       <source>Select an entry of the shell history</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
+      <location filename="../QScintilla/ShellWindow.py" line="1160" />
       <source>About</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
-      <source>&amp;About</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1158" />
-      <source>Display information about this software</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1160" />
+      <source>&amp;About</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1162" />
+      <source>Display information about this software</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1164" />
       <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="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About &amp;Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1172" />
+      <location filename="../QScintilla/ShellWindow.py" line="1176" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1175" />
+      <location filename="../QScintilla/ShellWindow.py" line="1179" />
       <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="../QScintilla/ShellWindow.py" line="1184" />
+      <location filename="../QScintilla/ShellWindow.py" line="1188" />
       <source>What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1186" />
+      <location filename="../QScintilla/ShellWindow.py" line="1190" />
       <source>&amp;What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1187" />
+      <location filename="../QScintilla/ShellWindow.py" line="1191" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1192" />
+      <location filename="../QScintilla/ShellWindow.py" line="1196" />
       <source>Context sensitive help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1194" />
+      <location filename="../QScintilla/ShellWindow.py" line="1198" />
       <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="../QScintilla/ShellWindow.py" line="1273" />
+      <location filename="../QScintilla/ShellWindow.py" line="1277" />
       <source>eric Shell [{0}]</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="1346" />
       <source>About eric Shell Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1343" />
+      <location filename="../QScintilla/ShellWindow.py" line="1347" />
       <source>The eric Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1370" />
+      <location filename="../QScintilla/ShellWindow.py" line="1374" />
       <source>&amp;File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1381" />
+      <location filename="../QScintilla/ShellWindow.py" line="1385" />
       <source>&amp;Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1392" />
+      <location filename="../QScintilla/ShellWindow.py" line="1396" />
       <source>&amp;View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1399" />
+      <location filename="../QScintilla/ShellWindow.py" line="1403" />
       <source>Histor&amp;y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1406" />
+      <location filename="../QScintilla/ShellWindow.py" line="1410" />
       <source>&amp;Start</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1412" />
+      <location filename="../QScintilla/ShellWindow.py" line="1416" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1445" />
+      <location filename="../QScintilla/ShellWindow.py" line="1449" />
       <source>File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1455" />
+      <location filename="../QScintilla/ShellWindow.py" line="1459" />
       <source>Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1461" />
+      <location filename="../QScintilla/ShellWindow.py" line="1465" />
       <source>Find</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1466" />
+      <location filename="../QScintilla/ShellWindow.py" line="1470" />
       <source>View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1472" />
+      <location filename="../QScintilla/ShellWindow.py" line="1476" />
       <source>History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1477" />
+      <location filename="../QScintilla/ShellWindow.py" line="1481" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1499" />
+      <location filename="../QScintilla/ShellWindow.py" line="1503" />
       <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -72517,24 +72625,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="363" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="345" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="324" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
       <source>Edit shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="326" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="347" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="365" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -75678,328 +75786,328 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="310" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="327" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="312" />
       <source>Importing project into Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="328" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="330" />
       <source>Imported revision {0}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="362" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="364" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="367" />
       <source>Subversion Checkout</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="420" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="433" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="422" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="368" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="389" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="388" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="391" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="390" />
       <source>Checking project out of Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="419" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="432" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="421" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="434" />
       <source>Subversion Export</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="443" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="445" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="456" />
       <source>Exporting project from Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="514" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="535" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="516" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="537" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="515" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="517" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="538" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="578" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="580" />
       <source>Commiting changes to Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="614" />
       <source>Committed revision {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="638" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="684" />
       <source>Synchronizing with the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="735" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="793" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="898" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="900" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="859" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="937" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="939" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="918" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="920" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="998" />
       <source>Moving {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1177" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1148" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1027" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="998" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1292" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1124" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1094" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1179" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1029" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1294" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1265" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1126" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1096" />
       <source>Subversion Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1095" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1001" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1097" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1028" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1125" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1030" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1127" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1062" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1161" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1147" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1149" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1324" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1172" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1326" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1174" />
       <source>Revision {0}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1106" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1095" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1197" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1108" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1097" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1096" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1198" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1200" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1107" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1109" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1211" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1113" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1115" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1219" />
       <source>Reverting changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1149" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1264" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1151" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1266" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1178" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1293" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1180" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1295" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1207" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1318" />
       <source>Switching to {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1416" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1275" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1418" />
       <source>Merging {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1543" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1723" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1544" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1725" />
       <source>Cleaning up {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1573" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1763" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1765" />
       <source>Subversion command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1744" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1883" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1747" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1887" />
       <source>Resolving conficts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1924" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1928" />
       <source>Copying {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1844" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1823" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2000" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1847" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1987" />
       <source>Subversion Set Property</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1870" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2045" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1988" />
       <source>You have to supply a property name. Aborting.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2023" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2027" />
       <source>Property set.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1887" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1858" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2061" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2044" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1890" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1872" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2048" />
       <source>Subversion Delete Property</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2079" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2083" />
       <source>Property deleted.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2114" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2102" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2093" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2294" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2105" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2096" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2310" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2298" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2289" />
       <source>Subversion Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2115" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2307" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2118" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2311" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2348" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2352" />
       <source>Subversion Lock</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2349" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2353" />
       <source>Enter lock comment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2165" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2370" />
       <source>Locking in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2192" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2195" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2411" />
       <source>Unlocking in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2217" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2458" />
       <source>Relocating</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2235" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2479" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2238" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2483" />
       <source>Repository Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2236" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2480" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2239" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2484" />
       <source>Enter the repository URL.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2269" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2505" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2309" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2272" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2509" />
       <source>Remove from changelist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2285" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2544" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2533" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2548" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2537" />
       <source>Add to changelist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2534" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2289" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2538" />
       <source>Enter name of the changelist:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2373" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2598" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2602" />
       <source>Upgrade</source>
       <translation type="unfinished" />
     </message>
@@ -76180,7 +76288,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2052" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="181" />
       <source>The svn process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -76191,12 +76299,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1862" />
       <source>Enter property name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2051" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2054" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
@@ -76817,27 +76925,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="208" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="284" />
       <source>There is no difference.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="223" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="342" />
-      <source>&lt;Start&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="342" />
+      <source>&lt;Start&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="225" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="343" />
       <source>&lt;End&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="410" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="444" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="426" />
@@ -76845,19 +76953,19 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="378" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="428" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="396" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="445" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="412" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="461" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
@@ -77113,7 +77221,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="566" />
@@ -77123,7 +77231,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="674" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="563" />
@@ -79121,7 +79229,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="654" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.ui" line="0" />
@@ -79345,8 +79453,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1057" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="129" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="915" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="894" />
@@ -79355,7 +79463,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="134" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="818" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="134" />
@@ -79363,7 +79471,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="136" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="837" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="136" />
@@ -79447,7 +79555,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="491" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="562" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="491" />
@@ -79455,76 +79563,76 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="798" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="655" />
       <source>There are no entries selected to be committed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
-      <source>Add</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
+      <source>Add</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="840" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="697" />
       <source>There are no unversioned entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="888" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="862" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="720" />
-      <source>Revert</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="791" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="769" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="721" />
-      <source>There are no uncommitted changes available/selected.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="720" />
+      <source>Revert</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="934" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="912" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="864" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="769" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="721" />
+      <source>There are no uncommitted changes available/selected.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="747" />
       <source>There are no missing entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="768" />
       <source>Differences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="939" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="932" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="797" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="790" />
-      <source>Side-by-Side Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="790" />
+      <source>Side-by-Side Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="941" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="798" />
       <source>Only one file with uncommitted changes must be selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="819" />
       <source>There are no unlocked files available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="981" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="876" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="857" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="838" />
@@ -79532,25 +79640,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="998" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="856" />
       <source>Break Lock</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1017" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="875" />
       <source>Steal Lock</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1038" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="895" />
       <source>There are no files available/selected not belonging to a changelist.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1059" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="916" />
       <source>There are no files available/selected belonging to a changelist.</source>
       <translation type="unfinished" />
@@ -79678,7 +79786,7 @@
   <context>
     <name>SvnStatusMonitorThread</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="141" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="143" />
       <source>Subversion status checked successfully (using pysvn)</source>
       <translation type="unfinished" />
     </message>
@@ -81273,7 +81381,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="187" />
+      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="188" />
       <source>&lt;font color="#FF0000"&gt;&lt;b&gt;Error:&lt;/b&gt; {0}&lt;/font&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -82297,7 +82405,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="565" />
+      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="563" />
       <source>Show Tab Manager</source>
       <translation type="unfinished" />
     </message>
@@ -82863,47 +82971,47 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="743" />
+      <location filename="../Tasks/TaskViewer.py" line="744" />
       <source>Activate task filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="744" />
+      <location filename="../Tasks/TaskViewer.py" line="745" />
       <source>The task filter doesn't have any active filters. Do you want to configure the filter settings?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="778" />
-      <source>Scan Filter Patterns</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="779" />
+      <source>Scan Filter Patterns</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="780" />
       <source>Enter filename patterns of files to be excluded separated by a comma:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="821" />
-      <source>Extracting project tasks...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="822" />
+      <source>Extracting project tasks...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="823" />
       <source>Abort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="825" />
+      <location filename="../Tasks/TaskViewer.py" line="826" />
       <source>%v/%m Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="829" />
+      <location filename="../Tasks/TaskViewer.py" line="830" />
       <source>Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="836" />
+      <location filename="../Tasks/TaskViewer.py" line="837" />
       <source>Extracting project tasks...
 {0}</source>
       <translation type="unfinished" />
@@ -83045,7 +83153,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="316" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="318" />
       <location filename="../MicroPython/Devices/TeensyDevices.py" line="154" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -83086,17 +83194,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="317" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="319" />
       <source>&lt;p&gt;Teensy 4.0 and Teensy 4.1 are flashed using the 'Teensy Loader' application. Make sure you downloaded the MicroPython or CircuitPython .hex file.&lt;/p&gt;&lt;p&gt;See &lt;a href="{0}"&gt;the PJRC Teensy web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="339" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="341" />
       <source>Start 'Teensy Loader'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="340" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="342" />
       <source>&lt;p&gt;The 'Teensy Loader' application &lt;b&gt;teensy&lt;/b&gt; could not be started. Ensure it is in the application search path or start it manually.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -83322,78 +83430,78 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="531" />
+      <location filename="../Templates/TemplateViewer.py" line="533" />
       <source>Remove Template</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="532" />
+      <location filename="../Templates/TemplateViewer.py" line="534" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="560" />
-      <source>Import Templates</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Templates/TemplateViewer.py" line="562" />
+      <source>Import Templates</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Templates/TemplateViewer.py" line="564" />
       <source>Templates Files (*.ecj);;XML Templates Files (*.e4c);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="595" />
-      <location filename="../Templates/TemplateViewer.py" line="579" />
+      <location filename="../Templates/TemplateViewer.py" line="597" />
+      <location filename="../Templates/TemplateViewer.py" line="581" />
       <source>Export Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="581" />
+      <location filename="../Templates/TemplateViewer.py" line="583" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="596" />
+      <location filename="../Templates/TemplateViewer.py" line="598" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="614" />
+      <location filename="../Templates/TemplateViewer.py" line="616" />
       <source>Reload Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="615" />
+      <location filename="../Templates/TemplateViewer.py" line="617" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
       <source>Template Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="883" />
+      <location filename="../Templates/TemplateViewer.py" line="885" />
       <source>Edit Template Group</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="884" />
+      <location filename="../Templates/TemplateViewer.py" line="886" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1005" />
+      <location filename="../Templates/TemplateViewer.py" line="1007" />
       <source>Read Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1006" />
+      <location filename="../Templates/TemplateViewer.py" line="1008" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -86234,99 +86342,99 @@
   <context>
     <name>UMLGraphicsView</name>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="90" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="94" />
       <source>Delete shapes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="96" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="100" />
       <source>Increase width by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="103" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="107" />
       <source>Increase height by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="110" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="114" />
       <source>Decrease width by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="117" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="121" />
       <source>Decrease height by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="123" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="127" />
       <source>Set size</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="128" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="132" />
       <source>Re-Scan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="133" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="137" />
       <source>Re-Layout</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="138" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="142" />
       <source>Align Left</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="145" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="149" />
       <source>Align Center Horizontal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="152" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="156" />
       <source>Align Right</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="158" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="162" />
       <source>Align Top</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="165" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="169" />
       <source>Align Center Vertical</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="172" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="176" />
       <source>Align Bottom</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="235" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="240" />
       <source>Graphics</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="395" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="382" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="365" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="400" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="387" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="370" />
       <source>Save Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="367" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="372" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="383" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="388" />
       <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="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="401" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -87052,7 +87160,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7688" />
+      <location filename="../UI/UserInterface.py" line="7687" />
       <location filename="../UI/UserInterface.py" line="1934" />
       <location filename="../UI/UserInterface.py" line="1927" />
       <source>Load session</source>
@@ -88339,8 +88447,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7373" />
-      <location filename="../UI/UserInterface.py" line="7354" />
+      <location filename="../UI/UserInterface.py" line="7372" />
+      <location filename="../UI/UserInterface.py" line="7353" />
       <location filename="../UI/UserInterface.py" line="3358" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished" />
@@ -88361,7 +88469,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7392" />
+      <location filename="../UI/UserInterface.py" line="7391" />
       <location filename="../UI/UserInterface.py" line="3377" />
       <source>Import Keyboard Shortcuts</source>
       <translation type="unfinished" />
@@ -89076,185 +89184,185 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6609" />
+      <location filename="../UI/UserInterface.py" line="6610" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6896" />
-      <location filename="../UI/UserInterface.py" line="6834" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6716" />
-      <location filename="../UI/UserInterface.py" line="6652" />
-      <source>Documentation Missing</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6897" />
       <location filename="../UI/UserInterface.py" line="6835" />
       <location filename="../UI/UserInterface.py" line="6791" />
       <location filename="../UI/UserInterface.py" line="6717" />
       <location filename="../UI/UserInterface.py" line="6653" />
+      <source>Documentation Missing</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6898" />
+      <location filename="../UI/UserInterface.py" line="6836" />
+      <location filename="../UI/UserInterface.py" line="6792" />
+      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6654" />
       <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="6878" />
-      <location filename="../UI/UserInterface.py" line="6760" />
-      <source>Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6761" />
-      <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="6879" />
+      <location filename="../UI/UserInterface.py" line="6761" />
+      <source>Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6762" />
+      <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="6880" />
       <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="7056" />
+      <location filename="../UI/UserInterface.py" line="6993" />
+      <source>Start Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6994" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7057" />
-      <location filename="../UI/UserInterface.py" line="6994" />
-      <source>Start Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6995" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7058" />
       <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="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7374" />
+      <location filename="../UI/UserInterface.py" line="7373" />
       <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="7394" />
+      <location filename="../UI/UserInterface.py" line="7393" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7576" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7577" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7578" />
       <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
+      <location filename="../UI/UserInterface.py" line="7620" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7649" />
-      <location filename="../UI/UserInterface.py" line="7622" />
-      <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="7648" />
+      <location filename="../UI/UserInterface.py" line="7621" />
+      <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="7647" />
       <source>Read session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7665" />
+      <location filename="../UI/UserInterface.py" line="7664" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7667" />
+      <location filename="../UI/UserInterface.py" line="7666" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7690" />
+      <location filename="../UI/UserInterface.py" line="7689" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7735" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7736" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7737" />
       <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="8106" />
+      <source>Drop Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8107" />
-      <source>Drop Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8108" />
       <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="8288" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8289" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8290" />
       <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="8346" />
+      <location filename="../UI/UserInterface.py" line="8333" />
+      <source>First time usage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8334" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8347" />
-      <location filename="../UI/UserInterface.py" line="8334" />
-      <source>First time usage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8335" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8348" />
       <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="8371" />
+      <location filename="../UI/UserInterface.py" line="8370" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8530" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8531" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8532" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -89334,7 +89442,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="989" />
+      <location filename="../Utilities/__init__.py" line="991" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -90430,663 +90538,663 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="681" />
-      <location filename="../QScintilla/ShellWindow.py" line="302" />
+      <location filename="../QScintilla/ShellWindow.py" line="310" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1032" />
-      <location filename="../QScintilla/ShellWindow.py" line="329" />
+      <location filename="../QScintilla/ShellWindow.py" line="337" />
       <source>Cut</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1034" />
-      <location filename="../QScintilla/ShellWindow.py" line="331" />
+      <location filename="../QScintilla/ShellWindow.py" line="339" />
       <source>Cu&amp;t</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1036" />
-      <location filename="../QScintilla/ShellWindow.py" line="333" />
+      <location filename="../QScintilla/ShellWindow.py" line="341" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1039" />
-      <location filename="../QScintilla/ShellWindow.py" line="336" />
+      <location filename="../QScintilla/ShellWindow.py" line="344" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1045" />
-      <location filename="../QScintilla/ShellWindow.py" line="342" />
+      <location filename="../QScintilla/ShellWindow.py" line="350" />
       <source>Cut the selection</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1059" />
-      <location filename="../QScintilla/ShellWindow.py" line="351" />
+      <location filename="../QScintilla/ShellWindow.py" line="359" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1061" />
-      <location filename="../QScintilla/ShellWindow.py" line="353" />
+      <location filename="../QScintilla/ShellWindow.py" line="361" />
       <source>&amp;Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1063" />
-      <location filename="../QScintilla/ShellWindow.py" line="355" />
+      <location filename="../QScintilla/ShellWindow.py" line="363" />
       <source>Ctrl+C</source>
       <comment>Edit|Copy</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1066" />
-      <location filename="../QScintilla/ShellWindow.py" line="358" />
+      <location filename="../QScintilla/ShellWindow.py" line="366" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1072" />
-      <location filename="../QScintilla/ShellWindow.py" line="364" />
+      <location filename="../QScintilla/ShellWindow.py" line="372" />
       <source>Copy the selection</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1086" />
-      <location filename="../QScintilla/ShellWindow.py" line="373" />
+      <location filename="../QScintilla/ShellWindow.py" line="381" />
       <source>Paste</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1088" />
-      <location filename="../QScintilla/ShellWindow.py" line="375" />
+      <location filename="../QScintilla/ShellWindow.py" line="383" />
       <source>&amp;Paste</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1090" />
-      <location filename="../QScintilla/ShellWindow.py" line="377" />
+      <location filename="../QScintilla/ShellWindow.py" line="385" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1093" />
-      <location filename="../QScintilla/ShellWindow.py" line="380" />
+      <location filename="../QScintilla/ShellWindow.py" line="388" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1099" />
-      <location filename="../QScintilla/ShellWindow.py" line="386" />
+      <location filename="../QScintilla/ShellWindow.py" line="394" />
       <source>Paste the last cut/copied text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1115" />
       <location filename="../ViewManager/ViewManager.py" line="1113" />
-      <location filename="../QScintilla/ShellWindow.py" line="400" />
-      <location filename="../QScintilla/ShellWindow.py" line="398" />
+      <location filename="../QScintilla/ShellWindow.py" line="408" />
+      <location filename="../QScintilla/ShellWindow.py" line="406" />
       <source>Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1117" />
-      <location filename="../QScintilla/ShellWindow.py" line="402" />
+      <location filename="../QScintilla/ShellWindow.py" line="410" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1124" />
-      <location filename="../QScintilla/ShellWindow.py" line="409" />
+      <location filename="../QScintilla/ShellWindow.py" line="417" />
       <source>Clear all text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
-      <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/ShellWindow.py" line="435" />
-      <location filename="../QScintilla/ShellWindow.py" line="434" />
+      <location filename="../QScintilla/MiniEditor.py" line="1681" />
+      <location filename="../QScintilla/MiniEditor.py" line="1680" />
+      <location filename="../QScintilla/ShellWindow.py" line="439" />
+      <location filename="../QScintilla/ShellWindow.py" line="438" />
       <source>Delete current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1686" />
-      <location filename="../QScintilla/ShellWindow.py" line="436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1682" />
+      <location filename="../QScintilla/ShellWindow.py" line="440" />
       <source>Ctrl+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
-      <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/ShellWindow.py" line="447" />
-      <location filename="../QScintilla/ShellWindow.py" line="446" />
+      <location filename="../QScintilla/MiniEditor.py" line="1203" />
+      <location filename="../QScintilla/MiniEditor.py" line="1202" />
+      <location filename="../QScintilla/ShellWindow.py" line="451" />
+      <location filename="../QScintilla/ShellWindow.py" line="450" />
       <source>Indent one level</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1208" />
-      <location filename="../QScintilla/ShellWindow.py" line="448" />
+      <location filename="../QScintilla/MiniEditor.py" line="1204" />
+      <location filename="../QScintilla/ShellWindow.py" line="452" />
       <source>Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
-      <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/ShellWindow.py" line="459" />
-      <location filename="../QScintilla/ShellWindow.py" line="458" />
+      <location filename="../QScintilla/MiniEditor.py" line="1669" />
+      <location filename="../QScintilla/MiniEditor.py" line="1668" />
+      <location filename="../QScintilla/ShellWindow.py" line="463" />
+      <location filename="../QScintilla/ShellWindow.py" line="462" />
       <source>Insert new line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
-      <location filename="../QScintilla/ShellWindow.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1670" />
+      <location filename="../QScintilla/ShellWindow.py" line="464" />
       <source>Return</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1675" />
-      <location filename="../QScintilla/ShellWindow.py" line="461" />
+      <location filename="../QScintilla/MiniEditor.py" line="1671" />
+      <location filename="../QScintilla/ShellWindow.py" line="465" />
       <source>Enter</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
-      <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/ShellWindow.py" line="471" />
-      <location filename="../QScintilla/ShellWindow.py" line="470" />
+      <location filename="../QScintilla/MiniEditor.py" line="1555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1554" />
+      <location filename="../QScintilla/ShellWindow.py" line="475" />
+      <location filename="../QScintilla/ShellWindow.py" line="474" />
       <source>Delete previous character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1560" />
-      <location filename="../QScintilla/ShellWindow.py" line="472" />
+      <location filename="../QScintilla/MiniEditor.py" line="1556" />
+      <location filename="../QScintilla/ShellWindow.py" line="476" />
       <source>Backspace</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1567" />
-      <location filename="../QScintilla/ShellWindow.py" line="479" />
+      <location filename="../QScintilla/MiniEditor.py" line="1563" />
+      <location filename="../QScintilla/ShellWindow.py" line="483" />
       <source>Meta+H</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1572" />
-      <location filename="../QScintilla/ShellWindow.py" line="484" />
+      <location filename="../QScintilla/MiniEditor.py" line="1568" />
+      <location filename="../QScintilla/ShellWindow.py" line="488" />
       <source>Shift+Backspace</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
-      <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/ShellWindow.py" line="493" />
-      <location filename="../QScintilla/ShellWindow.py" line="492" />
+      <location filename="../QScintilla/MiniEditor.py" line="1593" />
+      <location filename="../QScintilla/MiniEditor.py" line="1592" />
+      <location filename="../QScintilla/ShellWindow.py" line="497" />
+      <location filename="../QScintilla/ShellWindow.py" line="496" />
       <source>Delete current character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1598" />
-      <location filename="../QScintilla/ShellWindow.py" line="494" />
+      <location filename="../QScintilla/MiniEditor.py" line="1594" />
+      <location filename="../QScintilla/ShellWindow.py" line="498" />
       <source>Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1605" />
-      <location filename="../QScintilla/ShellWindow.py" line="501" />
+      <location filename="../QScintilla/MiniEditor.py" line="1601" />
+      <location filename="../QScintilla/ShellWindow.py" line="505" />
       <source>Meta+D</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
-      <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/ShellWindow.py" line="509" />
-      <location filename="../QScintilla/ShellWindow.py" line="508" />
+      <location filename="../QScintilla/MiniEditor.py" line="1609" />
+      <location filename="../QScintilla/MiniEditor.py" line="1608" />
+      <location filename="../QScintilla/ShellWindow.py" line="513" />
+      <location filename="../QScintilla/ShellWindow.py" line="512" />
       <source>Delete word to left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1614" />
-      <location filename="../QScintilla/ShellWindow.py" line="510" />
+      <location filename="../QScintilla/MiniEditor.py" line="1610" />
+      <location filename="../QScintilla/ShellWindow.py" line="514" />
       <source>Ctrl+Backspace</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
-      <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/ShellWindow.py" line="521" />
-      <location filename="../QScintilla/ShellWindow.py" line="520" />
+      <location filename="../QScintilla/MiniEditor.py" line="1621" />
+      <location filename="../QScintilla/MiniEditor.py" line="1620" />
+      <location filename="../QScintilla/ShellWindow.py" line="525" />
+      <location filename="../QScintilla/ShellWindow.py" line="524" />
       <source>Delete word to right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1626" />
-      <location filename="../QScintilla/ShellWindow.py" line="522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1622" />
+      <location filename="../QScintilla/ShellWindow.py" line="526" />
       <source>Ctrl+Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
-      <location filename="../QScintilla/MiniEditor.py" line="1637" />
-      <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/ShellWindow.py" line="533" />
-      <location filename="../QScintilla/ShellWindow.py" line="532" />
+      <location filename="../QScintilla/MiniEditor.py" line="1633" />
+      <location filename="../QScintilla/MiniEditor.py" line="1632" />
+      <location filename="../QScintilla/ShellWindow.py" line="537" />
+      <location filename="../QScintilla/ShellWindow.py" line="536" />
       <source>Delete line to left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1639" />
-      <location filename="../QScintilla/ShellWindow.py" line="535" />
+      <location filename="../QScintilla/MiniEditor.py" line="1635" />
+      <location filename="../QScintilla/ShellWindow.py" line="539" />
       <source>Ctrl+Shift+Backspace</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
-      <location filename="../QScintilla/MiniEditor.py" line="1651" />
-      <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/ShellWindow.py" line="547" />
-      <location filename="../QScintilla/ShellWindow.py" line="546" />
+      <location filename="../QScintilla/MiniEditor.py" line="1647" />
+      <location filename="../QScintilla/MiniEditor.py" line="1646" />
+      <location filename="../QScintilla/ShellWindow.py" line="551" />
+      <location filename="../QScintilla/ShellWindow.py" line="550" />
       <source>Delete line to right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1659" />
-      <location filename="../QScintilla/ShellWindow.py" line="555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1655" />
+      <location filename="../QScintilla/ShellWindow.py" line="559" />
       <source>Meta+K</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1664" />
-      <location filename="../QScintilla/ShellWindow.py" line="560" />
+      <location filename="../QScintilla/MiniEditor.py" line="1660" />
+      <location filename="../QScintilla/ShellWindow.py" line="564" />
       <source>Ctrl+Shift+Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
-      <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/ShellWindow.py" line="569" />
-      <location filename="../QScintilla/ShellWindow.py" line="568" />
+      <location filename="../QScintilla/MiniEditor.py" line="891" />
+      <location filename="../QScintilla/MiniEditor.py" line="890" />
+      <location filename="../QScintilla/ShellWindow.py" line="573" />
+      <location filename="../QScintilla/ShellWindow.py" line="572" />
       <source>Move left one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="896" />
-      <location filename="../QScintilla/ShellWindow.py" line="570" />
+      <location filename="../QScintilla/MiniEditor.py" line="892" />
+      <location filename="../QScintilla/ShellWindow.py" line="574" />
       <source>Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="904" />
-      <location filename="../QScintilla/ShellWindow.py" line="578" />
+      <location filename="../QScintilla/MiniEditor.py" line="900" />
+      <location filename="../QScintilla/ShellWindow.py" line="582" />
       <source>Meta+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
-      <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/ShellWindow.py" line="585" />
-      <location filename="../QScintilla/ShellWindow.py" line="584" />
+      <location filename="../QScintilla/MiniEditor.py" line="907" />
+      <location filename="../QScintilla/MiniEditor.py" line="906" />
+      <location filename="../QScintilla/ShellWindow.py" line="589" />
+      <location filename="../QScintilla/ShellWindow.py" line="588" />
       <source>Move right one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="912" />
-      <location filename="../QScintilla/ShellWindow.py" line="586" />
+      <location filename="../QScintilla/MiniEditor.py" line="908" />
+      <location filename="../QScintilla/ShellWindow.py" line="590" />
       <source>Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="919" />
-      <location filename="../QScintilla/ShellWindow.py" line="593" />
+      <location filename="../QScintilla/MiniEditor.py" line="915" />
+      <location filename="../QScintilla/ShellWindow.py" line="597" />
       <source>Meta+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="991" />
-      <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/ShellWindow.py" line="601" />
-      <location filename="../QScintilla/ShellWindow.py" line="600" />
+      <location filename="../QScintilla/MiniEditor.py" line="987" />
+      <location filename="../QScintilla/MiniEditor.py" line="986" />
+      <location filename="../QScintilla/ShellWindow.py" line="605" />
+      <location filename="../QScintilla/ShellWindow.py" line="604" />
       <source>Move left one word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="999" />
-      <location filename="../QScintilla/MiniEditor.py" line="967" />
-      <location filename="../QScintilla/ShellWindow.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="995" />
+      <location filename="../QScintilla/MiniEditor.py" line="963" />
+      <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Alt+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1059" />
-      <location filename="../QScintilla/MiniEditor.py" line="1003" />
-      <location filename="../QScintilla/ShellWindow.py" line="613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1055" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/ShellWindow.py" line="617" />
       <source>Ctrl+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
-      <location filename="../QScintilla/MiniEditor.py" line="1011" />
-      <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/ShellWindow.py" line="621" />
-      <location filename="../QScintilla/ShellWindow.py" line="620" />
+      <location filename="../QScintilla/MiniEditor.py" line="1007" />
+      <location filename="../QScintilla/MiniEditor.py" line="1006" />
+      <location filename="../QScintilla/ShellWindow.py" line="625" />
+      <location filename="../QScintilla/ShellWindow.py" line="624" />
       <source>Move right one word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="1023" />
-      <location filename="../QScintilla/ShellWindow.py" line="629" />
+      <location filename="../QScintilla/MiniEditor.py" line="1809" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/ShellWindow.py" line="633" />
       <source>Ctrl+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1033" />
-      <location filename="../QScintilla/MiniEditor.py" line="1030" />
-      <location filename="../QScintilla/ShellWindow.py" line="639" />
-      <location filename="../QScintilla/ShellWindow.py" line="636" />
+      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1026" />
+      <location filename="../QScintilla/ShellWindow.py" line="643" />
+      <location filename="../QScintilla/ShellWindow.py" line="640" />
       <source>Move to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2074" />
-      <location filename="../QScintilla/MiniEditor.py" line="1043" />
-      <location filename="../QScintilla/ShellWindow.py" line="649" />
+      <location filename="../QScintilla/MiniEditor.py" line="2070" />
+      <location filename="../QScintilla/MiniEditor.py" line="1039" />
+      <location filename="../QScintilla/ShellWindow.py" line="653" />
       <source>Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
-      <location filename="../QScintilla/MiniEditor.py" line="1071" />
-      <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/ShellWindow.py" line="657" />
-      <location filename="../QScintilla/ShellWindow.py" line="656" />
+      <location filename="../QScintilla/MiniEditor.py" line="1067" />
+      <location filename="../QScintilla/MiniEditor.py" line="1066" />
+      <location filename="../QScintilla/ShellWindow.py" line="661" />
+      <location filename="../QScintilla/ShellWindow.py" line="660" />
       <source>Move to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1079" />
-      <location filename="../QScintilla/ShellWindow.py" line="665" />
+      <location filename="../QScintilla/MiniEditor.py" line="1075" />
+      <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>Meta+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1083" />
-      <location filename="../QScintilla/ShellWindow.py" line="669" />
+      <location filename="../QScintilla/MiniEditor.py" line="2087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
+      <location filename="../QScintilla/ShellWindow.py" line="673" />
       <source>End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
-      <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/ShellWindow.py" line="677" />
-      <location filename="../QScintilla/ShellWindow.py" line="676" />
+      <location filename="../QScintilla/MiniEditor.py" line="923" />
+      <location filename="../QScintilla/MiniEditor.py" line="922" />
+      <location filename="../QScintilla/ShellWindow.py" line="681" />
+      <location filename="../QScintilla/ShellWindow.py" line="680" />
       <source>Move up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="928" />
-      <location filename="../QScintilla/ShellWindow.py" line="678" />
+      <location filename="../QScintilla/MiniEditor.py" line="924" />
+      <location filename="../QScintilla/ShellWindow.py" line="682" />
       <source>Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="935" />
-      <location filename="../QScintilla/ShellWindow.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="689" />
       <source>Meta+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
-      <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/ShellWindow.py" line="693" />
-      <location filename="../QScintilla/ShellWindow.py" line="692" />
+      <location filename="../QScintilla/MiniEditor.py" line="939" />
+      <location filename="../QScintilla/MiniEditor.py" line="938" />
+      <location filename="../QScintilla/ShellWindow.py" line="697" />
+      <location filename="../QScintilla/ShellWindow.py" line="696" />
       <source>Move down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="944" />
-      <location filename="../QScintilla/ShellWindow.py" line="694" />
+      <location filename="../QScintilla/MiniEditor.py" line="940" />
+      <location filename="../QScintilla/ShellWindow.py" line="698" />
       <source>Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="951" />
-      <location filename="../QScintilla/ShellWindow.py" line="701" />
+      <location filename="../QScintilla/MiniEditor.py" line="947" />
+      <location filename="../QScintilla/ShellWindow.py" line="705" />
       <source>Meta+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1195" />
-      <location filename="../QScintilla/MiniEditor.py" line="1092" />
-      <location filename="../QScintilla/ShellWindow.py" line="710" />
+      <location filename="../QScintilla/MiniEditor.py" line="1191" />
+      <location filename="../QScintilla/MiniEditor.py" line="1088" />
+      <location filename="../QScintilla/ShellWindow.py" line="714" />
       <source>Ctrl+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1175" />
-      <location filename="../QScintilla/MiniEditor.py" line="1104" />
-      <location filename="../QScintilla/ShellWindow.py" line="722" />
+      <location filename="../QScintilla/MiniEditor.py" line="1171" />
+      <location filename="../QScintilla/MiniEditor.py" line="1100" />
+      <location filename="../QScintilla/ShellWindow.py" line="726" />
       <source>Ctrl+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
-      <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/ShellWindow.py" line="733" />
-      <location filename="../QScintilla/ShellWindow.py" line="732" />
+      <location filename="../QScintilla/MiniEditor.py" line="1135" />
+      <location filename="../QScintilla/MiniEditor.py" line="1134" />
+      <location filename="../QScintilla/ShellWindow.py" line="737" />
+      <location filename="../QScintilla/ShellWindow.py" line="736" />
       <source>Move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1140" />
-      <location filename="../QScintilla/ShellWindow.py" line="734" />
+      <location filename="../QScintilla/MiniEditor.py" line="1136" />
+      <location filename="../QScintilla/ShellWindow.py" line="738" />
       <source>PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/ShellWindow.py" line="745" />
-      <location filename="../QScintilla/ShellWindow.py" line="744" />
+      <location filename="../QScintilla/MiniEditor.py" line="1147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1146" />
+      <location filename="../QScintilla/ShellWindow.py" line="749" />
+      <location filename="../QScintilla/ShellWindow.py" line="748" />
       <source>Move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1152" />
-      <location filename="../QScintilla/ShellWindow.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="1148" />
+      <location filename="../QScintilla/ShellWindow.py" line="750" />
       <source>PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1159" />
-      <location filename="../QScintilla/ShellWindow.py" line="753" />
+      <location filename="../QScintilla/MiniEditor.py" line="1155" />
+      <location filename="../QScintilla/ShellWindow.py" line="757" />
       <source>Meta+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
-      <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/ShellWindow.py" line="761" />
-      <location filename="../QScintilla/ShellWindow.py" line="760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1855" />
+      <location filename="../QScintilla/MiniEditor.py" line="1854" />
+      <location filename="../QScintilla/ShellWindow.py" line="765" />
+      <location filename="../QScintilla/ShellWindow.py" line="764" />
       <source>Escape</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1860" />
-      <location filename="../QScintilla/ShellWindow.py" line="762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1856" />
+      <location filename="../QScintilla/ShellWindow.py" line="766" />
       <source>Esc</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1233" />
-      <location filename="../QScintilla/MiniEditor.py" line="1230" />
-      <location filename="../QScintilla/ShellWindow.py" line="775" />
-      <location filename="../QScintilla/ShellWindow.py" line="772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1226" />
+      <location filename="../QScintilla/ShellWindow.py" line="779" />
+      <location filename="../QScintilla/ShellWindow.py" line="776" />
       <source>Extend selection left one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1236" />
-      <location filename="../QScintilla/ShellWindow.py" line="778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1232" />
+      <location filename="../QScintilla/ShellWindow.py" line="782" />
       <source>Shift+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1243" />
-      <location filename="../QScintilla/ShellWindow.py" line="785" />
+      <location filename="../QScintilla/MiniEditor.py" line="1239" />
+      <location filename="../QScintilla/ShellWindow.py" line="789" />
       <source>Meta+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1253" />
-      <location filename="../QScintilla/MiniEditor.py" line="1250" />
-      <location filename="../QScintilla/ShellWindow.py" line="795" />
-      <location filename="../QScintilla/ShellWindow.py" line="792" />
+      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1246" />
+      <location filename="../QScintilla/ShellWindow.py" line="799" />
+      <location filename="../QScintilla/ShellWindow.py" line="796" />
       <source>Extend selection right one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1256" />
-      <location filename="../QScintilla/ShellWindow.py" line="798" />
+      <location filename="../QScintilla/MiniEditor.py" line="1252" />
+      <location filename="../QScintilla/ShellWindow.py" line="802" />
       <source>Shift+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1263" />
-      <location filename="../QScintilla/ShellWindow.py" line="805" />
+      <location filename="../QScintilla/MiniEditor.py" line="1259" />
+      <location filename="../QScintilla/ShellWindow.py" line="809" />
       <source>Meta+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
-      <location filename="../QScintilla/MiniEditor.py" line="1347" />
-      <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/ShellWindow.py" line="813" />
-      <location filename="../QScintilla/ShellWindow.py" line="812" />
+      <location filename="../QScintilla/MiniEditor.py" line="1343" />
+      <location filename="../QScintilla/MiniEditor.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="817" />
+      <location filename="../QScintilla/ShellWindow.py" line="816" />
       <source>Extend selection left one word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1356" />
-      <location filename="../QScintilla/MiniEditor.py" line="1316" />
-      <location filename="../QScintilla/ShellWindow.py" line="822" />
+      <location filename="../QScintilla/MiniEditor.py" line="1352" />
+      <location filename="../QScintilla/MiniEditor.py" line="1312" />
+      <location filename="../QScintilla/ShellWindow.py" line="826" />
       <source>Alt+Shift+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2277" />
-      <location filename="../QScintilla/MiniEditor.py" line="1362" />
-      <location filename="../QScintilla/ShellWindow.py" line="828" />
+      <location filename="../QScintilla/MiniEditor.py" line="2273" />
+      <location filename="../QScintilla/MiniEditor.py" line="1358" />
+      <location filename="../QScintilla/ShellWindow.py" line="832" />
       <source>Ctrl+Shift+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1373" />
-      <location filename="../QScintilla/MiniEditor.py" line="1370" />
-      <location filename="../QScintilla/ShellWindow.py" line="839" />
-      <location filename="../QScintilla/ShellWindow.py" line="836" />
+      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1366" />
+      <location filename="../QScintilla/ShellWindow.py" line="843" />
+      <location filename="../QScintilla/ShellWindow.py" line="840" />
       <source>Extend selection right one word</source>
       <translation type="unfinished" />
     </message>
@@ -91094,60 +91202,60 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1384" />
-      <location filename="../QScintilla/MiniEditor.py" line="1338" />
-      <location filename="../QScintilla/ShellWindow.py" line="850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1380" />
+      <location filename="../QScintilla/MiniEditor.py" line="1334" />
+      <location filename="../QScintilla/ShellWindow.py" line="854" />
       <source>Alt+Shift+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1838" />
-      <location filename="../QScintilla/MiniEditor.py" line="1390" />
-      <location filename="../QScintilla/ShellWindow.py" line="856" />
+      <location filename="../QScintilla/MiniEditor.py" line="1834" />
+      <location filename="../QScintilla/MiniEditor.py" line="1386" />
+      <location filename="../QScintilla/ShellWindow.py" line="860" />
       <source>Ctrl+Shift+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1402" />
       <location filename="../QScintilla/MiniEditor.py" line="1398" />
+      <location filename="../QScintilla/MiniEditor.py" line="1394" />
+      <location filename="../QScintilla/ShellWindow.py" line="872" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
-      <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1413" />
-      <location filename="../QScintilla/ShellWindow.py" line="879" />
+      <location filename="../QScintilla/MiniEditor.py" line="1409" />
+      <location filename="../QScintilla/ShellWindow.py" line="883" />
       <source>Shift+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1423" />
-      <location filename="../QScintilla/MiniEditor.py" line="1420" />
-      <location filename="../QScintilla/ShellWindow.py" line="889" />
-      <location filename="../QScintilla/ShellWindow.py" line="886" />
+      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1416" />
+      <location filename="../QScintilla/ShellWindow.py" line="893" />
+      <location filename="../QScintilla/ShellWindow.py" line="890" />
       <source>Extend selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1433" />
-      <location filename="../QScintilla/ShellWindow.py" line="899" />
+      <location filename="../QScintilla/MiniEditor.py" line="1429" />
+      <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Meta+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1437" />
-      <location filename="../QScintilla/ShellWindow.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
+      <location filename="../QScintilla/ShellWindow.py" line="907" />
       <source>Shift+End</source>
       <translation type="unfinished" />
     </message>
@@ -91155,255 +91263,255 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2533" />
-      <location filename="../QScintilla/ShellWindow.py" line="917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2529" />
+      <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2535" />
-      <location filename="../QScintilla/ShellWindow.py" line="919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2531" />
+      <location filename="../QScintilla/ShellWindow.py" line="923" />
       <source>&amp;Search...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2537" />
-      <location filename="../QScintilla/ShellWindow.py" line="921" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
+      <location filename="../QScintilla/ShellWindow.py" line="925" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2544" />
-      <location filename="../QScintilla/ShellWindow.py" line="928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2540" />
+      <location filename="../QScintilla/ShellWindow.py" line="932" />
       <source>Search for a text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="935" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2559" />
-      <location filename="../QScintilla/ShellWindow.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="2555" />
+      <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>Search next</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2561" />
-      <location filename="../QScintilla/ShellWindow.py" line="945" />
+      <location filename="../QScintilla/MiniEditor.py" line="2557" />
+      <location filename="../QScintilla/ShellWindow.py" line="949" />
       <source>Search &amp;next</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2563" />
-      <location filename="../QScintilla/ShellWindow.py" line="947" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
+      <location filename="../QScintilla/ShellWindow.py" line="951" />
       <source>F3</source>
       <comment>Search|Search next</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2570" />
-      <location filename="../QScintilla/ShellWindow.py" line="954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2566" />
+      <location filename="../QScintilla/ShellWindow.py" line="958" />
       <source>Search next occurrence of text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="957" />
+      <location filename="../QScintilla/ShellWindow.py" line="961" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2585" />
-      <location filename="../QScintilla/ShellWindow.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="2581" />
+      <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Search previous</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2587" />
-      <location filename="../QScintilla/ShellWindow.py" line="973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2583" />
+      <location filename="../QScintilla/ShellWindow.py" line="977" />
       <source>Search &amp;previous</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2589" />
-      <location filename="../QScintilla/ShellWindow.py" line="975" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
+      <location filename="../QScintilla/ShellWindow.py" line="979" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2598" />
-      <location filename="../QScintilla/ShellWindow.py" line="984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2594" />
+      <location filename="../QScintilla/ShellWindow.py" line="988" />
       <source>Search previous occurrence of text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="989" />
+      <location filename="../QScintilla/ShellWindow.py" line="993" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2758" />
-      <location filename="../QScintilla/ShellWindow.py" line="1010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2754" />
+      <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Zoom in</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2760" />
-      <location filename="../QScintilla/ShellWindow.py" line="1012" />
+      <location filename="../QScintilla/MiniEditor.py" line="2756" />
+      <location filename="../QScintilla/ShellWindow.py" line="1016" />
       <source>Zoom &amp;in</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2762" />
-      <location filename="../QScintilla/ShellWindow.py" line="1014" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
+      <location filename="../QScintilla/ShellWindow.py" line="1018" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2765" />
-      <location filename="../QScintilla/ShellWindow.py" line="1017" />
+      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/ShellWindow.py" line="1021" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2771" />
-      <location filename="../QScintilla/ShellWindow.py" line="1023" />
+      <location filename="../QScintilla/MiniEditor.py" line="2767" />
+      <location filename="../QScintilla/ShellWindow.py" line="1027" />
       <source>Zoom in on the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2774" />
-      <location filename="../QScintilla/ShellWindow.py" line="1026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/ShellWindow.py" line="1030" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2784" />
-      <location filename="../QScintilla/ShellWindow.py" line="1036" />
+      <location filename="../QScintilla/MiniEditor.py" line="2780" />
+      <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Zoom out</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2786" />
-      <location filename="../QScintilla/ShellWindow.py" line="1038" />
+      <location filename="../QScintilla/MiniEditor.py" line="2782" />
+      <location filename="../QScintilla/ShellWindow.py" line="1042" />
       <source>Zoom &amp;out</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2788" />
-      <location filename="../QScintilla/ShellWindow.py" line="1040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
+      <location filename="../QScintilla/ShellWindow.py" line="1044" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2791" />
-      <location filename="../QScintilla/ShellWindow.py" line="1043" />
+      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/ShellWindow.py" line="1047" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2797" />
-      <location filename="../QScintilla/ShellWindow.py" line="1049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2793" />
+      <location filename="../QScintilla/ShellWindow.py" line="1053" />
       <source>Zoom out on the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2800" />
-      <location filename="../QScintilla/ShellWindow.py" line="1052" />
+      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/ShellWindow.py" line="1056" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2810" />
-      <location filename="../QScintilla/ShellWindow.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="2806" />
+      <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Zoom reset</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2812" />
-      <location filename="../QScintilla/ShellWindow.py" line="1064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2808" />
+      <location filename="../QScintilla/ShellWindow.py" line="1068" />
       <source>Zoom &amp;reset</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2814" />
-      <location filename="../QScintilla/ShellWindow.py" line="1066" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
+      <location filename="../QScintilla/ShellWindow.py" line="1070" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2821" />
-      <location filename="../QScintilla/ShellWindow.py" line="1073" />
+      <location filename="../QScintilla/MiniEditor.py" line="2817" />
+      <location filename="../QScintilla/ShellWindow.py" line="1077" />
       <source>Reset the zoom of the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2824" />
-      <location filename="../QScintilla/ShellWindow.py" line="1076" />
+      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/ShellWindow.py" line="1080" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2835" />
-      <location filename="../QScintilla/ShellWindow.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="2831" />
+      <location filename="../QScintilla/ShellWindow.py" line="1091" />
       <source>Zoom</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2837" />
-      <location filename="../QScintilla/ShellWindow.py" line="1089" />
+      <location filename="../QScintilla/MiniEditor.py" line="2833" />
+      <location filename="../QScintilla/ShellWindow.py" line="1093" />
       <source>&amp;Zoom</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2844" />
-      <location filename="../QScintilla/ShellWindow.py" line="1096" />
+      <location filename="../QScintilla/MiniEditor.py" line="2840" />
+      <location filename="../QScintilla/ShellWindow.py" line="1100" />
       <source>Zoom the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2847" />
-      <location filename="../QScintilla/ShellWindow.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/ShellWindow.py" line="1103" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -91417,977 +91525,977 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
-      <location filename="../QScintilla/MiniEditor.py" line="959" />
-      <location filename="../QScintilla/MiniEditor.py" line="958" />
+      <location filename="../QScintilla/MiniEditor.py" line="955" />
+      <location filename="../QScintilla/MiniEditor.py" line="954" />
       <source>Move left one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
-      <location filename="../QScintilla/MiniEditor.py" line="975" />
-      <location filename="../QScintilla/MiniEditor.py" line="974" />
+      <location filename="../QScintilla/MiniEditor.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="970" />
       <source>Move right one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2129" />
-      <location filename="../QScintilla/MiniEditor.py" line="1019" />
-      <location filename="../QScintilla/MiniEditor.py" line="983" />
+      <location filename="../QScintilla/MiniEditor.py" line="2125" />
+      <location filename="../QScintilla/MiniEditor.py" line="1015" />
+      <location filename="../QScintilla/MiniEditor.py" line="979" />
       <source>Alt+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
-      <location filename="../QScintilla/MiniEditor.py" line="1051" />
-      <location filename="../QScintilla/MiniEditor.py" line="1050" />
+      <location filename="../QScintilla/MiniEditor.py" line="1047" />
+      <location filename="../QScintilla/MiniEditor.py" line="1046" />
       <source>Move to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1063" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
       <source>Alt+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1090" />
+      <location filename="../QScintilla/MiniEditor.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1086" />
       <source>Scroll view down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
-      <location filename="../QScintilla/MiniEditor.py" line="1102" />
+      <location filename="../QScintilla/MiniEditor.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="1098" />
       <source>Scroll view up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
-      <location filename="../QScintilla/MiniEditor.py" line="1114" />
+      <location filename="../QScintilla/MiniEditor.py" line="1111" />
+      <location filename="../QScintilla/MiniEditor.py" line="1110" />
       <source>Move up one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1116" />
+      <location filename="../QScintilla/MiniEditor.py" line="1112" />
       <source>Alt+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
-      <location filename="../QScintilla/MiniEditor.py" line="1126" />
+      <location filename="../QScintilla/MiniEditor.py" line="1123" />
+      <location filename="../QScintilla/MiniEditor.py" line="1122" />
       <source>Move down one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1128" />
+      <location filename="../QScintilla/MiniEditor.py" line="1124" />
       <source>Alt+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
-      <location filename="../QScintilla/MiniEditor.py" line="1167" />
-      <location filename="../QScintilla/MiniEditor.py" line="1166" />
+      <location filename="../QScintilla/MiniEditor.py" line="1163" />
+      <location filename="../QScintilla/MiniEditor.py" line="1162" />
       <source>Move to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1179" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
       <source>Ctrl+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
-      <location filename="../QScintilla/MiniEditor.py" line="1187" />
-      <location filename="../QScintilla/MiniEditor.py" line="1186" />
+      <location filename="../QScintilla/MiniEditor.py" line="1183" />
+      <location filename="../QScintilla/MiniEditor.py" line="1182" />
       <source>Move to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1199" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
       <source>Ctrl+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
-      <location filename="../QScintilla/MiniEditor.py" line="1218" />
+      <location filename="../QScintilla/MiniEditor.py" line="1215" />
+      <location filename="../QScintilla/MiniEditor.py" line="1214" />
       <source>Unindent one level</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1220" />
+      <location filename="../QScintilla/MiniEditor.py" line="1216" />
       <source>Shift+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
-      <location filename="../QScintilla/MiniEditor.py" line="1270" />
+      <location filename="../QScintilla/MiniEditor.py" line="1267" />
+      <location filename="../QScintilla/MiniEditor.py" line="1266" />
       <source>Extend selection up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1272" />
+      <location filename="../QScintilla/MiniEditor.py" line="1268" />
       <source>Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1279" />
+      <location filename="../QScintilla/MiniEditor.py" line="1275" />
       <source>Meta+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
-      <location filename="../QScintilla/MiniEditor.py" line="1286" />
+      <location filename="../QScintilla/MiniEditor.py" line="1283" />
+      <location filename="../QScintilla/MiniEditor.py" line="1282" />
       <source>Extend selection down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1288" />
+      <location filename="../QScintilla/MiniEditor.py" line="1284" />
       <source>Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1291" />
       <source>Meta+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1305" />
-      <location filename="../QScintilla/MiniEditor.py" line="1302" />
+      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1298" />
       <source>Extend selection left one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1327" />
-      <location filename="../QScintilla/MiniEditor.py" line="1324" />
+      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1320" />
       <source>Extend selection right one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1447" />
-      <location filename="../QScintilla/MiniEditor.py" line="1444" />
+      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1440" />
       <source>Extend selection up one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1450" />
+      <location filename="../QScintilla/MiniEditor.py" line="1446" />
       <source>Alt+Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1463" />
-      <location filename="../QScintilla/MiniEditor.py" line="1460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1456" />
       <source>Extend selection down one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1466" />
+      <location filename="../QScintilla/MiniEditor.py" line="1462" />
       <source>Alt+Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
-      <location filename="../QScintilla/MiniEditor.py" line="1476" />
+      <location filename="../QScintilla/MiniEditor.py" line="1473" />
+      <location filename="../QScintilla/MiniEditor.py" line="1472" />
       <source>Extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1478" />
+      <location filename="../QScintilla/MiniEditor.py" line="1474" />
       <source>Shift+PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
-      <location filename="../QScintilla/MiniEditor.py" line="1488" />
+      <location filename="../QScintilla/MiniEditor.py" line="1485" />
+      <location filename="../QScintilla/MiniEditor.py" line="1484" />
       <source>Extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1490" />
+      <location filename="../QScintilla/MiniEditor.py" line="1486" />
       <source>Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1497" />
+      <location filename="../QScintilla/MiniEditor.py" line="1493" />
       <source>Meta+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1507" />
-      <location filename="../QScintilla/MiniEditor.py" line="1504" />
+      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1500" />
       <source>Extend selection to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1517" />
+      <location filename="../QScintilla/MiniEditor.py" line="1513" />
       <source>Ctrl+Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1518" />
       <source>Ctrl+Shift+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1533" />
-      <location filename="../QScintilla/MiniEditor.py" line="1530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1526" />
       <source>Extend selection to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1544" />
+      <location filename="../QScintilla/MiniEditor.py" line="1540" />
       <source>Ctrl+Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1550" />
+      <location filename="../QScintilla/MiniEditor.py" line="1546" />
       <source>Ctrl+Shift+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1583" />
-      <location filename="../QScintilla/MiniEditor.py" line="1580" />
+      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1576" />
       <source>Delete previous character if not at start of line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
-      <location filename="../QScintilla/MiniEditor.py" line="1696" />
+      <location filename="../QScintilla/MiniEditor.py" line="1693" />
+      <location filename="../QScintilla/MiniEditor.py" line="1692" />
       <source>Duplicate current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1698" />
+      <location filename="../QScintilla/MiniEditor.py" line="1694" />
       <source>Ctrl+D</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1711" />
-      <location filename="../QScintilla/MiniEditor.py" line="1708" />
+      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1704" />
       <source>Swap current and previous lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1714" />
+      <location filename="../QScintilla/MiniEditor.py" line="1710" />
       <source>Ctrl+T</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
-      <location filename="../QScintilla/MiniEditor.py" line="1724" />
+      <location filename="../QScintilla/MiniEditor.py" line="1721" />
+      <location filename="../QScintilla/MiniEditor.py" line="1720" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1726" />
+      <location filename="../QScintilla/MiniEditor.py" line="1722" />
       <source>Meta+Alt+R</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
-      <location filename="../QScintilla/MiniEditor.py" line="1736" />
+      <location filename="../QScintilla/MiniEditor.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="1732" />
       <source>Cut current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1738" />
+      <location filename="../QScintilla/MiniEditor.py" line="1734" />
       <source>Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="1748" />
+      <location filename="../QScintilla/MiniEditor.py" line="1745" />
+      <location filename="../QScintilla/MiniEditor.py" line="1744" />
       <source>Copy current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1750" />
+      <location filename="../QScintilla/MiniEditor.py" line="1746" />
       <source>Ctrl+Shift+T</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
-      <location filename="../QScintilla/MiniEditor.py" line="1760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1757" />
+      <location filename="../QScintilla/MiniEditor.py" line="1756" />
       <source>Toggle insert/overtype</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1758" />
       <source>Ins</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1775" />
-      <location filename="../QScintilla/MiniEditor.py" line="1772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1768" />
       <source>Convert selection to lower case</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1774" />
       <source>Alt+Shift+U</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1791" />
-      <location filename="../QScintilla/MiniEditor.py" line="1788" />
+      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1784" />
       <source>Convert selection to upper case</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1794" />
+      <location filename="../QScintilla/MiniEditor.py" line="1790" />
       <source>Ctrl+Shift+U</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
-      <location filename="../QScintilla/MiniEditor.py" line="1805" />
-      <location filename="../QScintilla/MiniEditor.py" line="1804" />
+      <location filename="../QScintilla/MiniEditor.py" line="1801" />
+      <location filename="../QScintilla/MiniEditor.py" line="1800" />
       <source>Move to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1817" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
       <source>Alt+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1827" />
-      <location filename="../QScintilla/MiniEditor.py" line="1824" />
+      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1820" />
       <source>Extend selection to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
-      <location filename="../QScintilla/MiniEditor.py" line="1847" />
-      <location filename="../QScintilla/MiniEditor.py" line="1846" />
+      <location filename="../QScintilla/MiniEditor.py" line="1843" />
+      <location filename="../QScintilla/MiniEditor.py" line="1842" />
       <source>Formfeed</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1873" />
-      <location filename="../QScintilla/MiniEditor.py" line="1870" />
+      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1866" />
       <source>Extend rectangular selection down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1876" />
+      <location filename="../QScintilla/MiniEditor.py" line="1872" />
       <source>Alt+Ctrl+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1884" />
+      <location filename="../QScintilla/MiniEditor.py" line="1880" />
       <source>Meta+Alt+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1895" />
-      <location filename="../QScintilla/MiniEditor.py" line="1892" />
+      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1888" />
       <source>Extend rectangular selection up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1898" />
+      <location filename="../QScintilla/MiniEditor.py" line="1894" />
       <source>Alt+Ctrl+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1906" />
+      <location filename="../QScintilla/MiniEditor.py" line="1902" />
       <source>Meta+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1917" />
-      <location filename="../QScintilla/MiniEditor.py" line="1914" />
+      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1910" />
       <source>Extend rectangular selection left one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1920" />
+      <location filename="../QScintilla/MiniEditor.py" line="1916" />
       <source>Alt+Ctrl+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1928" />
+      <location filename="../QScintilla/MiniEditor.py" line="1924" />
       <source>Meta+Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1939" />
-      <location filename="../QScintilla/MiniEditor.py" line="1936" />
+      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1932" />
       <source>Extend rectangular selection right one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1942" />
+      <location filename="../QScintilla/MiniEditor.py" line="1938" />
       <source>Alt+Ctrl+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1950" />
+      <location filename="../QScintilla/MiniEditor.py" line="1946" />
       <source>Meta+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1963" />
-      <location filename="../QScintilla/MiniEditor.py" line="1958" />
+      <location filename="../QScintilla/MiniEditor.py" line="1959" />
+      <location filename="../QScintilla/MiniEditor.py" line="1954" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1976" />
+      <location filename="../QScintilla/MiniEditor.py" line="1972" />
       <source>Alt+Shift+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1987" />
-      <location filename="../QScintilla/MiniEditor.py" line="1984" />
+      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1980" />
       <source>Extend rectangular selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1998" />
+      <location filename="../QScintilla/MiniEditor.py" line="1994" />
       <source>Meta+Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2003" />
+      <location filename="../QScintilla/MiniEditor.py" line="1999" />
       <source>Alt+Shift+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2013" />
-      <location filename="../QScintilla/MiniEditor.py" line="2010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2006" />
       <source>Extend rectangular selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2016" />
+      <location filename="../QScintilla/MiniEditor.py" line="2012" />
       <source>Alt+Shift+PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2029" />
-      <location filename="../QScintilla/MiniEditor.py" line="2026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2022" />
       <source>Extend rectangular selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2032" />
+      <location filename="../QScintilla/MiniEditor.py" line="2028" />
       <source>Alt+Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2036" />
       <source>Meta+Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="2048" />
+      <location filename="../QScintilla/MiniEditor.py" line="2511" />
+      <location filename="../QScintilla/MiniEditor.py" line="2510" />
+      <location filename="../QScintilla/MiniEditor.py" line="2045" />
+      <location filename="../QScintilla/MiniEditor.py" line="2044" />
       <source>Duplicate current selection</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2516" />
-      <location filename="../QScintilla/MiniEditor.py" line="2050" />
+      <location filename="../QScintilla/MiniEditor.py" line="2512" />
+      <location filename="../QScintilla/MiniEditor.py" line="2046" />
       <source>Ctrl+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2064" />
-      <location filename="../QScintilla/MiniEditor.py" line="2061" />
+      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2057" />
       <source>Scroll to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
-      <location filename="../QScintilla/MiniEditor.py" line="2083" />
-      <location filename="../QScintilla/MiniEditor.py" line="2082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2079" />
+      <location filename="../QScintilla/MiniEditor.py" line="2078" />
       <source>Scroll to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2102" />
-      <location filename="../QScintilla/MiniEditor.py" line="2099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2095" />
       <source>Scroll vertically to center current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2112" />
+      <location filename="../QScintilla/MiniEditor.py" line="2108" />
       <source>Meta+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
-      <location filename="../QScintilla/MiniEditor.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2120" />
+      <location filename="../QScintilla/MiniEditor.py" line="2117" />
+      <location filename="../QScintilla/MiniEditor.py" line="2116" />
       <source>Move to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2140" />
-      <location filename="../QScintilla/MiniEditor.py" line="2137" />
+      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2133" />
       <source>Extend selection to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2163" />
-      <location filename="../QScintilla/MiniEditor.py" line="2160" />
+      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2156" />
       <source>Move to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2180" />
-      <location filename="../QScintilla/MiniEditor.py" line="2177" />
+      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2173" />
       <source>Extend selection to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2197" />
-      <location filename="../QScintilla/MiniEditor.py" line="2194" />
+      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2190" />
       <source>Move to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2207" />
+      <location filename="../QScintilla/MiniEditor.py" line="2203" />
       <source>Meta+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2218" />
-      <location filename="../QScintilla/MiniEditor.py" line="2215" />
+      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2211" />
       <source>Extend selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2229" />
+      <location filename="../QScintilla/MiniEditor.py" line="2225" />
       <source>Meta+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2242" />
       <location filename="../QScintilla/MiniEditor.py" line="2238" />
+      <location filename="../QScintilla/MiniEditor.py" line="2234" />
       <source>Extend rectangular selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2254" />
+      <location filename="../QScintilla/MiniEditor.py" line="2250" />
       <source>Meta+Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2266" />
-      <location filename="../QScintilla/MiniEditor.py" line="2263" />
+      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2259" />
       <source>Extend selection to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2289" />
-      <location filename="../QScintilla/MiniEditor.py" line="2286" />
+      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2282" />
       <source>Move to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2307" />
       <location filename="../QScintilla/MiniEditor.py" line="2303" />
+      <location filename="../QScintilla/MiniEditor.py" line="2299" />
       <source>Extend selection to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2326" />
       <location filename="../QScintilla/MiniEditor.py" line="2322" />
+      <location filename="../QScintilla/MiniEditor.py" line="2318" />
       <source>Move to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2346" />
-      <location filename="../QScintilla/MiniEditor.py" line="2341" />
+      <location filename="../QScintilla/MiniEditor.py" line="2342" />
+      <location filename="../QScintilla/MiniEditor.py" line="2337" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2365" />
-      <location filename="../QScintilla/MiniEditor.py" line="2362" />
+      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2358" />
       <source>Move to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2382" />
-      <location filename="../QScintilla/MiniEditor.py" line="2379" />
+      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2375" />
       <source>Extend selection to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
-      <location filename="../QScintilla/MiniEditor.py" line="2397" />
-      <location filename="../QScintilla/MiniEditor.py" line="2396" />
+      <location filename="../QScintilla/MiniEditor.py" line="2393" />
+      <location filename="../QScintilla/MiniEditor.py" line="2392" />
       <source>Stuttered move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2412" />
-      <location filename="../QScintilla/MiniEditor.py" line="2409" />
+      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2405" />
       <source>Stuttered extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2429" />
-      <location filename="../QScintilla/MiniEditor.py" line="2426" />
+      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2422" />
       <source>Stuttered move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2446" />
-      <location filename="../QScintilla/MiniEditor.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2439" />
       <source>Stuttered extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2463" />
-      <location filename="../QScintilla/MiniEditor.py" line="2460" />
+      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2456" />
       <source>Delete right to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2473" />
+      <location filename="../QScintilla/MiniEditor.py" line="2469" />
       <source>Alt+Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2484" />
-      <location filename="../QScintilla/MiniEditor.py" line="2481" />
+      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2477" />
       <source>Move selected lines up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2501" />
-      <location filename="../QScintilla/MiniEditor.py" line="2498" />
+      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2494" />
       <source>Move selected lines down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2547" />
+      <location filename="../QScintilla/MiniEditor.py" line="2543" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2573" />
+      <location filename="../QScintilla/MiniEditor.py" line="2569" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2603" />
+      <location filename="../QScintilla/MiniEditor.py" line="2599" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2617" />
-      <location filename="../QScintilla/MiniEditor.py" line="2615" />
+      <location filename="../QScintilla/MiniEditor.py" line="2613" />
+      <location filename="../QScintilla/MiniEditor.py" line="2611" />
       <source>Clear search markers</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2619" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2628" />
+      <location filename="../QScintilla/MiniEditor.py" line="2624" />
       <source>Clear all displayed search markers</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2633" />
+      <location filename="../QScintilla/MiniEditor.py" line="2629" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2639" />
       <source>Replace</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2644" />
+      <location filename="../QScintilla/MiniEditor.py" line="2640" />
       <source>&amp;Replace...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2646" />
+      <location filename="../QScintilla/MiniEditor.py" line="2642" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2653" />
+      <location filename="../QScintilla/MiniEditor.py" line="2649" />
       <source>Replace some text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2656" />
+      <location filename="../QScintilla/MiniEditor.py" line="2652" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2670" />
-      <location filename="../QScintilla/MiniEditor.py" line="2668" />
+      <location filename="../QScintilla/MiniEditor.py" line="2666" />
+      <location filename="../QScintilla/MiniEditor.py" line="2664" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2672" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2681" />
+      <location filename="../QScintilla/MiniEditor.py" line="2677" />
       <source>Replace the found text and search the next occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2686" />
+      <location filename="../QScintilla/MiniEditor.py" line="2682" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2702" />
-      <location filename="../QScintilla/MiniEditor.py" line="2700" />
+      <location filename="../QScintilla/MiniEditor.py" line="2698" />
+      <location filename="../QScintilla/MiniEditor.py" line="2696" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2704" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2713" />
+      <location filename="../QScintilla/MiniEditor.py" line="2709" />
       <source>Replace the found text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2716" />
+      <location filename="../QScintilla/MiniEditor.py" line="2712" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2729" />
-      <location filename="../QScintilla/MiniEditor.py" line="2727" />
+      <location filename="../QScintilla/MiniEditor.py" line="2725" />
+      <location filename="../QScintilla/MiniEditor.py" line="2723" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2731" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2740" />
+      <location filename="../QScintilla/MiniEditor.py" line="2736" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2743" />
+      <location filename="../QScintilla/MiniEditor.py" line="2739" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -94325,29 +94433,29 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7350" />
-      <location filename="../ViewManager/ViewManager.py" line="7336" />
-      <location filename="../ViewManager/ViewManager.py" line="7304" />
+      <location filename="../ViewManager/ViewManager.py" line="7349" />
+      <location filename="../ViewManager/ViewManager.py" line="7335" />
+      <location filename="../ViewManager/ViewManager.py" line="7303" />
       <source>Edit Spelling Dictionary</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7307" />
+      <location filename="../ViewManager/ViewManager.py" line="7306" />
       <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="7323" />
+      <location filename="../ViewManager/ViewManager.py" line="7322" />
       <source>Editing {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7339" />
+      <location filename="../ViewManager/ViewManager.py" line="7338" />
       <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="7353" />
+      <location filename="../ViewManager/ViewManager.py" line="7352" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation type="unfinished" />
     </message>
@@ -95408,7 +95516,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="135" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="136" />
       <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="96" />
       <source>Failed
 
@@ -95416,46 +95524,46 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="144" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="145" />
       <source>
 pyvenv finished.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="159" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="160" />
       <source>No suitable pyvenv program could be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="222" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="223" />
       <source>
 Writing log file '{0}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="226" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="227" />
       <source>Output:
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="231" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="232" />
       <source>Errors:
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="235" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="236" />
       <source>The logfile '{0}' could not be written.
 Reason: {1}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="239" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="240" />
       <source>Done.
 </source>
       <translation type="unfinished" />
@@ -97643,32 +97751,32 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2312" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2341" />
       <source>Quota Request</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2313" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2342" />
       <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="2389" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2385" />
       <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="2397" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2393" />
       <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="2402" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2398" />
       <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="2409" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2405" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -100658,28 +100766,28 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="143" />
       <source>No current editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="145" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
       <source>Please open or create a file first.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="182" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="166" />
+      <source>Create Package</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
+      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/PluginWizardEricPlugin.py" line="183" />
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
-      <source>Create Package</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="168" />
-      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="184" />
       <source>&lt;p&gt;The package file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -100937,38 +101045,38 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1270" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1274" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1801" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1282" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1807" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1284" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1811" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1288" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1814" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1291" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1295" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1297" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1301" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1320" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -100979,35 +101087,35 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1775" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1779" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1782" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1786" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1793" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1794" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1798" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1825" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1831" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -101688,17 +101796,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1814" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1822" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1667" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1670" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
Binary file src/eric7/i18n/eric7_en.qm has changed
--- a/src/eric7/i18n/eric7_en.ts	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/i18n/eric7_en.ts	Sun Jul 02 17:39:33 2023 +0200
@@ -1245,6 +1245,16 @@
       <source>type annotation is too long ({0} &gt; {1})</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="76" />
+      <source>'typing.Union' is deprecated, use '|' instead (see PEP 604)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="80" />
+      <source>'typing.{0}' is deprecated, use '{1}' instead (see PEP 585)</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>ApplicationDiagramBuilder</name>
@@ -1678,42 +1688,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
+      <location filename="../Utilities/BackgroundService.py" line="217" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="219" />
+      <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>Restart background client?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Utilities/BackgroundService.py" line="232" />
-      <source>Restart background client?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Utilities/BackgroundService.py" line="233" />
       <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="262" />
+      <location filename="../Utilities/BackgroundService.py" line="261" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="497" />
+      <location filename="../Utilities/BackgroundService.py" line="502" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="506" />
+      <location filename="../Utilities/BackgroundService.py" line="511" />
       <source>Background client disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="507" />
+      <location filename="../Utilities/BackgroundService.py" line="512" />
       <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>
@@ -1776,22 +1786,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>Yes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>No</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>yes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>no</source>
       <translation type="unfinished" />
     </message>
@@ -2207,26 +2217,31 @@
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="97" />
-      <source>Complete {0}-bit Service UUID: {1}</source>
+      <source>Complete {0}-bit Service UUID: {1}{2}</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="99" />
-      <source>Incomplete {0}-bit Service UUID: {1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="110" />
-      <source>Manufacturer ID: 0x{0:x} ({1})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="114" />
+      <source>Incomplete {0}-bit Service UUID: {1}{2}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="107" />
+      <source> - {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="121" />
+      <source>Manufacturer ID: 0x{0:x} - {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="125" />
       <source>Manufacturer ID: 0x{0:x}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="123" />
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="134" />
       <source>Tx Power Level [dBm]: {0}</source>
       <translation type="unfinished" />
     </message>
@@ -2722,17 +2737,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="335" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
       <source>New Bookmark Folder</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="337" />
       <source>Enter title for new bookmark folder:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="343" />
       <source>New Folder</source>
       <translation type="unfinished" />
     </message>
@@ -2836,22 +2851,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="543" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="541" />
       <source>Remove Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="585" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="583" />
       <source>Insert Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="626" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="624" />
       <source>Name Change</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="630" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="628" />
       <source>Address Change</source>
       <translation type="unfinished" />
     </message>
@@ -2887,22 +2902,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="399" />
       <source>Export Bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="403" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
       <source>XBEL bookmarks (*.xbel);;XBEL bookmarks (*.xml);;HTML Bookmarks (*.html)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="429" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="427" />
       <source>Exporting Bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="430" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="428" />
       <source>Error exporting bookmarks to &lt;b&gt;{0}&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
@@ -3160,231 +3175,231 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="238" />
+      <location filename="../UI/Browser.py" line="239" />
       <source>Show Hidden Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="244" />
+      <location filename="../UI/Browser.py" line="245" />
       <source>New</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="246" />
+      <location filename="../UI/Browser.py" line="247" />
       <source>Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="249" />
+      <location filename="../UI/Browser.py" line="250" />
       <source>File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="323" />
-      <location filename="../UI/Browser.py" line="285" />
-      <location filename="../UI/Browser.py" line="255" />
+      <location filename="../UI/Browser.py" line="324" />
+      <location filename="../UI/Browser.py" line="286" />
+      <location filename="../UI/Browser.py" line="256" />
       <source>Open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="258" />
+      <location filename="../UI/Browser.py" line="259" />
       <source>Run Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="622" />
-      <location filename="../UI/Browser.py" line="614" />
-      <location filename="../UI/Browser.py" line="604" />
-      <location filename="../UI/Browser.py" line="595" />
-      <location filename="../UI/Browser.py" line="305" />
-      <location filename="../UI/Browser.py" line="262" />
-      <source>Show Mime-Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="266" />
-      <source>Refresh Source File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="361" />
-      <location filename="../UI/Browser.py" line="309" />
-      <location filename="../UI/Browser.py" line="271" />
-      <source>Copy Path to Clipboard</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="369" />
-      <location filename="../UI/Browser.py" line="329" />
-      <location filename="../UI/Browser.py" line="317" />
-      <location filename="../UI/Browser.py" line="279" />
-      <source>Delete</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="288" />
-      <source>Open in Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="292" />
-      <source>Open in Icon Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="296" />
-      <source>Open in Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="300" />
-      <source>Open in PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="388" />
-      <location filename="../UI/Browser.py" line="379" />
-      <location filename="../UI/Browser.py" line="335" />
-      <source>New toplevel directory...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="339" />
-      <source>Add as toplevel directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="343" />
-      <source>Remove from toplevel</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="348" />
-      <source>Refresh directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="353" />
-      <source>Find in this directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="357" />
-      <source>Find &amp;&amp; Replace in this directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="373" />
-      <source>Goto</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="491" />
-      <source>Line {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="596" />
-      <source>The mime type of the file could not be determined.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="615" />
-      <location filename="../UI/Browser.py" line="605" />
-      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="623" />
+      <location filename="../UI/Browser.py" line="615" />
+      <location filename="../UI/Browser.py" line="605" />
+      <location filename="../UI/Browser.py" line="596" />
+      <location filename="../UI/Browser.py" line="306" />
+      <location filename="../UI/Browser.py" line="263" />
+      <source>Show Mime-Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="267" />
+      <source>Refresh Source File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="362" />
+      <location filename="../UI/Browser.py" line="310" />
+      <location filename="../UI/Browser.py" line="272" />
+      <source>Copy Path to Clipboard</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="370" />
+      <location filename="../UI/Browser.py" line="330" />
+      <location filename="../UI/Browser.py" line="318" />
+      <location filename="../UI/Browser.py" line="280" />
+      <source>Delete</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="289" />
+      <source>Open in Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="293" />
+      <source>Open in Icon Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="297" />
+      <source>Open in Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="301" />
+      <source>Open in PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="389" />
+      <location filename="../UI/Browser.py" line="380" />
+      <location filename="../UI/Browser.py" line="336" />
+      <source>New toplevel directory...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="340" />
+      <source>Add as toplevel directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="344" />
+      <source>Remove from toplevel</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="349" />
+      <source>Refresh directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="354" />
+      <source>Find in this directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="358" />
+      <source>Find &amp;&amp; Replace in this directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="374" />
+      <source>Goto</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="492" />
+      <source>Line {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="597" />
+      <source>The mime type of the file could not be determined.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="616" />
+      <location filename="../UI/Browser.py" line="606" />
+      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="624" />
       <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="731" />
+      <location filename="../UI/Browser.py" line="732" />
       <source>New toplevel directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="967" />
-      <location filename="../UI/Browser.py" line="955" />
-      <location filename="../UI/Browser.py" line="946" />
-      <source>New Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="947" />
-      <source>Name for new directory:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="994" />
-      <location filename="../UI/Browser.py" line="956" />
-      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="968" />
+      <location filename="../UI/Browser.py" line="956" />
+      <location filename="../UI/Browser.py" line="947" />
+      <source>New Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="948" />
+      <source>Name for new directory:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="995" />
+      <location filename="../UI/Browser.py" line="957" />
+      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="969" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1006" />
-      <location filename="../UI/Browser.py" line="993" />
-      <location filename="../UI/Browser.py" line="984" />
-      <source>New File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="985" />
-      <source>Name for new file:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1007" />
+      <location filename="../UI/Browser.py" line="994" />
+      <location filename="../UI/Browser.py" line="985" />
+      <source>New File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="986" />
+      <source>Name for new file:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1008" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1103" />
-      <location filename="../UI/Browser.py" line="1045" />
-      <location filename="../UI/Browser.py" line="1035" />
-      <source>Delete File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1036" />
-      <source>Do you really want to delete this file?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1104" />
       <location filename="../UI/Browser.py" line="1046" />
+      <location filename="../UI/Browser.py" line="1036" />
+      <source>Delete File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1037" />
+      <source>Do you really want to delete this file?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1105" />
+      <location filename="../UI/Browser.py" line="1047" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1071" />
-      <location filename="../UI/Browser.py" line="1061" />
-      <source>Delete Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1062" />
-      <source>Do you really want to delete this directory?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1072" />
+      <location filename="../UI/Browser.py" line="1062" />
+      <source>Delete Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1063" />
+      <source>Do you really want to delete this directory?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1073" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1092" />
-      <source>Delete Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1093" />
+      <source>Delete Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1094" />
       <source>Do you really want to delete these files?</source>
       <translation type="unfinished" />
     </message>
@@ -5025,27 +5040,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1210" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1221" />
       <source>{0} (ignored)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1285" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1296" />
       <source>No issues found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1289" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1300" />
       <source>No files found (check your ignore list).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2891" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2935" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2892" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2936" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -5531,6 +5546,16 @@
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Exempted 'typing' symbols:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Enter deprecated symbols of the 'typing' module exempted from PEP-585 checking separated by space</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
       <source>Security</source>
       <translation type="unfinished" />
     </message>
@@ -6412,7 +6437,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="174" />
+      <location filename="../Utilities/__init__.py" line="176" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation type="unfinished" />
     </message>
@@ -7534,374 +7559,377 @@
   <context>
     <name>ConfigurationWidget</name>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="174" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="175" />
       <source>Application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="180" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="181" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="182" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="183" />
       <source>Cooperation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="189" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="190" />
       <source>Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="196" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="197" />
       <source>Email</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="203" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="204" />
       <source>Graphics</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="865" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="210" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="866" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="211" />
       <source>Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="946" />
       <location filename="../Preferences/ConfigurationDialog.py" line="914" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="882" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="851" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="754" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="639" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="217" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="883" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="852" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="755" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="640" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="218" />
       <source>Icons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="223" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="224" />
       <source>IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="225" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="226" />
       <source>Log-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="232" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="233" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="239" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="240" />
       <source>MIME-Types</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="768" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="246" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="769" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="247" />
       <source>Network</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="253" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="254" />
       <source>Notifications</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="896" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="260" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="897" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="261" />
       <source>PDF Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="267" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="928" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="268" />
       <source>Python Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="274" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="275" />
       <source>Plugin Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="775" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="653" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="281" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="776" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="654" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="282" />
       <source>Printer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="288" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="289" />
       <source>Python</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="294" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="295" />
       <source>Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="782" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="296" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="783" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="297" />
       <source>Security</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="303" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="304" />
       <source>Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="309" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="310" />
       <source>Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="311" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="312" />
       <source>Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="834" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="318" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="835" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="319" />
       <source>Tray Starter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="325" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="326" />
       <source>Version Control Systems</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="332" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="333" />
       <source>Debugger</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="667" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="374" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="339" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="668" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="375" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="340" />
       <source>General</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="346" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="347" />
       <source>Python3</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="660" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="353" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="661" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="354" />
       <source>Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="360" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="361" />
       <source>APIs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="367" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="368" />
       <source>Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="674" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="381" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="675" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="382" />
       <source>Filehandling</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="681" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="388" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="682" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="389" />
       <source>Searching</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="817" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="688" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="617" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="395" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="818" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="689" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="618" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="396" />
       <source>Spell checking</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="695" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="402" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="696" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="403" />
       <source>Style</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="409" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="410" />
       <source>Code Checkers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="702" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="416" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="703" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="417" />
       <source>Typing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="423" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="424" />
       <source>Exporters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="430" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="431" />
       <source>Autocompletion</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="458" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="437" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="459" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="438" />
       <source>QScintilla</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="514" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="465" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="444" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="515" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="466" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="445" />
       <source>Jedi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="451" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="452" />
       <source>Calltips</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="709" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="472" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="710" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="473" />
       <source>Highlighters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="716" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="479" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="717" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="480" />
       <source>Filetype Associations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="723" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="486" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="724" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="487" />
       <source>Styles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="730" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="493" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="731" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="494" />
       <source>Keywords</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="737" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="500" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="738" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="501" />
       <source>Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="507" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="508" />
       <source>Mouse Click Handlers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="520" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="521" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="789" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="522" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="790" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="523" />
       <source>Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="529" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="530" />
       <source>Help Viewers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="550" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="536" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="551" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="537" />
       <source>Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="543" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="544" />
       <source>Project Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="557" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="558" />
       <source>Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="953" />
       <location filename="../Preferences/ConfigurationDialog.py" line="921" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="889" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="858" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="761" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="646" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="571" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="564" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="890" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="859" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="762" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="647" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="572" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="565" />
       <source>Interface</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="578" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="579" />
       <source>Viewmanager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="589" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="590" />
       <source>Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="796" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="596" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="797" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="597" />
       <source>Appearance</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="803" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="603" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="804" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="604" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="810" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="610" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="811" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="611" />
       <source>VirusTotal Interface</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1007" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1039" />
       <source>Enter search text...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1080" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1112" />
       <source>Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1086" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1118" />
       <source>Please select an entry of the list 
 to display the configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1163" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1195" />
       <source>Configuration Page Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1164" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1196" />
       <source>&lt;p&gt;The configuration page &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -10345,26 +10373,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Add allowed host</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
       <source>Enter the IP address of an allowed host</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
+      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
-      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
       <source>Edit allowed host</source>
       <translation type="unfinished" />
     </message>
@@ -11850,42 +11878,42 @@
   <context>
     <name>DownloadManager</name>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="111" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="113" />
       <source>Open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="117" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="119" />
       <source>Cancel</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="122" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="124" />
       <source>Open Containing Folder</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="125" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="127" />
       <source>Go to Download Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="126" />
-      <source>Copy Download Link</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/Download/DownloadManager.py" line="128" />
+      <source>Copy Download Link</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="130" />
       <source>Select All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="137" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="139" />
       <source>Remove From List</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="172" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="174" />
       <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
       <translation>
@@ -11896,34 +11924,34 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="264" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="266" />
       <source>Suspicuous URL detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="265" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="267" />
       <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="500" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="502" />
       <source>Downloads finished</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="501" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="503" />
       <source>All files have been downloaded.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/Download/DownloadManager.ui" line="0" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="586" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="509" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="588" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="511" />
       <source>Download Manager</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="619" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="621" />
       <source>{0}% of %n file(s) ({1}) {2}</source>
       <translation>
         <numerusform>{0}% of one file ({1}) {2}</numerusform>
@@ -11931,7 +11959,7 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="627" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="629" />
       <source>{0}% - Download Manager</source>
       <translation type="unfinished" />
     </message>
@@ -12175,7 +12203,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3335" />
+      <location filename="../QScintilla/Editor.py" line="3334" />
       <location filename="../QScintilla/Editor.py" line="428" />
       <location filename="../QScintilla/Editor.py" line="413" />
       <source>Open File</source>
@@ -12247,7 +12275,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9154" />
+      <location filename="../QScintilla/Editor.py" line="9152" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12520,7 +12548,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8272" />
+      <location filename="../QScintilla/Editor.py" line="8270" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation type="unfinished" />
@@ -12581,7 +12609,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5932" />
+      <location filename="../QScintilla/Editor.py" line="5929" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation type="unfinished" />
@@ -12773,398 +12801,398 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3277" />
+      <location filename="../QScintilla/Editor.py" line="3276" />
       <source>File Modified</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3278" />
+      <location filename="../QScintilla/Editor.py" line="3277" />
       <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="3336" />
+      <location filename="../QScintilla/Editor.py" line="3335" />
       <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="3511" />
+      <location filename="../QScintilla/Editor.py" line="3492" />
+      <location filename="../QScintilla/Editor.py" line="3454" />
+      <source>Save File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="3455" />
+      <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="3512" />
-      <location filename="../QScintilla/Editor.py" line="3493" />
-      <location filename="../QScintilla/Editor.py" line="3455" />
-      <source>Save File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3456" />
-      <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="3513" />
       <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="3649" />
+      <location filename="../QScintilla/Editor.py" line="3646" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3650" />
+      <location filename="../QScintilla/Editor.py" line="3647" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5106" />
+      <location filename="../QScintilla/Editor.py" line="5103" />
       <source>Autocompletion</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5107" />
+      <location filename="../QScintilla/Editor.py" line="5104" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5235" />
+      <location filename="../QScintilla/Editor.py" line="5232" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5236" />
+      <location filename="../QScintilla/Editor.py" line="5233" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5528" />
+      <location filename="../QScintilla/Editor.py" line="5525" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5529" />
+      <location filename="../QScintilla/Editor.py" line="5526" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5936" />
+      <location filename="../QScintilla/Editor.py" line="5933" />
       <source>Disable breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6315" />
+      <location filename="../QScintilla/Editor.py" line="6312" />
       <source>Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6316" />
+      <location filename="../QScintilla/Editor.py" line="6313" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6391" />
-      <location filename="../QScintilla/Editor.py" line="6383" />
+      <location filename="../QScintilla/Editor.py" line="6388" />
+      <location filename="../QScintilla/Editor.py" line="6380" />
       <source>Show Code Coverage Annotations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6384" />
+      <location filename="../QScintilla/Editor.py" line="6381" />
       <source>All lines have been covered.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6392" />
+      <location filename="../QScintilla/Editor.py" line="6389" />
       <source>There is no coverage file available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6496" />
+      <location filename="../QScintilla/Editor.py" line="6493" />
       <source>Profile Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6497" />
+      <location filename="../QScintilla/Editor.py" line="6494" />
       <source>Please select a profile file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6658" />
-      <location filename="../QScintilla/Editor.py" line="6652" />
+      <location filename="../QScintilla/Editor.py" line="6655" />
+      <location filename="../QScintilla/Editor.py" line="6649" />
       <source>Syntax Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6659" />
+      <location filename="../QScintilla/Editor.py" line="6656" />
       <source>No syntax error message available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
-      <location filename="../QScintilla/Editor.py" line="6864" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
+      <location filename="../QScintilla/Editor.py" line="6863" />
       <source>Warning</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
       <source>No warning messages available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6934" />
+      <location filename="../QScintilla/Editor.py" line="6933" />
       <source>Style: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6937" />
+      <location filename="../QScintilla/Editor.py" line="6936" />
       <source>Warning: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6944" />
+      <location filename="../QScintilla/Editor.py" line="6943" />
       <source>Error: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Macro Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Select a macro name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7077" />
+      <location filename="../QScintilla/Editor.py" line="7076" />
       <source>Load macro file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7123" />
-      <location filename="../QScintilla/Editor.py" line="7079" />
+      <location filename="../QScintilla/Editor.py" line="7122" />
+      <location filename="../QScintilla/Editor.py" line="7078" />
       <source>Macro files (*.macro)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7100" />
+      <location filename="../QScintilla/Editor.py" line="7090" />
+      <source>Error loading macro</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7091" />
+      <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="7101" />
-      <location filename="../QScintilla/Editor.py" line="7091" />
-      <source>Error loading macro</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7092" />
-      <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="7102" />
       <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="7121" />
+      <location filename="../QScintilla/Editor.py" line="7120" />
       <source>Save macro file</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7138" />
+      <source>Save macro</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7139" />
-      <source>Save macro</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7140" />
       <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="7154" />
+      <source>Error saving macro</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7155" />
-      <source>Error saving macro</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7156" />
       <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="7168" />
+      <source>Start Macro Recording</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7169" />
-      <source>Start Macro Recording</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7170" />
       <source>Macro recording is already active. Start new?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7195" />
+      <source>Macro Recording</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7196" />
-      <source>Macro Recording</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7348" />
+      <location filename="../QScintilla/Editor.py" line="7346" />
       <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="7354" />
+      <location filename="../QScintilla/Editor.py" line="7352" />
       <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="7361" />
+      <location filename="../QScintilla/Editor.py" line="7359" />
       <source>File changed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7411" />
+      <location filename="../QScintilla/Editor.py" line="7409" />
       <source>{0} (ro)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7716" />
+      <location filename="../QScintilla/Editor.py" line="7714" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7717" />
+      <location filename="../QScintilla/Editor.py" line="7715" />
       <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="7735" />
+      <source>Resources</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7737" />
-      <source>Resources</source>
+      <source>Add file...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7738" />
+      <source>Add files...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="7739" />
-      <source>Add file...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7740" />
-      <source>Add files...</source>
+      <source>Add aliased file...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="7741" />
-      <source>Add aliased file...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7746" />
+      <location filename="../QScintilla/Editor.py" line="7744" />
       <source>Add resource frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7765" />
+      <location filename="../QScintilla/Editor.py" line="7763" />
       <source>Add file resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7777" />
       <source>Add file resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7797" />
+      <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7795" />
       <source>Add aliased file resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7804" />
+      <location filename="../QScintilla/Editor.py" line="7802" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7879" />
+      <location filename="../QScintilla/Editor.py" line="7877" />
       <source>Package Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7880" />
+      <location filename="../QScintilla/Editor.py" line="7878" />
       <source>Include class attributes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7900" />
+      <location filename="../QScintilla/Editor.py" line="7898" />
       <source>Imports Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7901" />
+      <location filename="../QScintilla/Editor.py" line="7899" />
       <source>Include imports from external modules?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7920" />
+      <location filename="../QScintilla/Editor.py" line="7918" />
       <source>Application Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7921" />
+      <location filename="../QScintilla/Editor.py" line="7919" />
       <source>Include module names?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="8274" />
+      <source>Add to dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8276" />
-      <source>Add to dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8696" />
+      <location filename="../QScintilla/Editor.py" line="8694" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8697" />
+      <location filename="../QScintilla/Editor.py" line="8695" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8790" />
+      <location filename="../QScintilla/Editor.py" line="8788" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8791" />
+      <location filename="../QScintilla/Editor.py" line="8789" />
       <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="8887" />
+      <location filename="../QScintilla/Editor.py" line="8885" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8893" />
+      <location filename="../QScintilla/Editor.py" line="8891" />
       <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="8961" />
+      <location filename="../QScintilla/Editor.py" line="8959" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8962" />
+      <location filename="../QScintilla/Editor.py" line="8960" />
       <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>
@@ -14781,7 +14809,7 @@
   <context>
     <name>EditorHighlightersPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="144" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="145" />
       <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="51" />
       <source>Alternative</source>
       <translation type="unfinished" />
@@ -20624,8 +20652,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1589" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1573" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1591" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1575" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="196" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -20636,7 +20664,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1674" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1676" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="203" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -20687,8 +20715,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1673" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1632" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1634" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="363" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
@@ -20799,17 +20827,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1574" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1576" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1588" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1590" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1633" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1635" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -21424,27 +21452,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="72" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="67" />
       <source>{0} wants to use desktop notifications.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="98" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="92" />
       <source>Remember</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="100" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="94" />
       <source>Allow</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="101" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="95" />
       <source>Deny</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="126" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="120" />
       <source>{0} wants to use an unknown feature.</source>
       <translation type="unfinished" />
     </message>
@@ -21661,7 +21689,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="486" />
+      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="487" />
       <source>Error loading feed</source>
       <translation type="unfinished" />
     </message>
@@ -22856,7 +22884,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1643" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="213" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -22877,158 +22905,158 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="281" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="283" />
       <source>Creating Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="296" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="298" />
       <source>Adding files to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="305" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
       <source>Initial commit to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="333" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="335" />
       <source>Cloning project from a Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="428" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="429" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="485" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="546" />
       <source>Switch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="545" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="547" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="575" />
       <source>Synchronizing with the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="619" />
       <source>Adding files/directories to the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="691" />
       <source>Removing files/directories from the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="754" />
       <source>Renaming {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="876" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="929" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="918" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="919" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="930" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="936" />
       <source>Reverting changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="988" />
       <source>Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1012" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1016" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1228" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1232" />
       <source>Git Command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1330" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1336" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1334" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1340" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1346" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1352" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1357" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1356" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1362" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1361" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1367" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1366" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1372" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1371" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1377" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1383" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -23038,459 +23066,459 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1458" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1517" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1500" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1506" />
       <source>Git Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1507" />
       <source>&lt;p&gt;Copying the directory &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="../Plugins/VcsPlugins/vcsGit/git.py" line="1518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
       <source>&lt;p&gt;Copying the file &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="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2726" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1645" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1707" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1694" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1683" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1713" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1689" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1708" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1714" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1760" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1766" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1796" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1802" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1835" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1841" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1869" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1894" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1924" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1951" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1957" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1954" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1960" />
       <source>Apply patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2034" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2040" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2284" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2326" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2347" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2348" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2376" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2378" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2395" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2430" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2459" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2525" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2546" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2828" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2672" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2725" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2771" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2754" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2736" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2738" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2755" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2772" />
       <source>&lt;p&gt;The 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="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2791" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2819" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2793" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2817" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3161" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2991" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3047" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3048" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3183" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3240" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3271" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3294" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3318" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3396" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3598" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3436" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3599" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3559" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3510" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3437" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3509" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3469" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3483" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3558" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3547" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3548" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3573" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3609" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3610" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3620" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3647" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3707" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3729" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3798" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3804" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3815" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3821" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3839" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3905" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3945" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4012" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
-      <source>All</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
-      <source>Submodule Path</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
+      <source>All</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4029" />
+      <source>Submodule Path</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4030" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4079" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4112" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4143" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4266" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -23903,12 +23931,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="213" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="214" />
       <source>Changed by skipped commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="215" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="216" />
       <source>Commit cannot be skipped</source>
       <translation type="unfinished" />
     </message>
@@ -25007,7 +25035,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1896" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1891" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="340" />
       <source>Branch</source>
       <translation type="unfinished" />
@@ -25028,9 +25056,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1957" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1868" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1952" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1840" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="356" />
       <source>Switch</source>
       <translation type="unfinished" />
@@ -25041,7 +25069,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1979" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="364" />
       <source>Show Short Log</source>
       <translation type="unfinished" />
@@ -25062,125 +25090,125 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="662" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="664" />
+      <source>Could not start the git executable.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="667" />
-      <source>Could not start the git executable.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="670" />
       <source>Git Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="799" />
       <source>{0} ({1}%)</source>
       <comment>action, confidence</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="869" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="874" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="870" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1345" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1342" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1359" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1356" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1800" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1958" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1806" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1953" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1801" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1985" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1980" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841" />
       <source>Select a branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1935" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1897" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892" />
       <source>Select a default branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1934" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1929" />
       <source>Branch &amp; Switch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2159" />
       <source>Find Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2160" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2209" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2204" />
       <source>Differences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2221" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2216" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2237" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2232" />
       <source>Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2262" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2257" />
       <source>There is no difference.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2429" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2412" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2424" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2389" />
       <source>Save Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2391" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2408" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2425" />
       <source>&lt;p&gt;The patch 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>
@@ -28582,7 +28610,7 @@
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="383" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="384" />
       <source>%n file(s) changed</source>
       <translation>
         <numerusform>%n file changed</numerusform>
@@ -28590,7 +28618,7 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="386" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="387" />
       <source>%n line(s) inserted</source>
       <translation>
         <numerusform>%n line inserted</numerusform>
@@ -28598,7 +28626,7 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="390" />
       <source>%n line(s) deleted</source>
       <translation>
         <numerusform>%n line deleted</numerusform>
@@ -28762,7 +28790,7 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195" />
       <source>Commit</source>
       <translation type="unfinished" />
@@ -28793,7 +28821,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210" />
       <source>Add</source>
       <translation type="unfinished" />
@@ -28824,7 +28852,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226" />
       <source>Differences</source>
       <translation type="unfinished" />
@@ -28845,7 +28873,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244" />
       <source>Revert</source>
       <translation type="unfinished" />
@@ -28856,7 +28884,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253" />
       <source>Forget Missing</source>
       <translation type="unfinished" />
@@ -28867,7 +28895,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="837" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257" />
       <source>Restore Missing</source>
       <translation type="unfinished" />
@@ -28914,98 +28942,98 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="605" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="468" />
       <source>all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="676" />
       <source>There are no entries selected to be committed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="719" />
       <source>There are no unversioned entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="741" />
-      <source>Stage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="742" />
+      <source>Stage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="743" />
       <source>There are no stageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="765" />
-      <source>Unstage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="766" />
+      <source>Unstage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="767" />
       <source>There are no unstageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="791" />
       <source>There are no missing entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810" />
       <source>There are no uncommitted, unstaged changes available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="874" />
       <source>There are no uncommitted changes available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="923" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="899" />
-      <source>Working Tree to Staging Area</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
-      <source>Staging Area to HEAD Commit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="924" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
+      <source>Working Tree to Staging Area</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="901" />
+      <source>Staging Area to HEAD Commit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="925" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="902" />
       <source>Working Tree to HEAD Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="928" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="905" />
-      <source>Differences Side-by-Side</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="929" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="906" />
+      <source>Differences Side-by-Side</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="907" />
       <source>Select the compare method.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1239" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1240" />
       <source>Revert selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1241" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1242" />
       <source>Revert hunk</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1247" />
       <source>Are you sure you want to revert the selected changes?</source>
       <translation type="unfinished" />
     </message>
@@ -29661,12 +29689,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="336" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="337" />
       <source>current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="340" />
       <source>checked out in linked worktree</source>
       <translation type="unfinished" />
     </message>
@@ -30152,101 +30180,101 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="516" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="533" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="552" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="535" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="553" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="576" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="577" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="578" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="612" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="595" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="597" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="614" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="634" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="636" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="642" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="669" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="723" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="699" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="701" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="725" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="750" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="762" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="752" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="763" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -30302,27 +30330,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="199" />
+      <location filename="../Globals/__init__.py" line="197" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="202" />
+      <location filename="../Globals/__init__.py" line="200" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="205" />
+      <location filename="../Globals/__init__.py" line="203" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="208" />
+      <location filename="../Globals/__init__.py" line="206" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="211" />
+      <location filename="../Globals/__init__.py" line="209" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -31120,37 +31148,37 @@
   <context>
     <name>HelpSearchWidget</name>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="166" />
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
       <source>Open Link</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="168" />
-      <source>Open Link in New Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
-      <source>Open Link in Background Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="171" />
-      <source>Open Link in New Tab</source>
+      <source>Open Link in New Page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="172" />
-      <source>Open Link in Background Tab</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="173" />
-      <source>Open Link in New Window</source>
+      <source>Open Link in Background Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="174" />
+      <source>Open Link in New Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="175" />
+      <source>Open Link in Background Tab</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="176" />
+      <source>Open Link in New Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="178" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -31475,104 +31503,104 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="442" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="443" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Qt6 Documentation</source>
+      <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>PyQt5 Documentation</source>
+      <source>Qt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>PyQt6 Documentation</source>
+      <source>Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PySide2 Documentation</source>
+      <source>PyQt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
+      <source>PyQt6 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="506" />
-      <source>Open HTML File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <source>Open HTML File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
       <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="699" />
       <source>Help Engine</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="723" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="732" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="734" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="759" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="762" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="767" />
       <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="860" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="840" />
       <source>Clear History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="968" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="970" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1026" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1028" />
       <source>Filtered by: </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1062" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1057" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1064" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
       <source>Unfiltered</source>
       <translation type="unfinished" />
     </message>
@@ -32974,446 +33002,446 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="311" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="313" />
       <source>Creating Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="330" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="332" />
       <source>Initial commit to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="368" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="370" />
       <source>Cloning project from a Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="468" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="470" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="469" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="471" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="531" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="533" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="623" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="625" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="653" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="708" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="754" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="756" />
       <source>Renaming {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="879" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="881" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="927" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="916" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="917" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="928" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="934" />
       <source>Reverting changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="977" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="979" />
       <source>Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1017" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1007" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1009" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1008" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1010" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1020" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1021" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1023" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1044" />
       <source>Current branch tip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1216" />
       <source>Mercurial command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1373" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1377" />
       <source>Copying {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1612" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1600" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1591" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1604" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1595" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1613" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1617" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2274" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2263" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2253" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1688" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2267" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2257" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1692" />
       <source>Apply changegroups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1691" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1695" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1733" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1875" />
       <source>Marking as 'unresolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1877" />
       <source>Marking as 'resolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1895" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1899" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1922" />
       <source>Creating branch in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1930" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
       <source>Showing current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2022" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2026" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2035" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2039" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2050" />
       <source>Showing aliases for remote repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2061" />
       <source>Recovering from interrupted transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2068" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2072" />
       <source>Identifying project directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2114" />
       <source>Create .hgignore file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2111" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2115" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2212" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2186" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2216" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2190" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2172" />
       <source>Create changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2170" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2174" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2187" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2191" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Preview changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2255" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2259" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2232" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2264" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2268" />
       <source>Shall the working directory be updated?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2300" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2320" />
       <source>Mercurial Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
       <source>Removing files from the Mercurial repository only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2383" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2364" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2387" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2368" />
       <source>Backing out changeset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2365" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
       <source>No revision given. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2403" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2398" />
+      <source>Rollback last transaction</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2399" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2394" />
-      <source>Rollback last transaction</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2465" />
       <source>Import Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2513" />
       <source>Export Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2553" />
       <source>Change Phase</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2607" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2646" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2656" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2662" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2666" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2685" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2689" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2703" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2700" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2704" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2789" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2769" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2793" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2762" />
       <source>Add Sub-repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2828" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2759" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2832" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2774" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2846" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2790" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2850" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2794" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2827" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2813" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2849" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2831" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2817" />
       <source>Remove Sub-repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2818" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3062" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2925" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3066" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2929" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2930" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3063" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3067" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3179" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3183" />
       <source>Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3195" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3199" />
       <source>Delete Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3200" />
       <source>Select the bookmark to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3210" />
       <source>Delete Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3235" />
       <source>Rename Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3268" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3272" />
       <source>Move Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3341" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3345" />
       <source>Pull Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3342" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
       <source>Select the bookmark to be pulled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3354" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3358" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3380" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3384" />
       <source>Push Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3385" />
       <source>Select the bookmark to be push:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3396" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3400" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
@@ -34256,42 +34284,42 @@
   <context>
     <name>HgClient</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="91" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="98" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="140" />
-      <source>Did not receive the 'hello' message.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="142" />
-      <source>Received data on unexpected channel.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="147" />
+      <source>Did not receive the 'hello' message.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="149" />
+      <source>Received data on unexpected channel.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="154" />
       <source>Bad 'hello' message, expected 'capabilities: ' but got '{0}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="152" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="159" />
       <source>'capabilities' message did not contain any capability.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="168" />
       <source>Bad 'hello' message, expected 'encoding: ' but got '{0}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="166" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="173" />
       <source>'encoding' message did not contain any encoding.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="377" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="385" />
       <source>For message see output dialog.</source>
       <translation type="unfinished" />
     </message>
@@ -35700,7 +35728,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2690" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2686" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="0" />
       <source>Differences</source>
       <translation type="unfinished" />
@@ -35831,7 +35859,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2150" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2146" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
@@ -35888,8 +35916,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2244" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2240" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2223" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343" />
       <source>Switch</source>
       <translation type="unfinished" />
@@ -35920,8 +35948,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2362" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1562" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2358" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1558" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371" />
       <source>Pull Changes</source>
       <translation type="unfinished" />
@@ -35978,7 +36006,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2501" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="424" />
       <source>Apply Changegroup</source>
       <translation type="unfinished" />
@@ -36009,7 +36037,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2408" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2404" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="454" />
       <source>Strip Changesets</source>
       <translation type="unfinished" />
@@ -36030,117 +36058,117 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="889" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="866" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="886" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="837" />
       <source>Mercurial Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1210" />
       <source>{0} (large file)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1472" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1468" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1479" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1641" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1560" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1556" />
       <source>Pull Selected Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2409" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2363" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2245" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2151" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2498" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2405" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2359" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2147" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2224" />
       <source>Select bookmark to switch to (leave empty to use revision):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2273" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2269" />
       <source>Define Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2274" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2270" />
       <source>Enter bookmark name for changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2303" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2299" />
       <source>Move Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2300" />
       <source>Select the bookmark to be moved  to changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2637" />
       <source>Find Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2638" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2689" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2685" />
       <source>Generating differences ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2701" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2697" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2713" />
       <source>Diff to Parent {0}{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2740" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2736" />
       <source>There is no difference.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2891" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2875" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2857" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2853" />
       <source>Save Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2859" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2855" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2876" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2872" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2892" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2888" />
       <source>&lt;p&gt;The patch 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>
@@ -41019,22 +41047,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="85" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -45773,9 +45801,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <location filename="../Network/IRC/IrcWidget.py" line="266" />
       <location filename="../Network/IRC/IrcWidget.py" line="261" />
       <location filename="../Network/IRC/IrcWidget.py" line="254" />
@@ -45810,260 +45838,260 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <source>Server found,connecting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
       <source>Connected,logging in...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
       <source>Server disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="607" />
+      <source>Message Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="608" />
-      <source>Message Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="609" />
       <source>Unknown message received from server:&lt;br/&gt;{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1032" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1022" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1014" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1006" />
-      <location filename="../Network/IRC/IrcWidget.py" line="651" />
-      <location filename="../Network/IRC/IrcWidget.py" line="643" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1030" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1020" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1012" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1004" />
+      <location filename="../Network/IRC/IrcWidget.py" line="650" />
+      <location filename="../Network/IRC/IrcWidget.py" line="642" />
       <source>CTCP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="644" />
+      <location filename="../Network/IRC/IrcWidget.py" line="643" />
       <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="652" />
+      <location filename="../Network/IRC/IrcWidget.py" line="651" />
       <source>Received unknown CTCP-{0} response from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="678" />
+      <location filename="../Network/IRC/IrcWidget.py" line="677" />
       <source>Notice</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="688" />
+      <location filename="../Network/IRC/IrcWidget.py" line="687" />
       <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="692" />
+      <location filename="../Network/IRC/IrcWidget.py" line="691" />
       <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="696" />
+      <location filename="../Network/IRC/IrcWidget.py" line="695" />
       <source>Mode</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="704" />
+      <location filename="../Network/IRC/IrcWidget.py" line="703" />
       <source>You have left channel {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="716" />
+      <location filename="../Network/IRC/IrcWidget.py" line="715" />
       <source>You are now known as {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="722" />
+      <location filename="../Network/IRC/IrcWidget.py" line="721" />
       <source>User {0} is now known as {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="728" />
+      <location filename="../Network/IRC/IrcWidget.py" line="727" />
       <source>Received PONG from {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="733" />
+      <location filename="../Network/IRC/IrcWidget.py" line="732" />
       <source>Server Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="767" />
+      <location filename="../Network/IRC/IrcWidget.py" line="765" />
       <source>Error</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="780" />
+      <source>Welcome</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="782" />
-      <source>Welcome</source>
+      <source>Support</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="784" />
-      <source>Support</source>
+      <source>User</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="786" />
-      <source>User</source>
+      <source>MOTD</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="788" />
-      <source>MOTD</source>
+      <source>Away</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="790" />
-      <source>Away</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="792" />
       <source>Info ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="794" />
+      <source>Message of the day</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="796" />
-      <source>Message of the day</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="798" />
       <source>End of message of the day</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="801" />
+      <location filename="../Network/IRC/IrcWidget.py" line="799" />
       <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="806" />
+      <location filename="../Network/IRC/IrcWidget.py" line="804" />
       <source>Current users on {0}: {1}, max. {2}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="811" />
+      <location filename="../Network/IRC/IrcWidget.py" line="809" />
       <source>Current users on the network: {0}, max. {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="813" />
+      <source>You are no longer marked as being away.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="815" />
-      <source>You are no longer marked as being away.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="817" />
       <source>You have been marked as being away.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="947" />
-      <location filename="../Network/IRC/IrcWidget.py" line="931" />
-      <location filename="../Network/IRC/IrcWidget.py" line="880" />
+      <location filename="../Network/IRC/IrcWidget.py" line="945" />
+      <location filename="../Network/IRC/IrcWidget.py" line="929" />
+      <location filename="../Network/IRC/IrcWidget.py" line="878" />
       <source>SSL Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="881" />
+      <location filename="../Network/IRC/IrcWidget.py" line="879" />
       <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
-      <location filename="../Network/IRC/IrcWidget.py" line="910" />
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
-      <location filename="../Network/IRC/IrcWidget.py" line="897" />
-      <location filename="../Network/IRC/IrcWidget.py" line="889" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
+      <location filename="../Network/IRC/IrcWidget.py" line="908" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
+      <location filename="../Network/IRC/IrcWidget.py" line="895" />
+      <location filename="../Network/IRC/IrcWidget.py" line="887" />
       <source>Socket Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="890" />
+      <location filename="../Network/IRC/IrcWidget.py" line="888" />
       <source>The host was not found. Please check the host name and port settings.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="898" />
+      <location filename="../Network/IRC/IrcWidget.py" line="896" />
       <source>The connection was refused by the peer. Please check the host name and port settings.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
       <source>The SSL handshake failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="911" />
+      <location filename="../Network/IRC/IrcWidget.py" line="909" />
       <source>The following network error occurred:&lt;br/&gt;{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
       <source>A network error occurred.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="932" />
+      <location filename="../Network/IRC/IrcWidget.py" line="930" />
       <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 type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="948" />
+      <location filename="../Network/IRC/IrcWidget.py" line="946" />
       <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1007" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1005" />
       <source>Received Version request from {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1015" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1013" />
       <source>Received CTCP-PING request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1023" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1021" />
       <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1033" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1031" />
       <source>Received unknown CTCP-{0} request from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1049" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1047" />
       <source>{0} ({1})</source>
       <comment>channel name, users count</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1071" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1069" />
       <source>Critical</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1072" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1070" />
       <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
       <source>The given nickname is already in use.</source>
       <translation type="unfinished" />
     </message>
@@ -47074,7 +47102,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/LexerAssociationDialog.py" line="131" />
+      <location filename="../Project/LexerAssociationDialog.py" line="132" />
       <location filename="../Project/LexerAssociationDialog.py" line="45" />
       <source>Alternative</source>
       <translation type="unfinished" />
@@ -48920,13 +48948,13 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="485" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="487" />
       <source>Untitled {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="627" />
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="491" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="629" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="493" />
       <source>{0} (ro)</source>
       <translation type="unfinished" />
     </message>
@@ -52235,317 +52263,317 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2862" />
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
       <source>About</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
+      <source>&amp;About</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2860" />
+      <source>Display information about this software</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2862" />
-      <source>&amp;About</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2864" />
-      <source>Display information about this software</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <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="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About &amp;Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2878" />
+      <location filename="../QScintilla/MiniEditor.py" line="2874" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2881" />
+      <location filename="../QScintilla/MiniEditor.py" line="2877" />
       <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="../QScintilla/MiniEditor.py" line="2890" />
+      <location filename="../QScintilla/MiniEditor.py" line="2886" />
       <source>What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <location filename="../QScintilla/MiniEditor.py" line="2888" />
       <source>&amp;What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2893" />
+      <location filename="../QScintilla/MiniEditor.py" line="2889" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2898" />
+      <location filename="../QScintilla/MiniEditor.py" line="2894" />
       <source>Context sensitive help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2900" />
+      <location filename="../QScintilla/MiniEditor.py" line="2896" />
       <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="../QScintilla/MiniEditor.py" line="2918" />
+      <location filename="../QScintilla/MiniEditor.py" line="2914" />
       <source>Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2920" />
+      <location filename="../QScintilla/MiniEditor.py" line="2916" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2926" />
+      <location filename="../QScintilla/MiniEditor.py" line="2922" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2924" />
       <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="../QScintilla/MiniEditor.py" line="2942" />
+      <location filename="../QScintilla/MiniEditor.py" line="2938" />
       <source>&amp;File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2950" />
       <source>&amp;Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2964" />
+      <location filename="../QScintilla/MiniEditor.py" line="2960" />
       <source>&amp;Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2974" />
+      <location filename="../QScintilla/MiniEditor.py" line="2970" />
       <source>&amp;View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2980" />
+      <location filename="../QScintilla/MiniEditor.py" line="2976" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2985" />
+      <location filename="../QScintilla/MiniEditor.py" line="2981" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2997" />
+      <location filename="../QScintilla/MiniEditor.py" line="2993" />
       <source>File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3009" />
+      <location filename="../QScintilla/MiniEditor.py" line="3005" />
       <source>Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3018" />
+      <location filename="../QScintilla/MiniEditor.py" line="3014" />
       <source>Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3024" />
+      <location filename="../QScintilla/MiniEditor.py" line="3020" />
       <source>View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3030" />
+      <location filename="../QScintilla/MiniEditor.py" line="3026" />
       <source>Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3033" />
+      <location filename="../QScintilla/MiniEditor.py" line="3029" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3046" />
+      <location filename="../QScintilla/MiniEditor.py" line="3042" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3056" />
+      <location filename="../QScintilla/MiniEditor.py" line="3052" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3065" />
+      <location filename="../QScintilla/MiniEditor.py" line="3061" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3074" />
+      <location filename="../QScintilla/MiniEditor.py" line="3070" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3088" />
+      <location filename="../QScintilla/MiniEditor.py" line="3084" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3095" />
+      <location filename="../QScintilla/MiniEditor.py" line="3091" />
       <source>Ready</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <location filename="../QScintilla/MiniEditor.py" line="3166" />
       <source>eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3171" />
+      <location filename="../QScintilla/MiniEditor.py" line="3167" />
       <source>The document has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="3194" />
       <source>Open File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3199" />
+      <location filename="../QScintilla/MiniEditor.py" line="3195" />
       <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/MiniEditor.py" line="3227" />
+      <location filename="../QScintilla/MiniEditor.py" line="3223" />
       <source>File loaded</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <location filename="../QScintilla/MiniEditor.py" line="3304" />
       <source>Save File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3309" />
+      <location filename="../QScintilla/MiniEditor.py" line="3305" />
       <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/MiniEditor.py" line="3315" />
+      <location filename="../QScintilla/MiniEditor.py" line="3311" />
       <source>File saved</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>[*] - {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="3655" />
-      <location filename="../QScintilla/MiniEditor.py" line="3339" />
+      <location filename="../QScintilla/MiniEditor.py" line="3680" />
+      <location filename="../QScintilla/MiniEditor.py" line="3651" />
+      <location filename="../QScintilla/MiniEditor.py" line="3335" />
       <source>Untitled</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
       <source>{0}[*] - {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3650" />
+      <location filename="../QScintilla/MiniEditor.py" line="3646" />
       <source>Printing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3666" />
+      <location filename="../QScintilla/MiniEditor.py" line="3662" />
       <source>Printing completed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3668" />
+      <location filename="../QScintilla/MiniEditor.py" line="3664" />
       <source>Error while printing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3671" />
+      <location filename="../QScintilla/MiniEditor.py" line="3667" />
       <source>Printing aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <location filename="../QScintilla/MiniEditor.py" line="3721" />
       <source>Select all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3726" />
+      <location filename="../QScintilla/MiniEditor.py" line="3722" />
       <source>Deselect all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3739" />
+      <location filename="../QScintilla/MiniEditor.py" line="3735" />
       <source>Languages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3742" />
+      <location filename="../QScintilla/MiniEditor.py" line="3738" />
       <source>No Language</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3760" />
+      <source>Guessed</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3782" />
       <location filename="../QScintilla/MiniEditor.py" line="3764" />
-      <source>Guessed</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3786" />
-      <location filename="../QScintilla/MiniEditor.py" line="3768" />
       <source>Alternatives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3783" />
+      <location filename="../QScintilla/MiniEditor.py" line="3779" />
       <source>Alternatives ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <location filename="../QScintilla/MiniEditor.py" line="3810" />
       <source>Pygments Lexer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3815" />
+      <location filename="../QScintilla/MiniEditor.py" line="3811" />
       <source>Select the Pygments lexer to apply.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4336" />
+      <location filename="../QScintilla/MiniEditor.py" line="4332" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4337" />
+      <location filename="../QScintilla/MiniEditor.py" line="4333" />
       <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>
@@ -52626,564 +52654,604 @@
   <context>
     <name>MiscellaneousChecker</name>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="15" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="16" />
       <source>coding magic comment not found</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="18" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="19" />
       <source>unknown encoding ({0}) found in coding magic comment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="21" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="23" />
       <source>copyright notice not present</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="24" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="26" />
       <source>copyright notice contains invalid author</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="27" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="30" />
       <source>"{0}" is a Python builtin and is being shadowed; consider renaming the variable</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="32" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="35" />
       <source>"{0}" is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="37" />
-      <source>unnecessary generator - rewrite as a list comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="41" />
+      <source>unnecessary generator - rewrite as a list comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="45" />
       <source>unnecessary generator - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="44" />
-      <source>unnecessary generator - rewrite as a dict comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="48" />
-      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
+      <source>unnecessary generator - rewrite as a dict comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="52" />
-      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="56" />
+      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="60" />
       <source>unnecessary {0} call - rewrite as a literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="59" />
-      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="63" />
-      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="67" />
+      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="71" />
       <source>unnecessary {0} call around {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="70" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="74" />
       <source>unnecessary {0} call within {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="73" />
-      <source>unnecessary subscript reversal of iterable within {0}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="77" />
+      <source>unnecessary subscript reversal of iterable within {0}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="81" />
       <source>unnecessary {0} literal - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="80" />
-      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="84" />
-      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
+      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="88" />
-      <source>unnecessary list call - remove the outer call to list()</source>
+      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="92" />
+      <source>unnecessary list call - remove the outer call to list()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="96" />
       <source>unnecessary {0} comprehension - rewrite using {0}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="95" />
-      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="99" />
-      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="103" />
+      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="108" />
       <source>sort keys - '{0}' should be before '{1}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="106" />
-      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="110" />
-      <source>use of 'datetime.datetime.today()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="115" />
-      <source>use of 'datetime.datetime.utcnow()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="120" />
-      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="125" />
-      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="129" />
-      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" />
-      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="112" />
+      <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="117" />
+      <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="122" />
+      <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="127" />
+      <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="131" />
+      <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" />
+      <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" />
-      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
+      <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="143" />
-      <source>use of 'datetime.date()' should be avoided.
-Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <source>multiple decorators were used to declare property '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="148" />
-      <source>use of 'datetime.date.today()' should be avoided.
-Use 'datetime.datetime.now(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="153" />
-      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="158" />
-      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="161" />
-      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="165" />
-      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="169" />
-      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="173" />
-      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="177" />
-      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="152" />
+      <source>use of 'datetime.datetime.today()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="157" />
+      <source>use of 'datetime.datetime.utcnow()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="162" />
+      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" />
+      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" />
+      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" />
+      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="181" />
-      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" />
-      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="188" />
-      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="193" />
-      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="198" />
-      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="202" />
-      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="206" />
-      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="210" />
-      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" />
-      <source>Python does not support the unary prefix increment</source>
+      <source>use of 'datetime.date()' should be avoided.
+Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" />
+      <source>use of 'datetime.date.today()' should be avoided.
+Use 'datetime.datetime.now(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" />
+      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="200" />
+      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" />
+      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="207" />
+      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="212" />
+      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="216" />
+      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="220" />
-      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="225" />
-      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="230" />
-      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="224" />
+      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" />
+      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="231" />
+      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" />
-      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
+      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" />
-      <source>do not call getattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="244" />
-      <source>do not call setattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="247" />
-      <source>do not call assert False since python -O removes these calls</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="251" />
-      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" />
-      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="262" />
-      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="267" />
-      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="272" />
-      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="276" />
-      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" />
+      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" />
+      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="254" />
+      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" />
+      <source>Python does not support the unary prefix increment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="264" />
+      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="269" />
+      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="274" />
+      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="280" />
+      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="285" />
-      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="290" />
-      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="296" />
-      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <source>do not call getattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" />
+      <source>do not call setattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" />
+      <source>do not call assert False since python -O removes these calls</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" />
+      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="301" />
-      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="306" />
-      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" />
-      <source>Function definition does not bind loop variable '{0}'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" />
-      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="322" />
-      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="327" />
-      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
+      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" />
+      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" />
+      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="329" />
+      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" />
-      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" />
-      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="347" />
-      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="352" />
-      <source>Except handlers should only be names of exception classes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="356" />
-      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" />
-      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" />
-      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="372" />
-      <source>unncessary f-string</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" />
-      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" />
-      <source>found {0} formatter</source>
+      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="340" />
+      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="345" />
+      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="350" />
+      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="355" />
+      <source>Function definition does not bind loop variable '{0}'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="359" />
+      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" />
+      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" />
+      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" />
-      <source>format string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="381" />
-      <source>docstring does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="384" />
-      <source>other string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" />
-      <source>format call uses too large index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="390" />
-      <source>format call uses missing keyword ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="393" />
-      <source>format call uses keyword arguments but no named entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="397" />
-      <source>format call uses variable arguments but no numbered entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="401" />
-      <source>format call uses implicit and explicit indexes together</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="405" />
-      <source>format call provides unused index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" />
-      <source>format call provides unused keyword ({0})</source>
+      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" />
+      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="391" />
+      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" />
+      <source>Except handlers should only be names of exception classes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="400" />
+      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="406" />
+      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" />
-      <source>logging statement uses string.format()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="414" />
-      <source>logging statement uses '%'</source>
+      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="417" />
-      <source>logging statement uses '+'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" />
-      <source>logging statement uses f-string</source>
+      <source>unncessary f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="418" />
+      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="423" />
-      <source>logging statement uses 'warn' instead of 'warning'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="426" />
-      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <source>found {0} formatter</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" />
+      <source>format string does contain unindexed parameters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="427" />
+      <source>docstring does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="430" />
-      <source>expected these __future__ imports: {0}; but got none</source>
+      <source>other string does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" />
-      <source>gettext import with alias _ found: {0}</source>
+      <source>format call uses too large index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="436" />
-      <source>print statement found</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" />
-      <source>one element tuple found</source>
+      <source>format call uses missing keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" />
+      <source>format call uses keyword arguments but no named entries</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="440" />
-      <source>mutable default argument of type {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="446" />
-      <source>mutable default argument of function call '{0}'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" />
-      <source>None should not be added at any return if function has no return value except None</source>
+      <source>format call uses variable arguments but no numbered entries</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="447" />
+      <source>format call uses implicit and explicit indexes together</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="451" />
+      <source>format call provides unused index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" />
-      <source>an explicit value at every return should be added if function has a return value except None</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="459" />
-      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <source>format call provides unused keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" />
+      <source>logging statement uses string.format()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="461" />
+      <source>logging statement uses '%'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="464" />
-      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="469" />
-      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <source>logging statement uses '+'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" />
+      <source>logging statement uses f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="470" />
+      <source>logging statement uses 'warn' instead of 'warning'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="474" />
+      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="478" />
+      <source>expected these __future__ imports: {0}; but got none</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="482" />
+      <source>gettext import with alias _ found: {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="486" />
+      <source>print statement found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="488" />
+      <source>one element tuple found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="495" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="492" />
+      <source>mutable default argument of type {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="498" />
+      <source>mutable default argument of function call '{0}'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="502" />
+      <source>None should not be added at any return if function has no return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="507" />
+      <source>an explicit value at every return should be added if function has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="512" />
+      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" />
+      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="523" />
+      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="529" />
       <source>commented code lines should be removed</source>
       <translation type="unfinished" />
     </message>
@@ -56398,103 +56466,103 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="193" />
+      <location filename="../PipInterface/Pip.py" line="195" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="216" />
+      <location filename="../PipInterface/Pip.py" line="220" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="217" />
+      <location filename="../PipInterface/Pip.py" line="221" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="257" />
+      <location filename="../PipInterface/Pip.py" line="261" />
       <source>Install PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="304" />
+      <location filename="../PipInterface/Pip.py" line="308" />
       <source>Repair PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="395" />
+      <location filename="../PipInterface/Pip.py" line="399" />
       <source>Upgrade Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="441" />
+      <location filename="../PipInterface/Pip.py" line="445" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="471" />
+      <location filename="../PipInterface/Pip.py" line="475" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="492" />
+      <location filename="../PipInterface/Pip.py" line="496" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="549" />
-      <location filename="../PipInterface/Pip.py" line="521" />
-      <location filename="../PipInterface/Pip.py" line="512" />
+      <location filename="../PipInterface/Pip.py" line="553" />
+      <location filename="../PipInterface/Pip.py" line="525" />
+      <location filename="../PipInterface/Pip.py" line="516" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="550" />
-      <location filename="../PipInterface/Pip.py" line="513" />
+      <location filename="../PipInterface/Pip.py" line="554" />
+      <location filename="../PipInterface/Pip.py" line="517" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="559" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="912" />
+      <location filename="../PipInterface/Pip.py" line="916" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="938" />
-      <location filename="../PipInterface/Pip.py" line="929" />
+      <location filename="../PipInterface/Pip.py" line="942" />
+      <location filename="../PipInterface/Pip.py" line="933" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="930" />
+      <location filename="../PipInterface/Pip.py" line="934" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="962" />
-      <location filename="../PipInterface/Pip.py" line="955" />
+      <location filename="../PipInterface/Pip.py" line="966" />
+      <location filename="../PipInterface/Pip.py" line="959" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="956" />
+      <location filename="../PipInterface/Pip.py" line="960" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="987" />
-      <location filename="../PipInterface/Pip.py" line="979" />
+      <location filename="../PipInterface/Pip.py" line="991" />
+      <location filename="../PipInterface/Pip.py" line="983" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="980" />
+      <location filename="../PipInterface/Pip.py" line="984" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -56517,12 +56585,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="153" />
+      <location filename="../PipInterface/PipDialog.py" line="154" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="154" />
+      <location filename="../PipInterface/PipDialog.py" line="155" />
       <source>The process {0} could not be started.</source>
       <translation type="unfinished" />
     </message>
@@ -57387,30 +57455,30 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="434" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="435" />
       <source>Getting installed packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="448" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="449" />
       <source>Getting outdated packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1202" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1022" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1009" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="973" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
       <source>Search PyPI</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="975" />
       <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../PipInterface/PipPackagesWidget.py" line="989" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="990" />
       <source>%n package(s) found.</source>
       <translation>
         <numerusform>%n package found.</numerusform>
@@ -57418,195 +57486,203 @@
       </translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="996" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="997" />
       <source>Showing first {0} packages found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1015" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1016" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1011" />
       <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1024" />
       <source>&lt;p&gt;There were no more results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1204" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1222" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1223" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1224" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1225" />
       <source>Install Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1227" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1228" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1230" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1231" />
       <source>Repair Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1237" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1238" />
       <source>Install</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1402" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1239" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1403" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1240" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1242" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1243" />
       <source>Install Local Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1245" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1246" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1252" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1253" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1254" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1255" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1257" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1258" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1260" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1261" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1264" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1265" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1271" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1272" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1273" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1274" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1276" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1277" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1279" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1280" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1282" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1283" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1299" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1300" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1303" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1304" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1307" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1308" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1311" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1312" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1318" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1319" />
       <source>Edit User Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1321" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1322" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1326" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1327" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1545" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1532" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1521" />
-      <source>Edit Configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1546" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1533" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1522" />
+      <source>Edit Configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1547" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1534" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1523" />
       <source>No valid configuration path determined. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1714" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1736" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1735" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1757" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1760" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1862" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1843" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1890" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1865" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1887" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
   </context>
   <context>
+    <name>PipPackagesWindow</name>
+    <message>
+      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <source>Manage Packages</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>PipPage</name>
     <message>
       <location filename="../Preferences/ConfigurationPages/PipPage.py" line="31" />
@@ -58998,7 +59074,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="471" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -60630,8 +60706,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6671" />
-      <location filename="../Project/Project.py" line="6642" />
+      <location filename="../Project/Project.py" line="6668" />
+      <location filename="../Project/Project.py" line="6639" />
       <location filename="../Project/Project.py" line="6593" />
       <location filename="../Project/Project.py" line="4800" />
       <source>Execute Make</source>
@@ -60653,7 +60729,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6648" />
+      <location filename="../Project/Project.py" line="6645" />
       <location filename="../Project/Project.py" line="4819" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
@@ -61173,22 +61249,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6643" />
+      <location filename="../Project/Project.py" line="6640" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6651" />
+      <location filename="../Project/Project.py" line="6648" />
       <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="6656" />
+      <location filename="../Project/Project.py" line="6653" />
       <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="6672" />
+      <location filename="../Project/Project.py" line="6669" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
@@ -63827,7 +63903,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="424" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="434" />
       <location filename="../DataViews/PyCoverageDialog.py" line="69" />
       <source>LCOV Report</source>
       <translation type="unfinished" />
@@ -63856,12 +63932,12 @@
       </translation>
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="425" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="435" />
       <source>Enter the path of the output file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="429" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="439" />
       <source>LCOV Files (*.lcov);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -64131,7 +64207,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="361" />
+      <location filename="../DataViews/PyProfileDialog.py" line="371" />
       <location filename="../DataViews/PyProfileDialog.py" line="91" />
       <source>Exclude Python Library</source>
       <translation type="unfinished" />
@@ -64182,7 +64258,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="357" />
+      <location filename="../DataViews/PyProfileDialog.py" line="367" />
       <source>Include Python Library</source>
       <translation type="unfinished" />
     </message>
@@ -65513,38 +65589,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="213" />
+      <location filename="../UI/PythonAstViewer.py" line="214" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="223" />
+      <location filename="../UI/PythonAstViewer.py" line="224" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="229" />
+      <location filename="../UI/PythonAstViewer.py" line="230" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="247" />
+      <location filename="../UI/PythonAstViewer.py" line="248" />
       <source>Module</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="279" />
+      <location filename="../UI/PythonAstViewer.py" line="280" />
       <source>{0}: {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="296" />
-      <location filename="../UI/PythonAstViewer.py" line="286" />
+      <location filename="../UI/PythonAstViewer.py" line="297" />
+      <location filename="../UI/PythonAstViewer.py" line="287" />
       <source>{0},{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="303" />
+      <location filename="../UI/PythonAstViewer.py" line="304" />
       <source>{0}  -  {1}</source>
       <translation type="unfinished" />
     </message>
@@ -68068,7 +68144,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="716" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="714" />
       <source>Initializing new queue repository</source>
       <translation type="unfinished" />
     </message>
@@ -69046,50 +69122,82 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1341" />
-      <source>Active</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1555" />
       <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1345" />
-      <source>Status</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1349" />
-      <source>Hostname</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1350" />
-      <source>IPv4 Address</source>
+      <source>Active</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1343" />
+      <source>Name</source>
+      <translation type="unfinished">Name</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1568" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1344" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1347" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Public</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>MTU</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>{0} Bytes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1556" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1559" />
+      <source>Status</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1563" />
+      <source>Hostname</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1564" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1565" />
       <source>Netmask</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1352" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1566" />
       <source>Gateway</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1353" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1567" />
       <source>DNS</source>
       <translation type="unfinished" />
     </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1354" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
   </context>
   <context>
     <name>RccCompilerOptionsDialog</name>
@@ -70137,7 +70245,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/SearchWidget.py" line="98" />
+      <location filename="../WebBrowser/SearchWidget.py" line="100" />
       <source>Expression was not found.</source>
       <translation type="unfinished" />
     </message>
@@ -71513,45 +71621,45 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2063" />
-      <location filename="../QScintilla/Shell.py" line="1845" />
+      <location filename="../QScintilla/Shell.py" line="2059" />
+      <location filename="../QScintilla/Shell.py" line="1841" />
       <location filename="../QScintilla/Shell.py" line="408" />
       <source>Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="810" />
+      <location filename="../QScintilla/Shell.py" line="806" />
       <source>Select History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="811" />
+      <location filename="../QScintilla/Shell.py" line="807" />
       <source>Select the history entry to execute (most recent shown last).</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Shell.py" line="872" />
+      <source>Passive Debug Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="873" />
+      <source>
+Not connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Shell.py" line="876" />
-      <source>Passive Debug Mode</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="877" />
-      <source>
-Not connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="880" />
       <source>No.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="882" />
+      <location filename="../QScintilla/Shell.py" line="878" />
       <source>{0} on {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="929" />
+      <location filename="../QScintilla/Shell.py" line="925" />
       <source>Exception "{0}"
 {1}
 File: {2}, Line: {3}
@@ -71559,88 +71667,88 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="938" />
+      <location filename="../QScintilla/Shell.py" line="934" />
       <source>Exception "{0}"
 {1}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="958" />
+      <location filename="../QScintilla/Shell.py" line="954" />
       <source>Unspecified syntax error.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="961" />
+      <location filename="../QScintilla/Shell.py" line="957" />
       <source>Syntax error "{1}" in file {0} at line {2}, character {3}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="985" />
+      <location filename="../QScintilla/Shell.py" line="981" />
       <source>Signal "{0}" generated in file {1} at line {2}.
 Function: {3}({4})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1067" />
+      <location filename="../QScintilla/Shell.py" line="1063" />
       <source>StdOut: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1075" />
+      <location filename="../QScintilla/Shell.py" line="1071" />
       <source>StdErr: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1101" />
+      <location filename="../QScintilla/Shell.py" line="1097" />
       <source>&lt;{0}&gt; {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1888" />
+      <location filename="../QScintilla/Shell.py" line="1884" />
       <source>Available Virtual Environments:
 {0}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1931" />
-      <location filename="../QScintilla/Shell.py" line="1895" />
+      <location filename="../QScintilla/Shell.py" line="1927" />
+      <location filename="../QScintilla/Shell.py" line="1891" />
       <source>Current Virtual Environment: '{0}'
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2203" />
+      <location filename="../QScintilla/Shell.py" line="2199" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2204" />
+      <location filename="../QScintilla/Shell.py" line="2200" />
       <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="2446" />
-      <location filename="../QScintilla/Shell.py" line="2431" />
-      <location filename="../QScintilla/Shell.py" line="2412" />
+      <location filename="../QScintilla/Shell.py" line="2442" />
+      <location filename="../QScintilla/Shell.py" line="2427" />
+      <location filename="../QScintilla/Shell.py" line="2408" />
       <source>Save Shell Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2414" />
+      <location filename="../QScintilla/Shell.py" line="2410" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2432" />
+      <location filename="../QScintilla/Shell.py" line="2428" />
       <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="2447" />
+      <location filename="../QScintilla/Shell.py" line="2443" />
       <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>
@@ -71885,335 +71993,335 @@
   <context>
     <name>ShellWindow</name>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1275" />
-      <location filename="../QScintilla/ShellWindow.py" line="54" />
+      <location filename="../QScintilla/ShellWindow.py" line="1279" />
+      <location filename="../QScintilla/ShellWindow.py" line="62" />
       <source>eric Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="220" />
-      <source>Quit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="222" />
-      <source>&amp;Quit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="223" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="228" />
-      <source>Quit the Shell</source>
+      <source>Quit</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/ShellWindow.py" line="230" />
+      <source>&amp;Quit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="231" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="236" />
+      <source>Quit the Shell</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="238" />
       <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="237" />
-      <source>New Window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="239" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="240" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="245" />
-      <source>Open a new Shell window</source>
+      <source>New Window</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/ShellWindow.py" line="247" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="248" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="253" />
+      <source>Open a new Shell window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="255" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="258" />
-      <location filename="../QScintilla/ShellWindow.py" line="256" />
-      <source>Restart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="264" />
-      <source>Restart the shell</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="266" />
+      <location filename="../QScintilla/ShellWindow.py" line="264" />
+      <source>Restart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="272" />
+      <source>Restart the shell</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="274" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="278" />
-      <location filename="../QScintilla/ShellWindow.py" line="276" />
+      <location filename="../QScintilla/ShellWindow.py" line="286" />
+      <location filename="../QScintilla/ShellWindow.py" line="284" />
       <source>Restart and Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="285" />
+      <location filename="../QScintilla/ShellWindow.py" line="293" />
       <source>Clear the window and restart the shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="288" />
+      <location filename="../QScintilla/ShellWindow.py" line="296" />
       <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="298" />
+      <location filename="../QScintilla/ShellWindow.py" line="306" />
       <source>Save Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="300" />
+      <location filename="../QScintilla/ShellWindow.py" line="308" />
       <source>Save Contents...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="309" />
+      <location filename="../QScintilla/ShellWindow.py" line="317" />
       <source>Save the current contents of the shell to a file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="312" />
+      <location filename="../QScintilla/ShellWindow.py" line="320" />
       <source>&lt;b&gt;Save Contents&lt;/b&gt;&lt;p&gt;Save the current contents of the shell to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="345" />
+      <location filename="../QScintilla/ShellWindow.py" line="353" />
       <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="../QScintilla/ShellWindow.py" line="367" />
+      <location filename="../QScintilla/ShellWindow.py" line="375" />
       <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="../QScintilla/ShellWindow.py" line="389" />
+      <location filename="../QScintilla/ShellWindow.py" line="397" />
       <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="411" />
+      <location filename="../QScintilla/ShellWindow.py" line="419" />
       <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="709" />
-      <location filename="../QScintilla/ShellWindow.py" line="708" />
+      <location filename="../QScintilla/ShellWindow.py" line="713" />
+      <location filename="../QScintilla/ShellWindow.py" line="712" />
       <source>Move forward one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="721" />
-      <location filename="../QScintilla/ShellWindow.py" line="720" />
+      <location filename="../QScintilla/ShellWindow.py" line="725" />
+      <location filename="../QScintilla/ShellWindow.py" line="724" />
       <source>Move back one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1115" />
+      <location filename="../QScintilla/ShellWindow.py" line="1119" />
       <source>Show History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1117" />
+      <location filename="../QScintilla/ShellWindow.py" line="1121" />
       <source>&amp;Show History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1123" />
-      <source>Show the shell history in a dialog</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1127" />
+      <source>Show the shell history in a dialog</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1131" />
       <source>Clear History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1129" />
+      <location filename="../QScintilla/ShellWindow.py" line="1133" />
       <source>&amp;Clear History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1135" />
-      <source>Clear the shell history</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1139" />
+      <source>Clear the shell history</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1143" />
       <source>Select History Entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1140" />
+      <location filename="../QScintilla/ShellWindow.py" line="1144" />
       <source>Select History &amp;Entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1147" />
+      <location filename="../QScintilla/ShellWindow.py" line="1151" />
       <source>Select an entry of the shell history</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
+      <location filename="../QScintilla/ShellWindow.py" line="1160" />
       <source>About</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
-      <source>&amp;About</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1158" />
-      <source>Display information about this software</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1160" />
+      <source>&amp;About</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1162" />
+      <source>Display information about this software</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1164" />
       <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="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About &amp;Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1172" />
+      <location filename="../QScintilla/ShellWindow.py" line="1176" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1175" />
+      <location filename="../QScintilla/ShellWindow.py" line="1179" />
       <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="../QScintilla/ShellWindow.py" line="1184" />
+      <location filename="../QScintilla/ShellWindow.py" line="1188" />
       <source>What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1186" />
+      <location filename="../QScintilla/ShellWindow.py" line="1190" />
       <source>&amp;What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1187" />
+      <location filename="../QScintilla/ShellWindow.py" line="1191" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1192" />
+      <location filename="../QScintilla/ShellWindow.py" line="1196" />
       <source>Context sensitive help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1194" />
+      <location filename="../QScintilla/ShellWindow.py" line="1198" />
       <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="../QScintilla/ShellWindow.py" line="1273" />
+      <location filename="../QScintilla/ShellWindow.py" line="1277" />
       <source>eric Shell [{0}]</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="1346" />
       <source>About eric Shell Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1343" />
+      <location filename="../QScintilla/ShellWindow.py" line="1347" />
       <source>The eric Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1370" />
+      <location filename="../QScintilla/ShellWindow.py" line="1374" />
       <source>&amp;File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1381" />
+      <location filename="../QScintilla/ShellWindow.py" line="1385" />
       <source>&amp;Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1392" />
+      <location filename="../QScintilla/ShellWindow.py" line="1396" />
       <source>&amp;View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1399" />
+      <location filename="../QScintilla/ShellWindow.py" line="1403" />
       <source>Histor&amp;y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1406" />
+      <location filename="../QScintilla/ShellWindow.py" line="1410" />
       <source>&amp;Start</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1412" />
+      <location filename="../QScintilla/ShellWindow.py" line="1416" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1445" />
+      <location filename="../QScintilla/ShellWindow.py" line="1449" />
       <source>File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1455" />
+      <location filename="../QScintilla/ShellWindow.py" line="1459" />
       <source>Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1461" />
+      <location filename="../QScintilla/ShellWindow.py" line="1465" />
       <source>Find</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1466" />
+      <location filename="../QScintilla/ShellWindow.py" line="1470" />
       <source>View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1472" />
+      <location filename="../QScintilla/ShellWindow.py" line="1476" />
       <source>History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1477" />
+      <location filename="../QScintilla/ShellWindow.py" line="1481" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1499" />
+      <location filename="../QScintilla/ShellWindow.py" line="1503" />
       <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -72571,24 +72679,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="363" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="345" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="324" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
       <source>Edit shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="326" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="347" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="365" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -75733,328 +75841,328 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="310" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="327" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="312" />
       <source>Importing project into Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="328" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="330" />
       <source>Imported revision {0}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="362" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="364" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="367" />
       <source>Subversion Checkout</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="420" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="433" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="422" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="368" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="389" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="388" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="391" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="390" />
       <source>Checking project out of Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="419" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="432" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="421" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="434" />
       <source>Subversion Export</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="443" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="445" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="456" />
       <source>Exporting project from Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="514" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="535" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="516" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="537" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="515" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="517" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="538" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="578" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="580" />
       <source>Commiting changes to Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="614" />
       <source>Committed revision {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="638" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="684" />
       <source>Synchronizing with the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="735" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="793" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="898" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="900" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="859" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="937" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="939" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="918" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="920" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="998" />
       <source>Moving {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1177" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1148" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1027" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="998" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1292" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1124" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1094" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1179" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1029" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1294" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1265" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1126" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1096" />
       <source>Subversion Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1095" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1001" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1097" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1028" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1125" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1030" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1127" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1062" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1161" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1147" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1149" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1324" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1172" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1326" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1174" />
       <source>Revision {0}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1106" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1095" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1197" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1108" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1097" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1096" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1198" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1200" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1107" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1109" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1211" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1113" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1115" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1219" />
       <source>Reverting changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1149" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1264" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1151" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1266" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1178" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1293" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1180" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1295" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1207" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1318" />
       <source>Switching to {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1416" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1275" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1418" />
       <source>Merging {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1543" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1723" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1544" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1725" />
       <source>Cleaning up {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1573" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1763" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1765" />
       <source>Subversion command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1744" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1883" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1747" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1887" />
       <source>Resolving conficts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1924" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1928" />
       <source>Copying {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1844" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1823" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2000" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1847" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1987" />
       <source>Subversion Set Property</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1870" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2045" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1988" />
       <source>You have to supply a property name. Aborting.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2023" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2027" />
       <source>Property set.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1887" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1858" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2061" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2044" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1890" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1872" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2048" />
       <source>Subversion Delete Property</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2079" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2083" />
       <source>Property deleted.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2114" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2102" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2093" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2294" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2105" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2096" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2310" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2298" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2289" />
       <source>Subversion Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2115" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2307" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2118" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2311" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2348" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2352" />
       <source>Subversion Lock</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2349" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2353" />
       <source>Enter lock comment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2165" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2370" />
       <source>Locking in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2192" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2195" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2411" />
       <source>Unlocking in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2217" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2458" />
       <source>Relocating</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2235" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2479" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2238" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2483" />
       <source>Repository Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2236" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2480" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2239" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2484" />
       <source>Enter the repository URL.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2269" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2505" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2309" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2272" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2509" />
       <source>Remove from changelist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2285" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2544" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2533" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2548" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2537" />
       <source>Add to changelist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2534" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2289" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2538" />
       <source>Enter name of the changelist:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2373" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2598" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2602" />
       <source>Upgrade</source>
       <translation type="unfinished" />
     </message>
@@ -76235,7 +76343,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2052" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="181" />
       <source>The svn process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -76246,12 +76354,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1862" />
       <source>Enter property name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2051" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2054" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
@@ -76872,27 +76980,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="208" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="284" />
       <source>There is no difference.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="223" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="342" />
-      <source>&lt;Start&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="342" />
+      <source>&lt;Start&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="225" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="343" />
       <source>&lt;End&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="410" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="444" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="426" />
@@ -76900,19 +77008,19 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="378" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="428" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="396" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="445" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="412" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="461" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
@@ -77168,7 +77276,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="566" />
@@ -77178,7 +77286,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="674" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="563" />
@@ -79176,7 +79284,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="654" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.ui" line="0" />
@@ -79400,8 +79508,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1057" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="129" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="915" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="894" />
@@ -79410,7 +79518,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="134" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="818" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="134" />
@@ -79418,7 +79526,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="136" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="837" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="136" />
@@ -79502,7 +79610,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="491" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="562" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="491" />
@@ -79510,76 +79618,76 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="798" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="655" />
       <source>There are no entries selected to be committed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
-      <source>Add</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
+      <source>Add</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="840" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="697" />
       <source>There are no unversioned entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="888" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="862" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="720" />
-      <source>Revert</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="791" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="769" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="721" />
-      <source>There are no uncommitted changes available/selected.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="720" />
+      <source>Revert</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="934" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="912" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="864" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="769" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="721" />
+      <source>There are no uncommitted changes available/selected.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="747" />
       <source>There are no missing entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="768" />
       <source>Differences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="939" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="932" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="797" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="790" />
-      <source>Side-by-Side Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="790" />
+      <source>Side-by-Side Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="941" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="798" />
       <source>Only one file with uncommitted changes must be selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="819" />
       <source>There are no unlocked files available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="981" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="876" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="857" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="838" />
@@ -79587,25 +79695,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="998" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="856" />
       <source>Break Lock</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1017" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="875" />
       <source>Steal Lock</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1038" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="895" />
       <source>There are no files available/selected not belonging to a changelist.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1059" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="916" />
       <source>There are no files available/selected belonging to a changelist.</source>
       <translation type="unfinished" />
@@ -79733,7 +79841,7 @@
   <context>
     <name>SvnStatusMonitorThread</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="141" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="143" />
       <source>Subversion status checked successfully (using pysvn)</source>
       <translation type="unfinished" />
     </message>
@@ -81328,7 +81436,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="187" />
+      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="188" />
       <source>&lt;font color="#FF0000"&gt;&lt;b&gt;Error:&lt;/b&gt; {0}&lt;/font&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -82352,7 +82460,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="565" />
+      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="563" />
       <source>Show Tab Manager</source>
       <translation type="unfinished" />
     </message>
@@ -82918,47 +83026,47 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="743" />
+      <location filename="../Tasks/TaskViewer.py" line="744" />
       <source>Activate task filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="744" />
+      <location filename="../Tasks/TaskViewer.py" line="745" />
       <source>The task filter doesn't have any active filters. Do you want to configure the filter settings?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="778" />
-      <source>Scan Filter Patterns</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="779" />
+      <source>Scan Filter Patterns</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="780" />
       <source>Enter filename patterns of files to be excluded separated by a comma:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="821" />
-      <source>Extracting project tasks...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="822" />
+      <source>Extracting project tasks...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="823" />
       <source>Abort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="825" />
+      <location filename="../Tasks/TaskViewer.py" line="826" />
       <source>%v/%m Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="829" />
+      <location filename="../Tasks/TaskViewer.py" line="830" />
       <source>Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="836" />
+      <location filename="../Tasks/TaskViewer.py" line="837" />
       <source>Extracting project tasks...
 {0}</source>
       <translation type="unfinished" />
@@ -83100,7 +83208,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="316" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="318" />
       <location filename="../MicroPython/Devices/TeensyDevices.py" line="154" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -83141,17 +83249,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="317" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="319" />
       <source>&lt;p&gt;Teensy 4.0 and Teensy 4.1 are flashed using the 'Teensy Loader' application. Make sure you downloaded the MicroPython or CircuitPython .hex file.&lt;/p&gt;&lt;p&gt;See &lt;a href="{0}"&gt;the PJRC Teensy web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="339" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="341" />
       <source>Start 'Teensy Loader'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="340" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="342" />
       <source>&lt;p&gt;The 'Teensy Loader' application &lt;b&gt;teensy&lt;/b&gt; could not be started. Ensure it is in the application search path or start it manually.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -83377,78 +83485,78 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="531" />
+      <location filename="../Templates/TemplateViewer.py" line="533" />
       <source>Remove Template</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="532" />
+      <location filename="../Templates/TemplateViewer.py" line="534" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="560" />
-      <source>Import Templates</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Templates/TemplateViewer.py" line="562" />
+      <source>Import Templates</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Templates/TemplateViewer.py" line="564" />
       <source>Templates Files (*.ecj);;XML Templates Files (*.e4c);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="595" />
-      <location filename="../Templates/TemplateViewer.py" line="579" />
+      <location filename="../Templates/TemplateViewer.py" line="597" />
+      <location filename="../Templates/TemplateViewer.py" line="581" />
       <source>Export Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="581" />
+      <location filename="../Templates/TemplateViewer.py" line="583" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="596" />
+      <location filename="../Templates/TemplateViewer.py" line="598" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="614" />
+      <location filename="../Templates/TemplateViewer.py" line="616" />
       <source>Reload Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="615" />
+      <location filename="../Templates/TemplateViewer.py" line="617" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
       <source>Template Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="883" />
+      <location filename="../Templates/TemplateViewer.py" line="885" />
       <source>Edit Template Group</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="884" />
+      <location filename="../Templates/TemplateViewer.py" line="886" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1005" />
+      <location filename="../Templates/TemplateViewer.py" line="1007" />
       <source>Read Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1006" />
+      <location filename="../Templates/TemplateViewer.py" line="1008" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -86293,99 +86401,99 @@
   <context>
     <name>UMLGraphicsView</name>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="90" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="94" />
       <source>Delete shapes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="96" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="100" />
       <source>Increase width by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="103" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="107" />
       <source>Increase height by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="110" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="114" />
       <source>Decrease width by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="117" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="121" />
       <source>Decrease height by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="123" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="127" />
       <source>Set size</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="128" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="132" />
       <source>Re-Scan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="133" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="137" />
       <source>Re-Layout</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="138" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="142" />
       <source>Align Left</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="145" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="149" />
       <source>Align Center Horizontal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="152" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="156" />
       <source>Align Right</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="158" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="162" />
       <source>Align Top</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="165" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="169" />
       <source>Align Center Vertical</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="172" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="176" />
       <source>Align Bottom</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="235" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="240" />
       <source>Graphics</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="395" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="382" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="365" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="400" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="387" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="370" />
       <source>Save Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="367" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="372" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="383" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="388" />
       <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="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="401" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -87111,7 +87219,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7688" />
+      <location filename="../UI/UserInterface.py" line="7687" />
       <location filename="../UI/UserInterface.py" line="1934" />
       <location filename="../UI/UserInterface.py" line="1927" />
       <source>Load session</source>
@@ -88398,8 +88506,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7373" />
-      <location filename="../UI/UserInterface.py" line="7354" />
+      <location filename="../UI/UserInterface.py" line="7372" />
+      <location filename="../UI/UserInterface.py" line="7353" />
       <location filename="../UI/UserInterface.py" line="3358" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished" />
@@ -88420,7 +88528,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7392" />
+      <location filename="../UI/UserInterface.py" line="7391" />
       <location filename="../UI/UserInterface.py" line="3377" />
       <source>Import Keyboard Shortcuts</source>
       <translation type="unfinished" />
@@ -89135,185 +89243,185 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6609" />
+      <location filename="../UI/UserInterface.py" line="6610" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6896" />
-      <location filename="../UI/UserInterface.py" line="6834" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6716" />
-      <location filename="../UI/UserInterface.py" line="6652" />
-      <source>Documentation Missing</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6897" />
       <location filename="../UI/UserInterface.py" line="6835" />
       <location filename="../UI/UserInterface.py" line="6791" />
       <location filename="../UI/UserInterface.py" line="6717" />
       <location filename="../UI/UserInterface.py" line="6653" />
+      <source>Documentation Missing</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6898" />
+      <location filename="../UI/UserInterface.py" line="6836" />
+      <location filename="../UI/UserInterface.py" line="6792" />
+      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6654" />
       <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="6878" />
-      <location filename="../UI/UserInterface.py" line="6760" />
-      <source>Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6761" />
-      <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="6879" />
+      <location filename="../UI/UserInterface.py" line="6761" />
+      <source>Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6762" />
+      <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="6880" />
       <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="7056" />
+      <location filename="../UI/UserInterface.py" line="6993" />
+      <source>Start Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6994" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7057" />
-      <location filename="../UI/UserInterface.py" line="6994" />
-      <source>Start Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6995" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7058" />
       <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="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7374" />
+      <location filename="../UI/UserInterface.py" line="7373" />
       <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="7394" />
+      <location filename="../UI/UserInterface.py" line="7393" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7576" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7577" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7578" />
       <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
+      <location filename="../UI/UserInterface.py" line="7620" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7649" />
-      <location filename="../UI/UserInterface.py" line="7622" />
-      <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="7648" />
+      <location filename="../UI/UserInterface.py" line="7621" />
+      <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="7647" />
       <source>Read session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7665" />
+      <location filename="../UI/UserInterface.py" line="7664" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7667" />
+      <location filename="../UI/UserInterface.py" line="7666" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7690" />
+      <location filename="../UI/UserInterface.py" line="7689" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7735" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7736" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7737" />
       <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="8106" />
+      <source>Drop Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8107" />
-      <source>Drop Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8108" />
       <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="8288" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8289" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8290" />
       <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="8346" />
+      <location filename="../UI/UserInterface.py" line="8333" />
+      <source>First time usage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8334" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8347" />
-      <location filename="../UI/UserInterface.py" line="8334" />
-      <source>First time usage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8335" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8348" />
       <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="8371" />
+      <location filename="../UI/UserInterface.py" line="8370" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8530" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8531" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8532" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -89393,7 +89501,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="989" />
+      <location filename="../Utilities/__init__.py" line="991" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -90489,663 +90597,663 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="681" />
-      <location filename="../QScintilla/ShellWindow.py" line="302" />
+      <location filename="../QScintilla/ShellWindow.py" line="310" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1032" />
-      <location filename="../QScintilla/ShellWindow.py" line="329" />
+      <location filename="../QScintilla/ShellWindow.py" line="337" />
       <source>Cut</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1034" />
-      <location filename="../QScintilla/ShellWindow.py" line="331" />
+      <location filename="../QScintilla/ShellWindow.py" line="339" />
       <source>Cu&amp;t</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1036" />
-      <location filename="../QScintilla/ShellWindow.py" line="333" />
+      <location filename="../QScintilla/ShellWindow.py" line="341" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1039" />
-      <location filename="../QScintilla/ShellWindow.py" line="336" />
+      <location filename="../QScintilla/ShellWindow.py" line="344" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1045" />
-      <location filename="../QScintilla/ShellWindow.py" line="342" />
+      <location filename="../QScintilla/ShellWindow.py" line="350" />
       <source>Cut the selection</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1059" />
-      <location filename="../QScintilla/ShellWindow.py" line="351" />
+      <location filename="../QScintilla/ShellWindow.py" line="359" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1061" />
-      <location filename="../QScintilla/ShellWindow.py" line="353" />
+      <location filename="../QScintilla/ShellWindow.py" line="361" />
       <source>&amp;Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1063" />
-      <location filename="../QScintilla/ShellWindow.py" line="355" />
+      <location filename="../QScintilla/ShellWindow.py" line="363" />
       <source>Ctrl+C</source>
       <comment>Edit|Copy</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1066" />
-      <location filename="../QScintilla/ShellWindow.py" line="358" />
+      <location filename="../QScintilla/ShellWindow.py" line="366" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1072" />
-      <location filename="../QScintilla/ShellWindow.py" line="364" />
+      <location filename="../QScintilla/ShellWindow.py" line="372" />
       <source>Copy the selection</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1086" />
-      <location filename="../QScintilla/ShellWindow.py" line="373" />
+      <location filename="../QScintilla/ShellWindow.py" line="381" />
       <source>Paste</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1088" />
-      <location filename="../QScintilla/ShellWindow.py" line="375" />
+      <location filename="../QScintilla/ShellWindow.py" line="383" />
       <source>&amp;Paste</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1090" />
-      <location filename="../QScintilla/ShellWindow.py" line="377" />
+      <location filename="../QScintilla/ShellWindow.py" line="385" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1093" />
-      <location filename="../QScintilla/ShellWindow.py" line="380" />
+      <location filename="../QScintilla/ShellWindow.py" line="388" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1099" />
-      <location filename="../QScintilla/ShellWindow.py" line="386" />
+      <location filename="../QScintilla/ShellWindow.py" line="394" />
       <source>Paste the last cut/copied text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1115" />
       <location filename="../ViewManager/ViewManager.py" line="1113" />
-      <location filename="../QScintilla/ShellWindow.py" line="400" />
-      <location filename="../QScintilla/ShellWindow.py" line="398" />
+      <location filename="../QScintilla/ShellWindow.py" line="408" />
+      <location filename="../QScintilla/ShellWindow.py" line="406" />
       <source>Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1117" />
-      <location filename="../QScintilla/ShellWindow.py" line="402" />
+      <location filename="../QScintilla/ShellWindow.py" line="410" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1124" />
-      <location filename="../QScintilla/ShellWindow.py" line="409" />
+      <location filename="../QScintilla/ShellWindow.py" line="417" />
       <source>Clear all text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
-      <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/ShellWindow.py" line="435" />
-      <location filename="../QScintilla/ShellWindow.py" line="434" />
+      <location filename="../QScintilla/MiniEditor.py" line="1681" />
+      <location filename="../QScintilla/MiniEditor.py" line="1680" />
+      <location filename="../QScintilla/ShellWindow.py" line="439" />
+      <location filename="../QScintilla/ShellWindow.py" line="438" />
       <source>Delete current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1686" />
-      <location filename="../QScintilla/ShellWindow.py" line="436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1682" />
+      <location filename="../QScintilla/ShellWindow.py" line="440" />
       <source>Ctrl+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
-      <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/ShellWindow.py" line="447" />
-      <location filename="../QScintilla/ShellWindow.py" line="446" />
+      <location filename="../QScintilla/MiniEditor.py" line="1203" />
+      <location filename="../QScintilla/MiniEditor.py" line="1202" />
+      <location filename="../QScintilla/ShellWindow.py" line="451" />
+      <location filename="../QScintilla/ShellWindow.py" line="450" />
       <source>Indent one level</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1208" />
-      <location filename="../QScintilla/ShellWindow.py" line="448" />
+      <location filename="../QScintilla/MiniEditor.py" line="1204" />
+      <location filename="../QScintilla/ShellWindow.py" line="452" />
       <source>Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
-      <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/ShellWindow.py" line="459" />
-      <location filename="../QScintilla/ShellWindow.py" line="458" />
+      <location filename="../QScintilla/MiniEditor.py" line="1669" />
+      <location filename="../QScintilla/MiniEditor.py" line="1668" />
+      <location filename="../QScintilla/ShellWindow.py" line="463" />
+      <location filename="../QScintilla/ShellWindow.py" line="462" />
       <source>Insert new line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
-      <location filename="../QScintilla/ShellWindow.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1670" />
+      <location filename="../QScintilla/ShellWindow.py" line="464" />
       <source>Return</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1675" />
-      <location filename="../QScintilla/ShellWindow.py" line="461" />
+      <location filename="../QScintilla/MiniEditor.py" line="1671" />
+      <location filename="../QScintilla/ShellWindow.py" line="465" />
       <source>Enter</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
-      <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/ShellWindow.py" line="471" />
-      <location filename="../QScintilla/ShellWindow.py" line="470" />
+      <location filename="../QScintilla/MiniEditor.py" line="1555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1554" />
+      <location filename="../QScintilla/ShellWindow.py" line="475" />
+      <location filename="../QScintilla/ShellWindow.py" line="474" />
       <source>Delete previous character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1560" />
-      <location filename="../QScintilla/ShellWindow.py" line="472" />
+      <location filename="../QScintilla/MiniEditor.py" line="1556" />
+      <location filename="../QScintilla/ShellWindow.py" line="476" />
       <source>Backspace</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1567" />
-      <location filename="../QScintilla/ShellWindow.py" line="479" />
+      <location filename="../QScintilla/MiniEditor.py" line="1563" />
+      <location filename="../QScintilla/ShellWindow.py" line="483" />
       <source>Meta+H</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1572" />
-      <location filename="../QScintilla/ShellWindow.py" line="484" />
+      <location filename="../QScintilla/MiniEditor.py" line="1568" />
+      <location filename="../QScintilla/ShellWindow.py" line="488" />
       <source>Shift+Backspace</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
-      <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/ShellWindow.py" line="493" />
-      <location filename="../QScintilla/ShellWindow.py" line="492" />
+      <location filename="../QScintilla/MiniEditor.py" line="1593" />
+      <location filename="../QScintilla/MiniEditor.py" line="1592" />
+      <location filename="../QScintilla/ShellWindow.py" line="497" />
+      <location filename="../QScintilla/ShellWindow.py" line="496" />
       <source>Delete current character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1598" />
-      <location filename="../QScintilla/ShellWindow.py" line="494" />
+      <location filename="../QScintilla/MiniEditor.py" line="1594" />
+      <location filename="../QScintilla/ShellWindow.py" line="498" />
       <source>Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1605" />
-      <location filename="../QScintilla/ShellWindow.py" line="501" />
+      <location filename="../QScintilla/MiniEditor.py" line="1601" />
+      <location filename="../QScintilla/ShellWindow.py" line="505" />
       <source>Meta+D</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
-      <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/ShellWindow.py" line="509" />
-      <location filename="../QScintilla/ShellWindow.py" line="508" />
+      <location filename="../QScintilla/MiniEditor.py" line="1609" />
+      <location filename="../QScintilla/MiniEditor.py" line="1608" />
+      <location filename="../QScintilla/ShellWindow.py" line="513" />
+      <location filename="../QScintilla/ShellWindow.py" line="512" />
       <source>Delete word to left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1614" />
-      <location filename="../QScintilla/ShellWindow.py" line="510" />
+      <location filename="../QScintilla/MiniEditor.py" line="1610" />
+      <location filename="../QScintilla/ShellWindow.py" line="514" />
       <source>Ctrl+Backspace</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
-      <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/ShellWindow.py" line="521" />
-      <location filename="../QScintilla/ShellWindow.py" line="520" />
+      <location filename="../QScintilla/MiniEditor.py" line="1621" />
+      <location filename="../QScintilla/MiniEditor.py" line="1620" />
+      <location filename="../QScintilla/ShellWindow.py" line="525" />
+      <location filename="../QScintilla/ShellWindow.py" line="524" />
       <source>Delete word to right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1626" />
-      <location filename="../QScintilla/ShellWindow.py" line="522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1622" />
+      <location filename="../QScintilla/ShellWindow.py" line="526" />
       <source>Ctrl+Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
-      <location filename="../QScintilla/MiniEditor.py" line="1637" />
-      <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/ShellWindow.py" line="533" />
-      <location filename="../QScintilla/ShellWindow.py" line="532" />
+      <location filename="../QScintilla/MiniEditor.py" line="1633" />
+      <location filename="../QScintilla/MiniEditor.py" line="1632" />
+      <location filename="../QScintilla/ShellWindow.py" line="537" />
+      <location filename="../QScintilla/ShellWindow.py" line="536" />
       <source>Delete line to left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1639" />
-      <location filename="../QScintilla/ShellWindow.py" line="535" />
+      <location filename="../QScintilla/MiniEditor.py" line="1635" />
+      <location filename="../QScintilla/ShellWindow.py" line="539" />
       <source>Ctrl+Shift+Backspace</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
-      <location filename="../QScintilla/MiniEditor.py" line="1651" />
-      <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/ShellWindow.py" line="547" />
-      <location filename="../QScintilla/ShellWindow.py" line="546" />
+      <location filename="../QScintilla/MiniEditor.py" line="1647" />
+      <location filename="../QScintilla/MiniEditor.py" line="1646" />
+      <location filename="../QScintilla/ShellWindow.py" line="551" />
+      <location filename="../QScintilla/ShellWindow.py" line="550" />
       <source>Delete line to right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1659" />
-      <location filename="../QScintilla/ShellWindow.py" line="555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1655" />
+      <location filename="../QScintilla/ShellWindow.py" line="559" />
       <source>Meta+K</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1664" />
-      <location filename="../QScintilla/ShellWindow.py" line="560" />
+      <location filename="../QScintilla/MiniEditor.py" line="1660" />
+      <location filename="../QScintilla/ShellWindow.py" line="564" />
       <source>Ctrl+Shift+Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
-      <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/ShellWindow.py" line="569" />
-      <location filename="../QScintilla/ShellWindow.py" line="568" />
+      <location filename="../QScintilla/MiniEditor.py" line="891" />
+      <location filename="../QScintilla/MiniEditor.py" line="890" />
+      <location filename="../QScintilla/ShellWindow.py" line="573" />
+      <location filename="../QScintilla/ShellWindow.py" line="572" />
       <source>Move left one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="896" />
-      <location filename="../QScintilla/ShellWindow.py" line="570" />
+      <location filename="../QScintilla/MiniEditor.py" line="892" />
+      <location filename="../QScintilla/ShellWindow.py" line="574" />
       <source>Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="904" />
-      <location filename="../QScintilla/ShellWindow.py" line="578" />
+      <location filename="../QScintilla/MiniEditor.py" line="900" />
+      <location filename="../QScintilla/ShellWindow.py" line="582" />
       <source>Meta+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
-      <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/ShellWindow.py" line="585" />
-      <location filename="../QScintilla/ShellWindow.py" line="584" />
+      <location filename="../QScintilla/MiniEditor.py" line="907" />
+      <location filename="../QScintilla/MiniEditor.py" line="906" />
+      <location filename="../QScintilla/ShellWindow.py" line="589" />
+      <location filename="../QScintilla/ShellWindow.py" line="588" />
       <source>Move right one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="912" />
-      <location filename="../QScintilla/ShellWindow.py" line="586" />
+      <location filename="../QScintilla/MiniEditor.py" line="908" />
+      <location filename="../QScintilla/ShellWindow.py" line="590" />
       <source>Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="919" />
-      <location filename="../QScintilla/ShellWindow.py" line="593" />
+      <location filename="../QScintilla/MiniEditor.py" line="915" />
+      <location filename="../QScintilla/ShellWindow.py" line="597" />
       <source>Meta+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="991" />
-      <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/ShellWindow.py" line="601" />
-      <location filename="../QScintilla/ShellWindow.py" line="600" />
+      <location filename="../QScintilla/MiniEditor.py" line="987" />
+      <location filename="../QScintilla/MiniEditor.py" line="986" />
+      <location filename="../QScintilla/ShellWindow.py" line="605" />
+      <location filename="../QScintilla/ShellWindow.py" line="604" />
       <source>Move left one word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="999" />
-      <location filename="../QScintilla/MiniEditor.py" line="967" />
-      <location filename="../QScintilla/ShellWindow.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="995" />
+      <location filename="../QScintilla/MiniEditor.py" line="963" />
+      <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Alt+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1059" />
-      <location filename="../QScintilla/MiniEditor.py" line="1003" />
-      <location filename="../QScintilla/ShellWindow.py" line="613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1055" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/ShellWindow.py" line="617" />
       <source>Ctrl+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
-      <location filename="../QScintilla/MiniEditor.py" line="1011" />
-      <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/ShellWindow.py" line="621" />
-      <location filename="../QScintilla/ShellWindow.py" line="620" />
+      <location filename="../QScintilla/MiniEditor.py" line="1007" />
+      <location filename="../QScintilla/MiniEditor.py" line="1006" />
+      <location filename="../QScintilla/ShellWindow.py" line="625" />
+      <location filename="../QScintilla/ShellWindow.py" line="624" />
       <source>Move right one word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="1023" />
-      <location filename="../QScintilla/ShellWindow.py" line="629" />
+      <location filename="../QScintilla/MiniEditor.py" line="1809" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/ShellWindow.py" line="633" />
       <source>Ctrl+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1033" />
-      <location filename="../QScintilla/MiniEditor.py" line="1030" />
-      <location filename="../QScintilla/ShellWindow.py" line="639" />
-      <location filename="../QScintilla/ShellWindow.py" line="636" />
+      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1026" />
+      <location filename="../QScintilla/ShellWindow.py" line="643" />
+      <location filename="../QScintilla/ShellWindow.py" line="640" />
       <source>Move to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2074" />
-      <location filename="../QScintilla/MiniEditor.py" line="1043" />
-      <location filename="../QScintilla/ShellWindow.py" line="649" />
+      <location filename="../QScintilla/MiniEditor.py" line="2070" />
+      <location filename="../QScintilla/MiniEditor.py" line="1039" />
+      <location filename="../QScintilla/ShellWindow.py" line="653" />
       <source>Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
-      <location filename="../QScintilla/MiniEditor.py" line="1071" />
-      <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/ShellWindow.py" line="657" />
-      <location filename="../QScintilla/ShellWindow.py" line="656" />
+      <location filename="../QScintilla/MiniEditor.py" line="1067" />
+      <location filename="../QScintilla/MiniEditor.py" line="1066" />
+      <location filename="../QScintilla/ShellWindow.py" line="661" />
+      <location filename="../QScintilla/ShellWindow.py" line="660" />
       <source>Move to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1079" />
-      <location filename="../QScintilla/ShellWindow.py" line="665" />
+      <location filename="../QScintilla/MiniEditor.py" line="1075" />
+      <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>Meta+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1083" />
-      <location filename="../QScintilla/ShellWindow.py" line="669" />
+      <location filename="../QScintilla/MiniEditor.py" line="2087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
+      <location filename="../QScintilla/ShellWindow.py" line="673" />
       <source>End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
-      <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/ShellWindow.py" line="677" />
-      <location filename="../QScintilla/ShellWindow.py" line="676" />
+      <location filename="../QScintilla/MiniEditor.py" line="923" />
+      <location filename="../QScintilla/MiniEditor.py" line="922" />
+      <location filename="../QScintilla/ShellWindow.py" line="681" />
+      <location filename="../QScintilla/ShellWindow.py" line="680" />
       <source>Move up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="928" />
-      <location filename="../QScintilla/ShellWindow.py" line="678" />
+      <location filename="../QScintilla/MiniEditor.py" line="924" />
+      <location filename="../QScintilla/ShellWindow.py" line="682" />
       <source>Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="935" />
-      <location filename="../QScintilla/ShellWindow.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="689" />
       <source>Meta+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
-      <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/ShellWindow.py" line="693" />
-      <location filename="../QScintilla/ShellWindow.py" line="692" />
+      <location filename="../QScintilla/MiniEditor.py" line="939" />
+      <location filename="../QScintilla/MiniEditor.py" line="938" />
+      <location filename="../QScintilla/ShellWindow.py" line="697" />
+      <location filename="../QScintilla/ShellWindow.py" line="696" />
       <source>Move down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="944" />
-      <location filename="../QScintilla/ShellWindow.py" line="694" />
+      <location filename="../QScintilla/MiniEditor.py" line="940" />
+      <location filename="../QScintilla/ShellWindow.py" line="698" />
       <source>Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="951" />
-      <location filename="../QScintilla/ShellWindow.py" line="701" />
+      <location filename="../QScintilla/MiniEditor.py" line="947" />
+      <location filename="../QScintilla/ShellWindow.py" line="705" />
       <source>Meta+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1195" />
-      <location filename="../QScintilla/MiniEditor.py" line="1092" />
-      <location filename="../QScintilla/ShellWindow.py" line="710" />
+      <location filename="../QScintilla/MiniEditor.py" line="1191" />
+      <location filename="../QScintilla/MiniEditor.py" line="1088" />
+      <location filename="../QScintilla/ShellWindow.py" line="714" />
       <source>Ctrl+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1175" />
-      <location filename="../QScintilla/MiniEditor.py" line="1104" />
-      <location filename="../QScintilla/ShellWindow.py" line="722" />
+      <location filename="../QScintilla/MiniEditor.py" line="1171" />
+      <location filename="../QScintilla/MiniEditor.py" line="1100" />
+      <location filename="../QScintilla/ShellWindow.py" line="726" />
       <source>Ctrl+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
-      <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/ShellWindow.py" line="733" />
-      <location filename="../QScintilla/ShellWindow.py" line="732" />
+      <location filename="../QScintilla/MiniEditor.py" line="1135" />
+      <location filename="../QScintilla/MiniEditor.py" line="1134" />
+      <location filename="../QScintilla/ShellWindow.py" line="737" />
+      <location filename="../QScintilla/ShellWindow.py" line="736" />
       <source>Move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1140" />
-      <location filename="../QScintilla/ShellWindow.py" line="734" />
+      <location filename="../QScintilla/MiniEditor.py" line="1136" />
+      <location filename="../QScintilla/ShellWindow.py" line="738" />
       <source>PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/ShellWindow.py" line="745" />
-      <location filename="../QScintilla/ShellWindow.py" line="744" />
+      <location filename="../QScintilla/MiniEditor.py" line="1147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1146" />
+      <location filename="../QScintilla/ShellWindow.py" line="749" />
+      <location filename="../QScintilla/ShellWindow.py" line="748" />
       <source>Move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1152" />
-      <location filename="../QScintilla/ShellWindow.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="1148" />
+      <location filename="../QScintilla/ShellWindow.py" line="750" />
       <source>PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1159" />
-      <location filename="../QScintilla/ShellWindow.py" line="753" />
+      <location filename="../QScintilla/MiniEditor.py" line="1155" />
+      <location filename="../QScintilla/ShellWindow.py" line="757" />
       <source>Meta+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
-      <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/ShellWindow.py" line="761" />
-      <location filename="../QScintilla/ShellWindow.py" line="760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1855" />
+      <location filename="../QScintilla/MiniEditor.py" line="1854" />
+      <location filename="../QScintilla/ShellWindow.py" line="765" />
+      <location filename="../QScintilla/ShellWindow.py" line="764" />
       <source>Escape</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1860" />
-      <location filename="../QScintilla/ShellWindow.py" line="762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1856" />
+      <location filename="../QScintilla/ShellWindow.py" line="766" />
       <source>Esc</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1233" />
-      <location filename="../QScintilla/MiniEditor.py" line="1230" />
-      <location filename="../QScintilla/ShellWindow.py" line="775" />
-      <location filename="../QScintilla/ShellWindow.py" line="772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1226" />
+      <location filename="../QScintilla/ShellWindow.py" line="779" />
+      <location filename="../QScintilla/ShellWindow.py" line="776" />
       <source>Extend selection left one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1236" />
-      <location filename="../QScintilla/ShellWindow.py" line="778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1232" />
+      <location filename="../QScintilla/ShellWindow.py" line="782" />
       <source>Shift+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1243" />
-      <location filename="../QScintilla/ShellWindow.py" line="785" />
+      <location filename="../QScintilla/MiniEditor.py" line="1239" />
+      <location filename="../QScintilla/ShellWindow.py" line="789" />
       <source>Meta+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1253" />
-      <location filename="../QScintilla/MiniEditor.py" line="1250" />
-      <location filename="../QScintilla/ShellWindow.py" line="795" />
-      <location filename="../QScintilla/ShellWindow.py" line="792" />
+      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1246" />
+      <location filename="../QScintilla/ShellWindow.py" line="799" />
+      <location filename="../QScintilla/ShellWindow.py" line="796" />
       <source>Extend selection right one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1256" />
-      <location filename="../QScintilla/ShellWindow.py" line="798" />
+      <location filename="../QScintilla/MiniEditor.py" line="1252" />
+      <location filename="../QScintilla/ShellWindow.py" line="802" />
       <source>Shift+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1263" />
-      <location filename="../QScintilla/ShellWindow.py" line="805" />
+      <location filename="../QScintilla/MiniEditor.py" line="1259" />
+      <location filename="../QScintilla/ShellWindow.py" line="809" />
       <source>Meta+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
-      <location filename="../QScintilla/MiniEditor.py" line="1347" />
-      <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/ShellWindow.py" line="813" />
-      <location filename="../QScintilla/ShellWindow.py" line="812" />
+      <location filename="../QScintilla/MiniEditor.py" line="1343" />
+      <location filename="../QScintilla/MiniEditor.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="817" />
+      <location filename="../QScintilla/ShellWindow.py" line="816" />
       <source>Extend selection left one word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1356" />
-      <location filename="../QScintilla/MiniEditor.py" line="1316" />
-      <location filename="../QScintilla/ShellWindow.py" line="822" />
+      <location filename="../QScintilla/MiniEditor.py" line="1352" />
+      <location filename="../QScintilla/MiniEditor.py" line="1312" />
+      <location filename="../QScintilla/ShellWindow.py" line="826" />
       <source>Alt+Shift+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2277" />
-      <location filename="../QScintilla/MiniEditor.py" line="1362" />
-      <location filename="../QScintilla/ShellWindow.py" line="828" />
+      <location filename="../QScintilla/MiniEditor.py" line="2273" />
+      <location filename="../QScintilla/MiniEditor.py" line="1358" />
+      <location filename="../QScintilla/ShellWindow.py" line="832" />
       <source>Ctrl+Shift+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1373" />
-      <location filename="../QScintilla/MiniEditor.py" line="1370" />
-      <location filename="../QScintilla/ShellWindow.py" line="839" />
-      <location filename="../QScintilla/ShellWindow.py" line="836" />
+      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1366" />
+      <location filename="../QScintilla/ShellWindow.py" line="843" />
+      <location filename="../QScintilla/ShellWindow.py" line="840" />
       <source>Extend selection right one word</source>
       <translation type="unfinished" />
     </message>
@@ -91153,60 +91261,60 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1384" />
-      <location filename="../QScintilla/MiniEditor.py" line="1338" />
-      <location filename="../QScintilla/ShellWindow.py" line="850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1380" />
+      <location filename="../QScintilla/MiniEditor.py" line="1334" />
+      <location filename="../QScintilla/ShellWindow.py" line="854" />
       <source>Alt+Shift+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1838" />
-      <location filename="../QScintilla/MiniEditor.py" line="1390" />
-      <location filename="../QScintilla/ShellWindow.py" line="856" />
+      <location filename="../QScintilla/MiniEditor.py" line="1834" />
+      <location filename="../QScintilla/MiniEditor.py" line="1386" />
+      <location filename="../QScintilla/ShellWindow.py" line="860" />
       <source>Ctrl+Shift+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1402" />
       <location filename="../QScintilla/MiniEditor.py" line="1398" />
+      <location filename="../QScintilla/MiniEditor.py" line="1394" />
+      <location filename="../QScintilla/ShellWindow.py" line="872" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
-      <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1413" />
-      <location filename="../QScintilla/ShellWindow.py" line="879" />
+      <location filename="../QScintilla/MiniEditor.py" line="1409" />
+      <location filename="../QScintilla/ShellWindow.py" line="883" />
       <source>Shift+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1423" />
-      <location filename="../QScintilla/MiniEditor.py" line="1420" />
-      <location filename="../QScintilla/ShellWindow.py" line="889" />
-      <location filename="../QScintilla/ShellWindow.py" line="886" />
+      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1416" />
+      <location filename="../QScintilla/ShellWindow.py" line="893" />
+      <location filename="../QScintilla/ShellWindow.py" line="890" />
       <source>Extend selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1433" />
-      <location filename="../QScintilla/ShellWindow.py" line="899" />
+      <location filename="../QScintilla/MiniEditor.py" line="1429" />
+      <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Meta+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1437" />
-      <location filename="../QScintilla/ShellWindow.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
+      <location filename="../QScintilla/ShellWindow.py" line="907" />
       <source>Shift+End</source>
       <translation type="unfinished" />
     </message>
@@ -91214,255 +91322,255 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2533" />
-      <location filename="../QScintilla/ShellWindow.py" line="917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2529" />
+      <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2535" />
-      <location filename="../QScintilla/ShellWindow.py" line="919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2531" />
+      <location filename="../QScintilla/ShellWindow.py" line="923" />
       <source>&amp;Search...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2537" />
-      <location filename="../QScintilla/ShellWindow.py" line="921" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
+      <location filename="../QScintilla/ShellWindow.py" line="925" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2544" />
-      <location filename="../QScintilla/ShellWindow.py" line="928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2540" />
+      <location filename="../QScintilla/ShellWindow.py" line="932" />
       <source>Search for a text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="935" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2559" />
-      <location filename="../QScintilla/ShellWindow.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="2555" />
+      <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>Search next</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2561" />
-      <location filename="../QScintilla/ShellWindow.py" line="945" />
+      <location filename="../QScintilla/MiniEditor.py" line="2557" />
+      <location filename="../QScintilla/ShellWindow.py" line="949" />
       <source>Search &amp;next</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2563" />
-      <location filename="../QScintilla/ShellWindow.py" line="947" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
+      <location filename="../QScintilla/ShellWindow.py" line="951" />
       <source>F3</source>
       <comment>Search|Search next</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2570" />
-      <location filename="../QScintilla/ShellWindow.py" line="954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2566" />
+      <location filename="../QScintilla/ShellWindow.py" line="958" />
       <source>Search next occurrence of text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="957" />
+      <location filename="../QScintilla/ShellWindow.py" line="961" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2585" />
-      <location filename="../QScintilla/ShellWindow.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="2581" />
+      <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Search previous</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2587" />
-      <location filename="../QScintilla/ShellWindow.py" line="973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2583" />
+      <location filename="../QScintilla/ShellWindow.py" line="977" />
       <source>Search &amp;previous</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2589" />
-      <location filename="../QScintilla/ShellWindow.py" line="975" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
+      <location filename="../QScintilla/ShellWindow.py" line="979" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2598" />
-      <location filename="../QScintilla/ShellWindow.py" line="984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2594" />
+      <location filename="../QScintilla/ShellWindow.py" line="988" />
       <source>Search previous occurrence of text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="989" />
+      <location filename="../QScintilla/ShellWindow.py" line="993" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2758" />
-      <location filename="../QScintilla/ShellWindow.py" line="1010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2754" />
+      <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Zoom in</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2760" />
-      <location filename="../QScintilla/ShellWindow.py" line="1012" />
+      <location filename="../QScintilla/MiniEditor.py" line="2756" />
+      <location filename="../QScintilla/ShellWindow.py" line="1016" />
       <source>Zoom &amp;in</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2762" />
-      <location filename="../QScintilla/ShellWindow.py" line="1014" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
+      <location filename="../QScintilla/ShellWindow.py" line="1018" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2765" />
-      <location filename="../QScintilla/ShellWindow.py" line="1017" />
+      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/ShellWindow.py" line="1021" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2771" />
-      <location filename="../QScintilla/ShellWindow.py" line="1023" />
+      <location filename="../QScintilla/MiniEditor.py" line="2767" />
+      <location filename="../QScintilla/ShellWindow.py" line="1027" />
       <source>Zoom in on the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2774" />
-      <location filename="../QScintilla/ShellWindow.py" line="1026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/ShellWindow.py" line="1030" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2784" />
-      <location filename="../QScintilla/ShellWindow.py" line="1036" />
+      <location filename="../QScintilla/MiniEditor.py" line="2780" />
+      <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Zoom out</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2786" />
-      <location filename="../QScintilla/ShellWindow.py" line="1038" />
+      <location filename="../QScintilla/MiniEditor.py" line="2782" />
+      <location filename="../QScintilla/ShellWindow.py" line="1042" />
       <source>Zoom &amp;out</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2788" />
-      <location filename="../QScintilla/ShellWindow.py" line="1040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
+      <location filename="../QScintilla/ShellWindow.py" line="1044" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2791" />
-      <location filename="../QScintilla/ShellWindow.py" line="1043" />
+      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/ShellWindow.py" line="1047" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2797" />
-      <location filename="../QScintilla/ShellWindow.py" line="1049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2793" />
+      <location filename="../QScintilla/ShellWindow.py" line="1053" />
       <source>Zoom out on the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2800" />
-      <location filename="../QScintilla/ShellWindow.py" line="1052" />
+      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/ShellWindow.py" line="1056" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2810" />
-      <location filename="../QScintilla/ShellWindow.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="2806" />
+      <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Zoom reset</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2812" />
-      <location filename="../QScintilla/ShellWindow.py" line="1064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2808" />
+      <location filename="../QScintilla/ShellWindow.py" line="1068" />
       <source>Zoom &amp;reset</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2814" />
-      <location filename="../QScintilla/ShellWindow.py" line="1066" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
+      <location filename="../QScintilla/ShellWindow.py" line="1070" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2821" />
-      <location filename="../QScintilla/ShellWindow.py" line="1073" />
+      <location filename="../QScintilla/MiniEditor.py" line="2817" />
+      <location filename="../QScintilla/ShellWindow.py" line="1077" />
       <source>Reset the zoom of the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2824" />
-      <location filename="../QScintilla/ShellWindow.py" line="1076" />
+      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/ShellWindow.py" line="1080" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2835" />
-      <location filename="../QScintilla/ShellWindow.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="2831" />
+      <location filename="../QScintilla/ShellWindow.py" line="1091" />
       <source>Zoom</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2837" />
-      <location filename="../QScintilla/ShellWindow.py" line="1089" />
+      <location filename="../QScintilla/MiniEditor.py" line="2833" />
+      <location filename="../QScintilla/ShellWindow.py" line="1093" />
       <source>&amp;Zoom</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2844" />
-      <location filename="../QScintilla/ShellWindow.py" line="1096" />
+      <location filename="../QScintilla/MiniEditor.py" line="2840" />
+      <location filename="../QScintilla/ShellWindow.py" line="1100" />
       <source>Zoom the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2847" />
-      <location filename="../QScintilla/ShellWindow.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/ShellWindow.py" line="1103" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -91476,977 +91584,977 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
-      <location filename="../QScintilla/MiniEditor.py" line="959" />
-      <location filename="../QScintilla/MiniEditor.py" line="958" />
+      <location filename="../QScintilla/MiniEditor.py" line="955" />
+      <location filename="../QScintilla/MiniEditor.py" line="954" />
       <source>Move left one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
-      <location filename="../QScintilla/MiniEditor.py" line="975" />
-      <location filename="../QScintilla/MiniEditor.py" line="974" />
+      <location filename="../QScintilla/MiniEditor.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="970" />
       <source>Move right one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2129" />
-      <location filename="../QScintilla/MiniEditor.py" line="1019" />
-      <location filename="../QScintilla/MiniEditor.py" line="983" />
+      <location filename="../QScintilla/MiniEditor.py" line="2125" />
+      <location filename="../QScintilla/MiniEditor.py" line="1015" />
+      <location filename="../QScintilla/MiniEditor.py" line="979" />
       <source>Alt+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
-      <location filename="../QScintilla/MiniEditor.py" line="1051" />
-      <location filename="../QScintilla/MiniEditor.py" line="1050" />
+      <location filename="../QScintilla/MiniEditor.py" line="1047" />
+      <location filename="../QScintilla/MiniEditor.py" line="1046" />
       <source>Move to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1063" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
       <source>Alt+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1090" />
+      <location filename="../QScintilla/MiniEditor.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1086" />
       <source>Scroll view down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
-      <location filename="../QScintilla/MiniEditor.py" line="1102" />
+      <location filename="../QScintilla/MiniEditor.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="1098" />
       <source>Scroll view up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
-      <location filename="../QScintilla/MiniEditor.py" line="1114" />
+      <location filename="../QScintilla/MiniEditor.py" line="1111" />
+      <location filename="../QScintilla/MiniEditor.py" line="1110" />
       <source>Move up one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1116" />
+      <location filename="../QScintilla/MiniEditor.py" line="1112" />
       <source>Alt+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
-      <location filename="../QScintilla/MiniEditor.py" line="1126" />
+      <location filename="../QScintilla/MiniEditor.py" line="1123" />
+      <location filename="../QScintilla/MiniEditor.py" line="1122" />
       <source>Move down one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1128" />
+      <location filename="../QScintilla/MiniEditor.py" line="1124" />
       <source>Alt+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
-      <location filename="../QScintilla/MiniEditor.py" line="1167" />
-      <location filename="../QScintilla/MiniEditor.py" line="1166" />
+      <location filename="../QScintilla/MiniEditor.py" line="1163" />
+      <location filename="../QScintilla/MiniEditor.py" line="1162" />
       <source>Move to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1179" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
       <source>Ctrl+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
-      <location filename="../QScintilla/MiniEditor.py" line="1187" />
-      <location filename="../QScintilla/MiniEditor.py" line="1186" />
+      <location filename="../QScintilla/MiniEditor.py" line="1183" />
+      <location filename="../QScintilla/MiniEditor.py" line="1182" />
       <source>Move to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1199" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
       <source>Ctrl+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
-      <location filename="../QScintilla/MiniEditor.py" line="1218" />
+      <location filename="../QScintilla/MiniEditor.py" line="1215" />
+      <location filename="../QScintilla/MiniEditor.py" line="1214" />
       <source>Unindent one level</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1220" />
+      <location filename="../QScintilla/MiniEditor.py" line="1216" />
       <source>Shift+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
-      <location filename="../QScintilla/MiniEditor.py" line="1270" />
+      <location filename="../QScintilla/MiniEditor.py" line="1267" />
+      <location filename="../QScintilla/MiniEditor.py" line="1266" />
       <source>Extend selection up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1272" />
+      <location filename="../QScintilla/MiniEditor.py" line="1268" />
       <source>Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1279" />
+      <location filename="../QScintilla/MiniEditor.py" line="1275" />
       <source>Meta+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
-      <location filename="../QScintilla/MiniEditor.py" line="1286" />
+      <location filename="../QScintilla/MiniEditor.py" line="1283" />
+      <location filename="../QScintilla/MiniEditor.py" line="1282" />
       <source>Extend selection down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1288" />
+      <location filename="../QScintilla/MiniEditor.py" line="1284" />
       <source>Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1291" />
       <source>Meta+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1305" />
-      <location filename="../QScintilla/MiniEditor.py" line="1302" />
+      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1298" />
       <source>Extend selection left one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1327" />
-      <location filename="../QScintilla/MiniEditor.py" line="1324" />
+      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1320" />
       <source>Extend selection right one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1447" />
-      <location filename="../QScintilla/MiniEditor.py" line="1444" />
+      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1440" />
       <source>Extend selection up one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1450" />
+      <location filename="../QScintilla/MiniEditor.py" line="1446" />
       <source>Alt+Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1463" />
-      <location filename="../QScintilla/MiniEditor.py" line="1460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1456" />
       <source>Extend selection down one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1466" />
+      <location filename="../QScintilla/MiniEditor.py" line="1462" />
       <source>Alt+Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
-      <location filename="../QScintilla/MiniEditor.py" line="1476" />
+      <location filename="../QScintilla/MiniEditor.py" line="1473" />
+      <location filename="../QScintilla/MiniEditor.py" line="1472" />
       <source>Extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1478" />
+      <location filename="../QScintilla/MiniEditor.py" line="1474" />
       <source>Shift+PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
-      <location filename="../QScintilla/MiniEditor.py" line="1488" />
+      <location filename="../QScintilla/MiniEditor.py" line="1485" />
+      <location filename="../QScintilla/MiniEditor.py" line="1484" />
       <source>Extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1490" />
+      <location filename="../QScintilla/MiniEditor.py" line="1486" />
       <source>Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1497" />
+      <location filename="../QScintilla/MiniEditor.py" line="1493" />
       <source>Meta+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1507" />
-      <location filename="../QScintilla/MiniEditor.py" line="1504" />
+      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1500" />
       <source>Extend selection to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1517" />
+      <location filename="../QScintilla/MiniEditor.py" line="1513" />
       <source>Ctrl+Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1518" />
       <source>Ctrl+Shift+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1533" />
-      <location filename="../QScintilla/MiniEditor.py" line="1530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1526" />
       <source>Extend selection to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1544" />
+      <location filename="../QScintilla/MiniEditor.py" line="1540" />
       <source>Ctrl+Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1550" />
+      <location filename="../QScintilla/MiniEditor.py" line="1546" />
       <source>Ctrl+Shift+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1583" />
-      <location filename="../QScintilla/MiniEditor.py" line="1580" />
+      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1576" />
       <source>Delete previous character if not at start of line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
-      <location filename="../QScintilla/MiniEditor.py" line="1696" />
+      <location filename="../QScintilla/MiniEditor.py" line="1693" />
+      <location filename="../QScintilla/MiniEditor.py" line="1692" />
       <source>Duplicate current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1698" />
+      <location filename="../QScintilla/MiniEditor.py" line="1694" />
       <source>Ctrl+D</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1711" />
-      <location filename="../QScintilla/MiniEditor.py" line="1708" />
+      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1704" />
       <source>Swap current and previous lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1714" />
+      <location filename="../QScintilla/MiniEditor.py" line="1710" />
       <source>Ctrl+T</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
-      <location filename="../QScintilla/MiniEditor.py" line="1724" />
+      <location filename="../QScintilla/MiniEditor.py" line="1721" />
+      <location filename="../QScintilla/MiniEditor.py" line="1720" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1726" />
+      <location filename="../QScintilla/MiniEditor.py" line="1722" />
       <source>Meta+Alt+R</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
-      <location filename="../QScintilla/MiniEditor.py" line="1736" />
+      <location filename="../QScintilla/MiniEditor.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="1732" />
       <source>Cut current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1738" />
+      <location filename="../QScintilla/MiniEditor.py" line="1734" />
       <source>Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="1748" />
+      <location filename="../QScintilla/MiniEditor.py" line="1745" />
+      <location filename="../QScintilla/MiniEditor.py" line="1744" />
       <source>Copy current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1750" />
+      <location filename="../QScintilla/MiniEditor.py" line="1746" />
       <source>Ctrl+Shift+T</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
-      <location filename="../QScintilla/MiniEditor.py" line="1760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1757" />
+      <location filename="../QScintilla/MiniEditor.py" line="1756" />
       <source>Toggle insert/overtype</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1758" />
       <source>Ins</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1775" />
-      <location filename="../QScintilla/MiniEditor.py" line="1772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1768" />
       <source>Convert selection to lower case</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1774" />
       <source>Alt+Shift+U</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1791" />
-      <location filename="../QScintilla/MiniEditor.py" line="1788" />
+      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1784" />
       <source>Convert selection to upper case</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1794" />
+      <location filename="../QScintilla/MiniEditor.py" line="1790" />
       <source>Ctrl+Shift+U</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
-      <location filename="../QScintilla/MiniEditor.py" line="1805" />
-      <location filename="../QScintilla/MiniEditor.py" line="1804" />
+      <location filename="../QScintilla/MiniEditor.py" line="1801" />
+      <location filename="../QScintilla/MiniEditor.py" line="1800" />
       <source>Move to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1817" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
       <source>Alt+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1827" />
-      <location filename="../QScintilla/MiniEditor.py" line="1824" />
+      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1820" />
       <source>Extend selection to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
-      <location filename="../QScintilla/MiniEditor.py" line="1847" />
-      <location filename="../QScintilla/MiniEditor.py" line="1846" />
+      <location filename="../QScintilla/MiniEditor.py" line="1843" />
+      <location filename="../QScintilla/MiniEditor.py" line="1842" />
       <source>Formfeed</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1873" />
-      <location filename="../QScintilla/MiniEditor.py" line="1870" />
+      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1866" />
       <source>Extend rectangular selection down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1876" />
+      <location filename="../QScintilla/MiniEditor.py" line="1872" />
       <source>Alt+Ctrl+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1884" />
+      <location filename="../QScintilla/MiniEditor.py" line="1880" />
       <source>Meta+Alt+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1895" />
-      <location filename="../QScintilla/MiniEditor.py" line="1892" />
+      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1888" />
       <source>Extend rectangular selection up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1898" />
+      <location filename="../QScintilla/MiniEditor.py" line="1894" />
       <source>Alt+Ctrl+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1906" />
+      <location filename="../QScintilla/MiniEditor.py" line="1902" />
       <source>Meta+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1917" />
-      <location filename="../QScintilla/MiniEditor.py" line="1914" />
+      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1910" />
       <source>Extend rectangular selection left one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1920" />
+      <location filename="../QScintilla/MiniEditor.py" line="1916" />
       <source>Alt+Ctrl+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1928" />
+      <location filename="../QScintilla/MiniEditor.py" line="1924" />
       <source>Meta+Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1939" />
-      <location filename="../QScintilla/MiniEditor.py" line="1936" />
+      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1932" />
       <source>Extend rectangular selection right one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1942" />
+      <location filename="../QScintilla/MiniEditor.py" line="1938" />
       <source>Alt+Ctrl+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1950" />
+      <location filename="../QScintilla/MiniEditor.py" line="1946" />
       <source>Meta+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1963" />
-      <location filename="../QScintilla/MiniEditor.py" line="1958" />
+      <location filename="../QScintilla/MiniEditor.py" line="1959" />
+      <location filename="../QScintilla/MiniEditor.py" line="1954" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1976" />
+      <location filename="../QScintilla/MiniEditor.py" line="1972" />
       <source>Alt+Shift+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1987" />
-      <location filename="../QScintilla/MiniEditor.py" line="1984" />
+      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1980" />
       <source>Extend rectangular selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1998" />
+      <location filename="../QScintilla/MiniEditor.py" line="1994" />
       <source>Meta+Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2003" />
+      <location filename="../QScintilla/MiniEditor.py" line="1999" />
       <source>Alt+Shift+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2013" />
-      <location filename="../QScintilla/MiniEditor.py" line="2010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2006" />
       <source>Extend rectangular selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2016" />
+      <location filename="../QScintilla/MiniEditor.py" line="2012" />
       <source>Alt+Shift+PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2029" />
-      <location filename="../QScintilla/MiniEditor.py" line="2026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2022" />
       <source>Extend rectangular selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2032" />
+      <location filename="../QScintilla/MiniEditor.py" line="2028" />
       <source>Alt+Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2036" />
       <source>Meta+Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="2048" />
+      <location filename="../QScintilla/MiniEditor.py" line="2511" />
+      <location filename="../QScintilla/MiniEditor.py" line="2510" />
+      <location filename="../QScintilla/MiniEditor.py" line="2045" />
+      <location filename="../QScintilla/MiniEditor.py" line="2044" />
       <source>Duplicate current selection</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2516" />
-      <location filename="../QScintilla/MiniEditor.py" line="2050" />
+      <location filename="../QScintilla/MiniEditor.py" line="2512" />
+      <location filename="../QScintilla/MiniEditor.py" line="2046" />
       <source>Ctrl+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2064" />
-      <location filename="../QScintilla/MiniEditor.py" line="2061" />
+      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2057" />
       <source>Scroll to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
-      <location filename="../QScintilla/MiniEditor.py" line="2083" />
-      <location filename="../QScintilla/MiniEditor.py" line="2082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2079" />
+      <location filename="../QScintilla/MiniEditor.py" line="2078" />
       <source>Scroll to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2102" />
-      <location filename="../QScintilla/MiniEditor.py" line="2099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2095" />
       <source>Scroll vertically to center current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2112" />
+      <location filename="../QScintilla/MiniEditor.py" line="2108" />
       <source>Meta+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
-      <location filename="../QScintilla/MiniEditor.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2120" />
+      <location filename="../QScintilla/MiniEditor.py" line="2117" />
+      <location filename="../QScintilla/MiniEditor.py" line="2116" />
       <source>Move to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2140" />
-      <location filename="../QScintilla/MiniEditor.py" line="2137" />
+      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2133" />
       <source>Extend selection to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2163" />
-      <location filename="../QScintilla/MiniEditor.py" line="2160" />
+      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2156" />
       <source>Move to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2180" />
-      <location filename="../QScintilla/MiniEditor.py" line="2177" />
+      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2173" />
       <source>Extend selection to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2197" />
-      <location filename="../QScintilla/MiniEditor.py" line="2194" />
+      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2190" />
       <source>Move to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2207" />
+      <location filename="../QScintilla/MiniEditor.py" line="2203" />
       <source>Meta+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2218" />
-      <location filename="../QScintilla/MiniEditor.py" line="2215" />
+      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2211" />
       <source>Extend selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2229" />
+      <location filename="../QScintilla/MiniEditor.py" line="2225" />
       <source>Meta+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2242" />
       <location filename="../QScintilla/MiniEditor.py" line="2238" />
+      <location filename="../QScintilla/MiniEditor.py" line="2234" />
       <source>Extend rectangular selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2254" />
+      <location filename="../QScintilla/MiniEditor.py" line="2250" />
       <source>Meta+Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2266" />
-      <location filename="../QScintilla/MiniEditor.py" line="2263" />
+      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2259" />
       <source>Extend selection to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2289" />
-      <location filename="../QScintilla/MiniEditor.py" line="2286" />
+      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2282" />
       <source>Move to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2307" />
       <location filename="../QScintilla/MiniEditor.py" line="2303" />
+      <location filename="../QScintilla/MiniEditor.py" line="2299" />
       <source>Extend selection to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2326" />
       <location filename="../QScintilla/MiniEditor.py" line="2322" />
+      <location filename="../QScintilla/MiniEditor.py" line="2318" />
       <source>Move to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2346" />
-      <location filename="../QScintilla/MiniEditor.py" line="2341" />
+      <location filename="../QScintilla/MiniEditor.py" line="2342" />
+      <location filename="../QScintilla/MiniEditor.py" line="2337" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2365" />
-      <location filename="../QScintilla/MiniEditor.py" line="2362" />
+      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2358" />
       <source>Move to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2382" />
-      <location filename="../QScintilla/MiniEditor.py" line="2379" />
+      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2375" />
       <source>Extend selection to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
-      <location filename="../QScintilla/MiniEditor.py" line="2397" />
-      <location filename="../QScintilla/MiniEditor.py" line="2396" />
+      <location filename="../QScintilla/MiniEditor.py" line="2393" />
+      <location filename="../QScintilla/MiniEditor.py" line="2392" />
       <source>Stuttered move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2412" />
-      <location filename="../QScintilla/MiniEditor.py" line="2409" />
+      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2405" />
       <source>Stuttered extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2429" />
-      <location filename="../QScintilla/MiniEditor.py" line="2426" />
+      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2422" />
       <source>Stuttered move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2446" />
-      <location filename="../QScintilla/MiniEditor.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2439" />
       <source>Stuttered extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2463" />
-      <location filename="../QScintilla/MiniEditor.py" line="2460" />
+      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2456" />
       <source>Delete right to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2473" />
+      <location filename="../QScintilla/MiniEditor.py" line="2469" />
       <source>Alt+Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2484" />
-      <location filename="../QScintilla/MiniEditor.py" line="2481" />
+      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2477" />
       <source>Move selected lines up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2501" />
-      <location filename="../QScintilla/MiniEditor.py" line="2498" />
+      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2494" />
       <source>Move selected lines down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2547" />
+      <location filename="../QScintilla/MiniEditor.py" line="2543" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2573" />
+      <location filename="../QScintilla/MiniEditor.py" line="2569" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2603" />
+      <location filename="../QScintilla/MiniEditor.py" line="2599" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2617" />
-      <location filename="../QScintilla/MiniEditor.py" line="2615" />
+      <location filename="../QScintilla/MiniEditor.py" line="2613" />
+      <location filename="../QScintilla/MiniEditor.py" line="2611" />
       <source>Clear search markers</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2619" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2628" />
+      <location filename="../QScintilla/MiniEditor.py" line="2624" />
       <source>Clear all displayed search markers</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2633" />
+      <location filename="../QScintilla/MiniEditor.py" line="2629" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2639" />
       <source>Replace</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2644" />
+      <location filename="../QScintilla/MiniEditor.py" line="2640" />
       <source>&amp;Replace...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2646" />
+      <location filename="../QScintilla/MiniEditor.py" line="2642" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2653" />
+      <location filename="../QScintilla/MiniEditor.py" line="2649" />
       <source>Replace some text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2656" />
+      <location filename="../QScintilla/MiniEditor.py" line="2652" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2670" />
-      <location filename="../QScintilla/MiniEditor.py" line="2668" />
+      <location filename="../QScintilla/MiniEditor.py" line="2666" />
+      <location filename="../QScintilla/MiniEditor.py" line="2664" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2672" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2681" />
+      <location filename="../QScintilla/MiniEditor.py" line="2677" />
       <source>Replace the found text and search the next occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2686" />
+      <location filename="../QScintilla/MiniEditor.py" line="2682" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2702" />
-      <location filename="../QScintilla/MiniEditor.py" line="2700" />
+      <location filename="../QScintilla/MiniEditor.py" line="2698" />
+      <location filename="../QScintilla/MiniEditor.py" line="2696" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2704" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2713" />
+      <location filename="../QScintilla/MiniEditor.py" line="2709" />
       <source>Replace the found text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2716" />
+      <location filename="../QScintilla/MiniEditor.py" line="2712" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2729" />
-      <location filename="../QScintilla/MiniEditor.py" line="2727" />
+      <location filename="../QScintilla/MiniEditor.py" line="2725" />
+      <location filename="../QScintilla/MiniEditor.py" line="2723" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2731" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2740" />
+      <location filename="../QScintilla/MiniEditor.py" line="2736" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2743" />
+      <location filename="../QScintilla/MiniEditor.py" line="2739" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -94384,29 +94492,29 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7350" />
-      <location filename="../ViewManager/ViewManager.py" line="7336" />
-      <location filename="../ViewManager/ViewManager.py" line="7304" />
+      <location filename="../ViewManager/ViewManager.py" line="7349" />
+      <location filename="../ViewManager/ViewManager.py" line="7335" />
+      <location filename="../ViewManager/ViewManager.py" line="7303" />
       <source>Edit Spelling Dictionary</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7307" />
+      <location filename="../ViewManager/ViewManager.py" line="7306" />
       <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="7323" />
+      <location filename="../ViewManager/ViewManager.py" line="7322" />
       <source>Editing {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7339" />
+      <location filename="../ViewManager/ViewManager.py" line="7338" />
       <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="7353" />
+      <location filename="../ViewManager/ViewManager.py" line="7352" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation type="unfinished" />
     </message>
@@ -95467,7 +95575,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="135" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="136" />
       <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="96" />
       <source>Failed
 
@@ -95475,46 +95583,46 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="144" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="145" />
       <source>
 pyvenv finished.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="159" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="160" />
       <source>No suitable pyvenv program could be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="222" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="223" />
       <source>
 Writing log file '{0}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="226" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="227" />
       <source>Output:
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="231" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="232" />
       <source>Errors:
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="235" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="236" />
       <source>The logfile '{0}' could not be written.
 Reason: {1}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="239" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="240" />
       <source>Done.
 </source>
       <translation type="unfinished" />
@@ -97705,32 +97813,32 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2312" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2341" />
       <source>Quota Request</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2313" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2342" />
       <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="2389" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2385" />
       <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="2397" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2393" />
       <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="2402" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2398" />
       <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="2409" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2405" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -100721,28 +100829,28 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="143" />
       <source>No current editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="145" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
       <source>Please open or create a file first.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="182" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="166" />
+      <source>Create Package</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
+      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/PluginWizardEricPlugin.py" line="183" />
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
-      <source>Create Package</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="168" />
-      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="184" />
       <source>&lt;p&gt;The package file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -101000,38 +101108,38 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1270" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1274" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1801" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1282" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1807" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1284" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1811" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1288" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1814" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1291" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1295" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1297" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1301" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1320" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -101042,35 +101150,35 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1775" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1779" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1782" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1786" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1793" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1794" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1798" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1825" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1831" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -101751,17 +101859,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1814" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1822" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1667" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1670" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
Binary file src/eric7/i18n/eric7_es.qm has changed
--- a/src/eric7/i18n/eric7_es.ts	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/i18n/eric7_es.ts	Sun Jul 02 17:39:33 2023 +0200
@@ -1259,6 +1259,16 @@
       <source>type annotation is too long ({0} &gt; {1})</source>
       <translation>anotación de tipo demasiado larga ({0} &gt; {1})</translation>
     </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="76" />
+      <source>'typing.Union' is deprecated, use '|' instead (see PEP 604)</source>
+      <translation>'typing.Union' es obsoleto, usar '|' en su lugar (ver PEP 604)</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="80" />
+      <source>'typing.{0}' is deprecated, use '{1}' instead (see PEP 585)</source>
+      <translation>'typing.{0}' es obsoleto, usar '{1}' en su lugar (ver PEP 585)</translation>
+    </message>
   </context>
   <context>
     <name>ApplicationDiagramBuilder</name>
@@ -2221,26 +2231,31 @@
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="97" />
-      <source>Complete {0}-bit Service UUID: {1}</source>
-      <translation>Completo {0}-bit Service UUID: {1}</translation>
+      <source>Complete {0}-bit Service UUID: {1}{2}</source>
+      <translation>Completo {0}-bit Service UUID: {1}{2}</translation>
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="99" />
-      <source>Incomplete {0}-bit Service UUID: {1}</source>
-      <translation>Incompleto {0}-bit Service UUID: {1}</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="110" />
-      <source>Manufacturer ID: 0x{0:x} ({1})</source>
-      <translation>ID de Fabricante: 0x{0:x} ({1})</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="114" />
+      <source>Incomplete {0}-bit Service UUID: {1}{2}</source>
+      <translation>Incompleto {0}-bit Service UUID: {1}{2}</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="107" />
+      <source> - {0}</source>
+      <translation> - {0}</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="121" />
+      <source>Manufacturer ID: 0x{0:x} - {1}</source>
+      <translation>ID del Fabricante: 0x{0:x} - {1}</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="125" />
       <source>Manufacturer ID: 0x{0:x}</source>
-      <translation>ID de Fabricante: 0x{0:x}</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="123" />
+      <translation>ID del Fabricante: 0x{0:x}</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="134" />
       <source>Tx Power Level [dBm]: {0}</source>
       <translation>Tx Power Level [dBm]: {0}</translation>
     </message>
@@ -5062,27 +5077,27 @@
       <translation>Error: {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1210" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1221" />
       <source>{0} (ignored)</source>
       <translation>{0} (ignorado)</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1285" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1296" />
       <source>No issues found.</source>
       <translation>No se han encontrado problemas.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1289" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1300" />
       <source>No files found (check your ignore list).</source>
       <translation>No se han encontrado archivos (comprobar lista de ignorados).</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2900" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2935" />
       <source>Commented Code Whitelist Pattern</source>
       <translation>Patrón de lista blanca para comentarios en código</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2901" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2936" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation>Introducir un patrón de lista blanca para comentarios en código</translation>
     </message>
@@ -5568,6 +5583,16 @@
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Exempted 'typing' symbols:</source>
+      <translation>Símbolos de 'typing' exentos:</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Enter deprecated symbols of the 'typing' module exempted from PEP-585 checking separated by space</source>
+      <translation>Introducir símbolos deprecados del módulo 'typing' exentos de la comprobación PEP-585 separados por espacios</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
       <source>Security</source>
       <translation>Seguridad</translation>
     </message>
@@ -7579,375 +7604,378 @@
   <context>
     <name>ConfigurationWidget</name>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="174" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="175" />
       <source>Application</source>
       <translation>Aplicación</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="180" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="181" />
       <source>Conda</source>
       <translation>Conda</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="182" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="183" />
       <source>Cooperation</source>
       <translation>Cooperación</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="189" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="190" />
       <source>Diff</source>
       <translation>Diff</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="196" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="197" />
       <source>Email</source>
       <translation>Correo electrónico</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="203" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="204" />
       <source>Graphics</source>
       <translation>Gráficos</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="865" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="210" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="866" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="211" />
       <source>Hex Editor</source>
       <translation>Editor Hexadecimal</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="946" />
       <location filename="../Preferences/ConfigurationDialog.py" line="914" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="882" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="851" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="754" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="639" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="217" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="883" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="852" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="755" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="640" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="218" />
       <source>Icons</source>
       <translation>Iconos</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="223" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="224" />
       <source>IRC</source>
       <translation>IRC</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="225" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="226" />
       <source>Log-Viewer</source>
       <translation>Visor de Log</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="232" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="233" />
       <source>MicroPython</source>
       <translation>MicroPython</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="239" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="240" />
       <source>MIME-Types</source>
       <translation>Tipos MIME</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="768" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="246" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="769" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="247" />
       <source>Network</source>
       <translation>Red</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="253" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="254" />
       <source>Notifications</source>
       <translation>Notificaciones</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="896" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="260" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="897" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="261" />
       <source>PDF Viewer</source>
       <translation>Visor de PDF</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="267" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="928" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="268" />
       <source>Python Package Management</source>
       <translation>Gestión de Packages Python</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="274" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="275" />
       <source>Plugin Manager</source>
       <translation>Gestor de Plugins</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="775" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="653" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="281" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="776" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="654" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="282" />
       <source>Printer</source>
       <translation>Impresora</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="288" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="289" />
       <source>Python</source>
       <translation>Python</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="294" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="295" />
       <source>Qt</source>
       <translation>Qt</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="782" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="296" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="783" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="297" />
       <source>Security</source>
       <translation>Seguridad</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="303" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="304" />
       <source>Shell</source>
       <translation>Shell</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="309" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="310" />
       <source>Tasks</source>
       <translation>Tareas</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="311" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="312" />
       <source>Templates</source>
       <translation>Plantillas</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="834" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="318" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="835" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="319" />
       <source>Tray Starter</source>
       <translation>Lanzador de bandeja de sistema</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="325" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="326" />
       <source>Version Control Systems</source>
       <translation>Sistemas de Control de Versiones</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="332" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="333" />
       <source>Debugger</source>
       <translation>Depurador</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="667" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="374" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="339" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="668" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="375" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="340" />
       <source>General</source>
       <translation>General</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="346" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="347" />
       <source>Python3</source>
       <translation>Python3</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="660" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="353" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="661" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="354" />
       <source>Editor</source>
       <translation>Editor</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="360" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="361" />
       <source>APIs</source>
       <translation>APIs</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="367" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="368" />
       <source>Documentation Viewer</source>
       <translation>Visor de Documentación</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="674" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="381" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="675" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="382" />
       <source>Filehandling</source>
       <translation>Gestión de archivos</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="681" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="388" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="682" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="389" />
       <source>Searching</source>
       <translation>Búsquedas</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="817" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="688" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="617" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="395" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="818" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="689" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="618" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="396" />
       <source>Spell checking</source>
       <translation>Corrección ortográfica</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="695" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="402" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="696" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="403" />
       <source>Style</source>
       <translation>Estilo</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="409" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="410" />
       <source>Code Checkers</source>
       <translation>Comprobadores de Código</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="702" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="416" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="703" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="417" />
       <source>Typing</source>
       <translation>Tecleo de codigo</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="423" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="424" />
       <source>Exporters</source>
       <translation>Exportadores</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="430" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="431" />
       <source>Autocompletion</source>
       <translation>Autocompletar</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="458" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="437" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="459" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="438" />
       <source>QScintilla</source>
       <translation>QScintilla</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="514" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="465" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="444" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="515" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="466" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="445" />
       <source>Jedi</source>
       <translation>Jedi</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="451" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="452" />
       <source>Calltips</source>
       <translation>Consejos de llamada (calltips)</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="709" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="472" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="710" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="473" />
       <source>Highlighters</source>
       <translation>Resaltado de código</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="716" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="479" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="717" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="480" />
       <source>Filetype Associations</source>
       <translation>Asociación de tipos de archivo</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="723" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="486" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="724" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="487" />
       <source>Styles</source>
       <translation>Estilos</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="730" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="493" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="731" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="494" />
       <source>Keywords</source>
       <translation>Palabras clave</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="737" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="500" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="738" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="501" />
       <source>Properties</source>
       <translation>Propiedades</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="507" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="508" />
       <source>Mouse Click Handlers</source>
       <translation>Manejadores de clicks del ratón</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="520" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="521" />
       <source>Help</source>
       <translation>Ayuda</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="789" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="522" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="790" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="523" />
       <source>Help Documentation</source>
       <translation>Documentación de Ayuda</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="529" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="530" />
       <source>Help Viewers</source>
       <translation>Visores de Ayuda</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="550" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="536" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="551" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="537" />
       <source>Project</source>
       <translation>Proyecto</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="543" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="544" />
       <source>Project Viewer</source>
       <translation>Visor de proyecto</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="557" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="558" />
       <source>Multiproject</source>
       <translation>Multiproyecto</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="953" />
       <location filename="../Preferences/ConfigurationDialog.py" line="921" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="889" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="858" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="761" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="646" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="571" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="564" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="890" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="859" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="762" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="647" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="572" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="565" />
       <source>Interface</source>
       <translation>Interfaz de Usuario</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="578" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="579" />
       <source>Viewmanager</source>
       <translation>Gestor de vistas</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="589" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="590" />
       <source>Web Browser</source>
       <translation>Navegador Web</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="796" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="596" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="797" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="597" />
       <source>Appearance</source>
       <translation>Apariencia</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="803" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="603" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="804" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="604" />
       <source>eric Web Browser</source>
       <translation>Navegador Web de eric</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="810" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="610" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="811" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="611" />
       <source>VirusTotal Interface</source>
       <translation>Interfaz de VirusTotal</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1007" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1039" />
       <source>Enter search text...</source>
       <translation>Introducir texto de búsqueda...</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1080" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1112" />
       <source>Preferences</source>
       <translation>Preferencias</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1086" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1118" />
       <source>Please select an entry of the list 
 to display the configuration page.</source>
       <translation>Por favor, seleccione una entrada de la lista
 para visualizar la página de configuración.</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1163" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1195" />
       <source>Configuration Page Error</source>
       <translation>Error de Configuración de Página</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1164" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1196" />
       <source>&lt;p&gt;The configuration page &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La página de configuración  &lt;b&gt;{0}&lt;/b&gt; no puede ser cargada.&lt;/p&gt;</translation>
     </message>
@@ -31619,104 +31647,104 @@
       <translation>Mostrar lista de marcadores</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="442" />
+      <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="443" />
-      <source>Python 3 Documentation</source>
-      <translation>Documentación de Python 3</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>Qt5 Documentation</source>
-      <translation>Documentación de Qt5</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Qt6 Documentation</source>
-      <translation>Documentación de Qt6</translation>
+      <source>Python 3 Documentation</source>
+      <translation>Documentación de Python 3</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>PyQt5 Documentation</source>
-      <translation>Documentación de PyQt5</translation>
+      <source>Qt5 Documentation</source>
+      <translation>Documentación de Qt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>PyQt6 Documentation</source>
-      <translation>Documentación de PyQt6</translation>
+      <source>Qt6 Documentation</source>
+      <translation>Documentación de Qt6</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PySide2 Documentation</source>
-      <translation>Documentación de PySide2</translation>
+      <source>PyQt5 Documentation</source>
+      <translation>Documentación de PyQt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
+      <source>PyQt6 Documentation</source>
+      <translation>Documentación de PyQt6</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
+      <source>PySide2 Documentation</source>
+      <translation>Documentación de PySide2</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
       <source>PySide6 Documentation</source>
       <translation>Documentación de PySide6</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="506" />
-      <source>Open HTML File</source>
-      <translation>Abrir archivo HTML</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <source>Open HTML File</source>
+      <translation>Abrir archivo HTML</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
       <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="699" />
       <source>Help Engine</source>
       <translation>Motor de Ayuda</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="723" />
       <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="734" />
       <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="759" />
       <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="762" />
       <source>Reindex Documentation</source>
       <translation>Reindexar Documentación</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="767" />
       <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="860" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="840" />
       <source>Clear History</source>
       <translation>Limpiar Historial</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="968" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="970" />
       <source>Updating search index</source>
       <translation>Actualizando índice de búsqueda</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1026" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1028" />
       <source>Filtered by: </source>
       <translation>Filtrado por: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1062" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1057" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1064" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
       <source>Unfiltered</source>
       <translation>Sin filtrar</translation>
     </message>
@@ -52832,570 +52860,610 @@
   <context>
     <name>MiscellaneousChecker</name>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="15" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="16" />
       <source>coding magic comment not found</source>
       <translation>comentario mágico de codificación no encontrado</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="18" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="19" />
       <source>unknown encoding ({0}) found in coding magic comment</source>
       <translation>codificación desconocida ({0}) encontrada en comentario mágico de codificación</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="21" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="23" />
       <source>copyright notice not present</source>
       <translation>nota de copyright no presente</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="24" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="26" />
       <source>copyright notice contains invalid author</source>
       <translation>la nota de copyright contiene un autor no válido</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="27" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="30" />
       <source>"{0}" is a Python builtin and is being shadowed; consider renaming the variable</source>
       <translation>"{0}" es una variable nativa de Python a la que se está ocultando; considere renombrar la variable</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="32" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="35" />
       <source>"{0}" is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
       <translation>"{0}" se está usando como un argumento pero oculta un argumento nativo de Python; considere renombrar el argumento</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="37" />
-      <source>unnecessary generator - rewrite as a list comprehension</source>
-      <translation>generador innecesario - reescribir como lista de comprehensión</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="41" />
+      <source>unnecessary generator - rewrite as a list comprehension</source>
+      <translation>generador innecesario - reescribir como lista de comprehensión</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="45" />
       <source>unnecessary generator - rewrite as a set comprehension</source>
       <translation>generador innecesario - reescribir como conjunto de comprehensión</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="44" />
-      <source>unnecessary generator - rewrite as a dict comprehension</source>
-      <translation>generador innecesario - reescribir como diccionario de comprehensión</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="48" />
-      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
-      <translation>lista de comprehensión innecesaria - reescribir como conjunto de comprehensión</translation>
+      <source>unnecessary generator - rewrite as a dict comprehension</source>
+      <translation>generador innecesario - reescribir como diccionario de comprehensión</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="52" />
-      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
-      <translation>lista de comprehensión innecesaria - reescribir como diccionario de comprehensión</translation>
+      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
+      <translation>lista de comprehensión innecesaria - reescribir como conjunto de comprehensión</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="56" />
+      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <translation>lista de comprehensión innecesaria - reescribir como diccionario de comprehensión</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="60" />
       <source>unnecessary {0} call - rewrite as a literal</source>
       <translation>llamada {0} innecesaria - reescribir como un literal</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="59" />
-      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
-      <translation>innecesaria {0} llamada alrededor de {1}() - conmutar reverse a sorted()</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="63" />
-      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
-      <translation>innecesaria {0} llamada alrededor de {1}() - usar sorted(..., reverse={2})</translation>
+      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
+      <translation>innecesaria {0} llamada alrededor de {1}() - conmutar reverse a sorted()</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="67" />
+      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <translation>innecesaria {0} llamada alrededor de {1}() - usar sorted(..., reverse={2})</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="71" />
       <source>unnecessary {0} call around {1}()</source>
       <translation>innecesaria {0} llamada alrededor de {1}()</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="70" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="74" />
       <source>unnecessary {0} call within {1}()</source>
       <translation>innecesaria {0} llamada dentro de {1}()</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="73" />
-      <source>unnecessary subscript reversal of iterable within {0}()</source>
-      <translation>innecesaria reversión de subscript de iterable dentro de {0}()</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="77" />
+      <source>unnecessary subscript reversal of iterable within {0}()</source>
+      <translation>innecesaria reversión de subscript de iterable dentro de {0}()</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="81" />
       <source>unnecessary {0} literal - rewrite as a {1} literal</source>
       <translation>literal {0} innecesario - reescribir como un literal {1}</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="80" />
-      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
-      <translation>innecesario {0} pasado a tuple() - reescribir como un literal {1}</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="84" />
-      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
-      <translation>innecesario {0} pasado a list() - reescribir como un literal {1}</translation>
+      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
+      <translation>innecesario {0} pasado a tuple() - reescribir como un literal {1}</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="88" />
-      <source>unnecessary list call - remove the outer call to list()</source>
-      <translation>llamada a lista innecesaria - eliminar la llamada más externa a list()</translation>
+      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
+      <translation>innecesario {0} pasado a list() - reescribir como un literal {1}</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="92" />
+      <source>unnecessary list call - remove the outer call to list()</source>
+      <translation>llamada a lista innecesaria - eliminar la llamada más externa a list()</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="96" />
       <source>unnecessary {0} comprehension - rewrite using {0}()</source>
       <translation>innecessaria {0} comprehension - reescribir usando {0}()</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="95" />
-      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
-      <translation>innecesario {0} pasado a tuple() - eliminar la llamada más externa a {1}()</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="99" />
-      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
-      <translation>innecesario {0} pasado a list() - eliminar la llamada más externa a {1}()</translation>
+      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
+      <translation>innecesario {0} pasado a tuple() - eliminar la llamada más externa a {1}()</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="103" />
+      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <translation>innecesario {0} pasado a list() - eliminar la llamada más externa a {1}()</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="108" />
       <source>sort keys - '{0}' should be before '{1}'</source>
       <translation>ordenar claves - '{0}' debeía ser antes de '{1}'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="106" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="112" />
+      <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source>
+      <translation>el número de argumentos para el método del property getter es erróneo (debería ser 1 en lugar de {0})</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="117" />
+      <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source>
+      <translation>el número de argumentos para el método del property setter es erróneo (debería ser 2 en lugar de {0})</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="122" />
+      <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source>
+      <translation>el número de argumentos para el método del property deleter es erróneo (debería ser 1 en lugar de {0})</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="127" />
+      <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation>el nombre del método setter es erróneo (debería ser '{0}' en lugar de '{1}')</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="131" />
+      <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation>el nombre del método deleter es erróneo (debería ser '{0}' en lugar de '{1}')</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" />
+      <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source>
+      <translation>el nombre del setter decorator es erróneo (debería ser '{0}' en lugar de '{1}')</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" />
+      <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source>
+      <translation>el nombre del deleter decorator es erróneo (debería ser '{0}' en lugar de '{1}')</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="143" />
+      <source>multiple decorators were used to declare property '{0}'</source>
+      <translation>se han utilizado multiples decorators para declarar la propiedad '{0}'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="148" />
       <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
       <translation>debe evitarse el uso de 'datetime.datetime()' sin argumento 'tzinfo'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="110" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="152" />
       <source>use of 'datetime.datetime.today()' should be avoided.
 Use 'datetime.datetime.now(tz=)' instead.</source>
       <translation>debe evitarse el uso de 'datetime.datetime.today()'.
 Usar 'datetime.datetime.now(tz=)' en su lugar.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="115" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="157" />
       <source>use of 'datetime.datetime.utcnow()' should be avoided.
 Use 'datetime.datetime.now(tz=)' instead.</source>
       <translation>debe evitarse el uso de  'datetime.datetime.utcnow()'.
 Usar 'datetime.datetime.now(tz=)' en su lugar.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="120" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="162" />
       <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
 Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
       <translation>debe evitarse el uso de 'datetime.datetime.utcfromtimestamp()'.
 Usar 'datetime.datetime.fromtimestamp(, tz=)' en su lugar.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="125" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" />
       <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
       <translation>debe evitarse el uso de 'datetime.datetime.now()' sin argumento 'tz'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="129" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" />
       <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
       <translation>debe evitarse el uso de 'datetime.datetime.fromtimestamp()' sin argumento 'tz'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" />
       <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
       <translation>el uso de 'datetime.datetime.strptime()' debe ser continuado con '.replace(tzinfo=)'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="181" />
       <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
       <translation>debe evitarse el uso de 'datetime.datetime.fromordinal()'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="143" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" />
       <source>use of 'datetime.date()' should be avoided.
 Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
       <translation>debe evitarse el uso de 'datetime.date()'.
 Usar 'datetime.datetime(, tzinfo=).date()' en su lugar.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="148" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" />
       <source>use of 'datetime.date.today()' should be avoided.
 Use 'datetime.datetime.now(tz=).date()' instead.</source>
       <translation>debe evitarse el uso de 'datetime.date.today()'.
 Usar 'datetime.datetime.now(tz=).date()' en su lugar.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="153" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" />
       <source>use of 'datetime.date.fromtimestamp()' should be avoided.
 Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
       <translation>debe evitarse el uso de 'datetime.date.fromtimestamp()'.
 Usar 'datetime.datetime.fromtimestamp(tz=).date()' en su lugar.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="158" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="200" />
       <source>use of 'datetime.date.fromordinal()' should be avoided</source>
       <translation>debe evitarse el uso de 'datetime.date.fromordinal()'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="161" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" />
       <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
       <translation>debe evitarse el uso de 'datetime.date.fromisoformat()'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="165" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="207" />
       <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
       <translation>debe evitarse el uso de 'datetime.time()' sin argumento 'tzinfo'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="169" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="212" />
       <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
       <translation>'sys.version[:3]' referenciado (Python 3.10), usar 'sys.version_info'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="173" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="216" />
       <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
       <translation>'sys.version[2]' referenciado (Python 3.10), usar 'sys.version_info'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="177" />
-      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
-      <translation>'sys.version' comparado a cadena (Python 3.10), usar 'sys.version_info'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="181" />
-      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
-      <translation>'sys.version_info[0] == 3' referenciado (Python 4), usar '&gt;='</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" />
-      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
-      <translation>'six.PY3' referencicado (Python 4), usar 'not six.PY2'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="188" />
-      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation>'sys.version_info[1]' comparado a entero (Python 4), comparar 'sys.version_info' con tupla</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="193" />
-      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation>'sys.version_info.minor' comparado a entero (Python 4), comparar 'sys.version_info' con tupla</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="198" />
-      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation>'sys.version[0]' referenciado (Python 10), usar 'sys.version_info'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="202" />
-      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
-      <translation>'sys.version' comparado a cadena (Python 10), usar 'sys.version_info'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="206" />
-      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation>'sys.version[:1]' referenciado (Python 10), usar 'sys.version_info'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="210" />
-      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
-      <translation>No utilizar 'except:' a secas, también captura elementos inesperados como errores de memoria, interrupciones, saidas de sistema, etc. Es preferible 'except Exception:'. Si se está seguro de lo que se está haciendo explicitar y escribir 'except BaseException:'.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" />
-      <source>Python does not support the unary prefix increment</source>
-      <translation>Python no soporta el prefijo unario de incremento</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="220" />
-      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
-      <translation>asignaciones a 'os.environ' no limpian el entorno - usar 'os.environ.clear()'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="225" />
-      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
-      <translation>el uso de  'hasattr(x, "__call__")' para comprobar si  'x' es invocable no es fiable. Usar 'callable(x)' para resultados consistentes.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="230" />
-      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
-      <translation>utilizar .strip() con cadenas de múltiples caracteres puede causar confusión. Utilizar  .replace(), .removeprefix(), .removesuffix(), o expresiones regulares para eliminar fragmentos de una cadena.</translation>
+      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <translation>'sys.version' comparado a cadena (Python 3.10), usar 'sys.version_info'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="224" />
+      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <translation>'sys.version_info[0] == 3' referenciado (Python 4), usar '&gt;='</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" />
+      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
+      <translation>'six.PY3' referencicado (Python 4), usar 'not six.PY2'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="231" />
+      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
+      <translation>'sys.version_info[1]' comparado a entero (Python 4), comparar 'sys.version_info' con tupla</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" />
-      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
-      <translation>variable de control de bucle {0} no usada dentro del cuerpo del bucle - iniciar nombre con guión bajo</translation>
+      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
+      <translation>'sys.version_info.minor' comparado a entero (Python 4), comparar 'sys.version_info' con tupla</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" />
-      <source>do not call getattr with a constant attribute value</source>
-      <translation>no invocar getattr con un valor de atributo constante</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="244" />
-      <source>do not call setattr with a constant attribute value</source>
-      <translation>no invocar setattr con un valor de atributo constante</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="247" />
-      <source>do not call assert False since python -O removes these calls</source>
-      <translation>no llamar assert False dado que python -O elimina dichas llamadas</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="251" />
-      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
-      <translation>return/continue/break dentro de bloques finally hace que las excepciones se silencien. Las excepciones se deben silenciar en bloques except. Las sentencias de control se pueden extraer a un bloque finally.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" />
-      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
-      <translation>Un literal de tupla de longitud uno es redundante. Escribir 'except {0}:' en lugar de 'except ({0},):'.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="262" />
-      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
-      <translation>Tipos de excepcion redundantes en 'except ({0}){1}:'. Escribir 'except {2}{1}:', que captura exactamente las mismas excepciones.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="267" />
-      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
-      <translation>El resultado de la comparación no se usa. Esta línea no hace nada. ¿Trataba de preceerla con assert?</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="272" />
-      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
-      <translation>No se puede lanzar un literal. ¿Se intentaba retornarlo, o lanzar una Exception?</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="276" />
-      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
-      <translation>'assertRaises(Exception)' y 'pytest.raises(Exception)' debe ser considerado dañino. Pueden conducir a tests que pasan aunque el código en testeo nunca se ejecute debido a un error de tecleo. Usar Assert para excepciones más específicas (nativas o personalizadas), o usar 'assertRaisesRegex' (en caso de usar 'assertRaises'), o añadir el argumento clave 'match' (en caso de usar 'pytest.raises'), o usar la forma de gestión de contexto con un objetivo.</translation>
+      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation>'sys.version[0]' referenciado (Python 10), usar 'sys.version_info'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" />
+      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
+      <translation>'sys.version' comparado a cadena (Python 10), usar 'sys.version_info'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" />
+      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation>'sys.version[:1]' referenciado (Python 10), usar 'sys.version_info'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="254" />
+      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
+      <translation>No utilizar 'except:' a secas, también captura elementos inesperados como errores de memoria, interrupciones, saidas de sistema, etc. Es preferible 'except Exception:'. Si se está seguro de lo que se está haciendo explicitar y escribir 'except BaseException:'.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" />
+      <source>Python does not support the unary prefix increment</source>
+      <translation>Python no soporta el prefijo unario de incremento</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="264" />
+      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
+      <translation>asignaciones a 'os.environ' no limpian el entorno - usar 'os.environ.clear()'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="269" />
+      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
+      <translation>el uso de  'hasattr(x, "__call__")' para comprobar si  'x' es invocable no es fiable. Usar 'callable(x)' para resultados consistentes.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="274" />
+      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <translation>utilizar .strip() con cadenas de múltiples caracteres puede causar confusión. Utilizar  .replace(), .removeprefix(), .removesuffix(), o expresiones regulares para eliminar fragmentos de una cadena.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="280" />
+      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
+      <translation>variable de control de bucle {0} no usada dentro del cuerpo del bucle - iniciar nombre con guión bajo</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="285" />
-      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
-      <translation>Expresión sin uso encontrada. Considerar bien su asignación a una variable o su eliminación.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="290" />
-      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
-      <translation>El uso de 'functools.lru_cache' o 'functools.cache' en métodos puede conducir a fugas de memoria. La cache puede retener referencias a instancias, imposibilitando la garbage collection.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="296" />
-      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
-      <translation>Encontrado bucle for que reasigna el iterable en iteracion con cada valor del iterable.</translation>
+      <source>do not call getattr with a constant attribute value</source>
+      <translation>no invocar getattr con un valor de atributo constante</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" />
+      <source>do not call setattr with a constant attribute value</source>
+      <translation>no invocar setattr con un valor de atributo constante</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" />
+      <source>do not call assert False since python -O removes these calls</source>
+      <translation>no llamar assert False dado que python -O elimina dichas llamadas</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" />
+      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
+      <translation>return/continue/break dentro de bloques finally hace que las excepciones se silencien. Las excepciones se deben silenciar en bloques except. Las sentencias de control se pueden extraer a un bloque finally.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="301" />
-      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
-      <translation>f-string usada como docstring. Python interpretara eso como una cadena unida en lugar de una docstring.</translation>
+      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
+      <translation>Un literal de tupla de longitud uno es redundante. Escribir 'except {0}:' en lugar de 'except ({0},):'.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="306" />
-      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
-      <translation>No se han pasado argumentos a 'contextlib.suppress'. No se suprimiran excepciones y por tanto este gestor de contexto es redundante.</translation>
+      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
+      <translation>Tipos de excepcion redundantes en 'except ({0}){1}:'. Escribir 'except {2}{1}:', que captura exactamente las mismas excepciones.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" />
-      <source>Function definition does not bind loop variable '{0}'.</source>
-      <translation>La definicion de function no esta unida a la variable del bucle '{0}'.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" />
-      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
-      <translation>{0} es una clase base abstracta, pero ninguno de los métodos que define es abstracto. Esto no es necesariamente un error pero podría haber olvidado añadir @abstractmethod decorator, potentialmente en conjunción con @classmethod, @property y/o @staticmethod.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="322" />
-      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
-      <translation>La excepción '{0}' se ha capturado múltiples veces. Solamente la primera sera tomada en consideracion y todas las demas capturas de excepcion se pueden eliminar de modo seguro.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="327" />
-      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
-      <translation>El desempaquetado de asterisco después de un argumento de palabra clave está decididamente desaconsejado, puesto que solo funciona si el parámetro de palabra clave se declara detrás de todos los parámetros proporcionados por la secuencia desempaquetada, y este cambio en el orden puede sorprender y resultar engañoso al leerlo.</translation>
+      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
+      <translation>El resultado de la comparación no se usa. Esta línea no hace nada. ¿Trataba de preceerla con assert?</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" />
+      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
+      <translation>No se puede lanzar un literal. ¿Se intentaba retornarlo, o lanzar una Exception?</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" />
+      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <translation>'assertRaises(Exception)' y 'pytest.raises(Exception)' debe ser considerado dañino. Pueden conducir a tests que pasan aunque el código en testeo nunca se ejecute debido a un error de tecleo. Usar Assert para excepciones más específicas (nativas o personalizadas), o usar 'assertRaisesRegex' (en caso de usar 'assertRaises'), o añadir el argumento clave 'match' (en caso de usar 'pytest.raises'), o usar la forma de gestión de contexto con un objetivo.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="329" />
+      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
+      <translation>Expresión sin uso encontrada. Considerar bien su asignación a una variable o su eliminación.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" />
-      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
-      <translation>{0} es un método vacío en una clase base abstracta, pero no tiene decorador. Considerar la adición de @abstractmethod.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" />
-      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
-      <translation>No se ha encontrado un argumento stacklevel explícito. El método warn del módulo warnings usa un stacklevel de 1 por defecto. Esto mostrará solamente una stack trace para la línea en la que el método warn es invocado. Se recomienda por lo tanto utilizar un stacklevel de 2 o mayor, para proporcionar más información al usuario.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="347" />
-      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
-      <translation>El uso de 'except ():' con una tupla vacía no gestiona/captura nada. Añadir excepciones a gestionar.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="352" />
-      <source>Except handlers should only be names of exception classes</source>
-      <translation>Los manejadores Except deberían ser solamente nombres de clases de excepción</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="356" />
-      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
-      <translation>Usar el generador retornado por 'itertools.groupby()' más de una vez no hará nada en el segundo uso. Guardar los resultados en una lista, si se necesita múltiples veces.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" />
-      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
-      <translation>Posible anotación de tipo no intencional (using ':'). ¿Olvidó la asignación (using '=')?</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" />
-      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
-      <translation>Los conjuntos no deberíano contener elementos duplicados. Los elementos duplicados se reemplazarán con un único elemento en tiempo de ejecución.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="372" />
-      <source>unncessary f-string</source>
-      <translation>f-string innecesaria</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" />
-      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
-      <translation>no se puede usar 'self.__class__' como primer argumento de la llamada 'super()'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" />
-      <source>found {0} formatter</source>
-      <translation>encontrado formateador {0}</translation>
+      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
+      <translation>El uso de 'functools.lru_cache' o 'functools.cache' en métodos puede conducir a fugas de memoria. La cache puede retener referencias a instancias, imposibilitando la garbage collection.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="340" />
+      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <translation>Encontrado bucle for que reasigna el iterable en iteracion con cada valor del iterable.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="345" />
+      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <translation>f-string usada como docstring. Python interpretara eso como una cadena unida en lugar de una docstring.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="350" />
+      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <translation>No se han pasado argumentos a 'contextlib.suppress'. No se suprimiran excepciones y por tanto este gestor de contexto es redundante.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="355" />
+      <source>Function definition does not bind loop variable '{0}'.</source>
+      <translation>La definicion de function no esta unida a la variable del bucle '{0}'.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="359" />
+      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
+      <translation>{0} es una clase base abstracta, pero ninguno de los métodos que define es abstracto. Esto no es necesariamente un error pero podría haber olvidado añadir @abstractmethod decorator, potentialmente en conjunción con @classmethod, @property y/o @staticmethod.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" />
+      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
+      <translation>La excepción '{0}' se ha capturado múltiples veces. Solamente la primera sera tomada en consideracion y todas las demas capturas de excepcion se pueden eliminar de modo seguro.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" />
+      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
+      <translation>El desempaquetado de asterisco después de un argumento de palabra clave está decididamente desaconsejado, puesto que solo funciona si el parámetro de palabra clave se declara detrás de todos los parámetros proporcionados por la secuencia desempaquetada, y este cambio en el orden puede sorprender y resultar engañoso al leerlo.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" />
-      <source>format string does contain unindexed parameters</source>
-      <translation>cadena de formato que contiene parámetros sin indexar</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="381" />
-      <source>docstring does contain unindexed parameters</source>
-      <translation>docstring cque contiene parámetros sin indexar</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="384" />
-      <source>other string does contain unindexed parameters</source>
-      <translation>otra cadena contiene parámetros sin indexar</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" />
-      <source>format call uses too large index ({0})</source>
-      <translation>llamada de formato usa un índice demasiado largo ({0})</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="390" />
-      <source>format call uses missing keyword ({0})</source>
-      <translation>llamada de formato usa una palabra clave desaparecida ({0})</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="393" />
-      <source>format call uses keyword arguments but no named entries</source>
-      <translation>llamada de formato usa argumentos de palabra clave pero sin entradas con nombre</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="397" />
-      <source>format call uses variable arguments but no numbered entries</source>
-      <translation>llamada de formato usa argumentos de variable pero sin entradas numeradas</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="401" />
-      <source>format call uses implicit and explicit indexes together</source>
-      <translation>llamada de formato usa juntos índices implícitos y explícitos</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="405" />
-      <source>format call provides unused index ({0})</source>
-      <translation>llamada de formato proporciona índice que no se usa ({0})</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" />
-      <source>format call provides unused keyword ({0})</source>
-      <translation>llamada de formato proporciona palabra clave que no se usa ({0})</translation>
+      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
+      <translation>{0} es un método vacío en una clase base abstracta, pero no tiene decorador. Considerar la adición de @abstractmethod.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" />
+      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
+      <translation>No se ha encontrado un argumento stacklevel explícito. El método warn del módulo warnings usa un stacklevel de 1 por defecto. Esto mostrará solamente una stack trace para la línea en la que el método warn es invocado. Se recomienda por lo tanto utilizar un stacklevel de 2 o mayor, para proporcionar más información al usuario.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="391" />
+      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
+      <translation>El uso de 'except ():' con una tupla vacía no gestiona/captura nada. Añadir excepciones a gestionar.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" />
+      <source>Except handlers should only be names of exception classes</source>
+      <translation>Los manejadores Except deberían ser solamente nombres de clases de excepción</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="400" />
+      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
+      <translation>Usar el generador retornado por 'itertools.groupby()' más de una vez no hará nada en el segundo uso. Guardar los resultados en una lista, si se necesita múltiples veces.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="406" />
+      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
+      <translation>Posible anotación de tipo no intencional (using ':'). ¿Olvidó la asignación (using '=')?</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" />
-      <source>logging statement uses string.format()</source>
-      <translation>la sentencia de log usa string.format()</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="414" />
-      <source>logging statement uses '%'</source>
-      <translation>la sentencia de log usa '%'</translation>
+      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
+      <translation>Los conjuntos no deberíano contener elementos duplicados. Los elementos duplicados se reemplazarán con un único elemento en tiempo de ejecución.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="417" />
-      <source>logging statement uses '+'</source>
-      <translation>la sentencia de log usa '+'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" />
-      <source>logging statement uses f-string</source>
-      <translation>la sentencia de log usa f-string</translation>
+      <source>unncessary f-string</source>
+      <translation>f-string innecesaria</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="418" />
+      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
+      <translation>no se puede usar 'self.__class__' como primer argumento de la llamada 'super()'</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="423" />
-      <source>logging statement uses 'warn' instead of 'warning'</source>
-      <translation>la sentencia de log usa 'warn' en lugar de 'warning'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="426" />
-      <source>expected these __future__ imports: {0}; but only got: {1}</source>
-      <translation>se esperaban estos __future__ imports: {0} pero solamente hay: {1}</translation>
+      <source>found {0} formatter</source>
+      <translation>encontrado formateador {0}</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" />
+      <source>format string does contain unindexed parameters</source>
+      <translation>cadena de formato que contiene parámetros sin indexar</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="427" />
+      <source>docstring does contain unindexed parameters</source>
+      <translation>docstring cque contiene parámetros sin indexar</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="430" />
-      <source>expected these __future__ imports: {0}; but got none</source>
-      <translation>se esperaban estos __future__ imports: {0}; but no hay ninguno</translation>
+      <source>other string does contain unindexed parameters</source>
+      <translation>otra cadena contiene parámetros sin indexar</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" />
-      <source>gettext import with alias _ found: {0}</source>
-      <translation>encontrado gettext import con alias _ : {0}</translation>
+      <source>format call uses too large index ({0})</source>
+      <translation>llamada de formato usa un índice demasiado largo ({0})</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="436" />
-      <source>print statement found</source>
-      <translation>encontrada sentencia print</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" />
-      <source>one element tuple found</source>
-      <translation>tupla de un elemento encontrada</translation>
+      <source>format call uses missing keyword ({0})</source>
+      <translation>llamada de formato usa una palabra clave desaparecida ({0})</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" />
+      <source>format call uses keyword arguments but no named entries</source>
+      <translation>llamada de formato usa argumentos de palabra clave pero sin entradas con nombre</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="440" />
-      <source>mutable default argument of type {0}</source>
-      <translation>argumento por defecto mutable de tipo {0}</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="446" />
-      <source>mutable default argument of function call '{0}'</source>
-      <translation>argumento por defecto mutable de llamada a función {0}</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" />
-      <source>None should not be added at any return if function has no return value except None</source>
-      <translation>None no se debería añadir a ningún return si la función no tiene valor de retorno excepto None</translation>
+      <source>format call uses variable arguments but no numbered entries</source>
+      <translation>llamada de formato usa argumentos de variable pero sin entradas numeradas</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="447" />
+      <source>format call uses implicit and explicit indexes together</source>
+      <translation>llamada de formato usa juntos índices implícitos y explícitos</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="451" />
+      <source>format call provides unused index ({0})</source>
+      <translation>llamada de formato proporciona índice que no se usa ({0})</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" />
-      <source>an explicit value at every return should be added if function has a return value except None</source>
-      <translation>un valor explícito se debería añadir a cada return si la función tiene un valor de retorno excepto None</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="459" />
-      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
-      <translation>un return explícito se debería añadir al final de cada función si tiene un valor de retorno excepto None</translation>
+      <source>format call provides unused keyword ({0})</source>
+      <translation>llamada de formato proporciona palabra clave que no se usa ({0})</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" />
+      <source>logging statement uses string.format()</source>
+      <translation>la sentencia de log usa string.format()</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="461" />
+      <source>logging statement uses '%'</source>
+      <translation>la sentencia de log usa '%'</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="464" />
-      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
-      <translation>no se debería añadir un valor a una variable si se va a usar como valor de retorno solamente</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="469" />
-      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
-      <translation>es preferible la continuación implícita de la línea entre paréntesis, corchetes y llaves al uso de la barra invertida</translation>
+      <source>logging statement uses '+'</source>
+      <translation>la sentencia de log usa '+'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" />
+      <source>logging statement uses f-string</source>
+      <translation>la sentencia de log usa f-string</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="470" />
+      <source>logging statement uses 'warn' instead of 'warning'</source>
+      <translation>la sentencia de log usa 'warn' en lugar de 'warning'</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="474" />
+      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <translation>se esperaban estos __future__ imports: {0} pero solamente hay: {1}</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="478" />
+      <source>expected these __future__ imports: {0}; but got none</source>
+      <translation>se esperaban estos __future__ imports: {0}; but no hay ninguno</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="482" />
+      <source>gettext import with alias _ found: {0}</source>
+      <translation>encontrado gettext import con alias _ : {0}</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="486" />
+      <source>print statement found</source>
+      <translation>encontrada sentencia print</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="488" />
+      <source>one element tuple found</source>
+      <translation>tupla de un elemento encontrada</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="495" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="492" />
+      <source>mutable default argument of type {0}</source>
+      <translation>argumento por defecto mutable de tipo {0}</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="498" />
+      <source>mutable default argument of function call '{0}'</source>
+      <translation>argumento por defecto mutable de llamada a función {0}</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="502" />
+      <source>None should not be added at any return if function has no return value except None</source>
+      <translation>None no se debería añadir a ningún return si la función no tiene valor de retorno excepto None</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="507" />
+      <source>an explicit value at every return should be added if function has a return value except None</source>
+      <translation>un valor explícito se debería añadir a cada return si la función tiene un valor de retorno excepto None</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="512" />
+      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <translation>un return explícito se debería añadir al final de cada función si tiene un valor de retorno excepto None</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" />
+      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
+      <translation>no se debería añadir un valor a una variable si se va a usar como valor de retorno solamente</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="523" />
+      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <translation>es preferible la continuación implícita de la línea entre paréntesis, corchetes y llaves al uso de la barra invertida</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="529" />
       <source>commented code lines should be removed</source>
       <translation>las líneas de código comentadas se deberían eliminar</translation>
     </message>
@@ -56612,103 +56680,103 @@
       <translation>No se ha podido iniciar python.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="193" />
+      <location filename="../PipInterface/Pip.py" line="195" />
       <source>&lt;project&gt;</source>
       <translation>&lt;project&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="216" />
+      <location filename="../PipInterface/Pip.py" line="220" />
       <source>Interpreter for Virtual Environment</source>
       <translation>Intérprete para el Entorno Virtual</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="217" />
+      <location filename="../PipInterface/Pip.py" line="221" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation>No se ha configurado ningún intérprete para el entorno virtual seleccionado.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="257" />
+      <location filename="../PipInterface/Pip.py" line="261" />
       <source>Install PIP</source>
       <translation>Instalar PIP</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="304" />
+      <location filename="../PipInterface/Pip.py" line="308" />
       <source>Repair PIP</source>
       <translation>Reparar PIP</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="395" />
+      <location filename="../PipInterface/Pip.py" line="399" />
       <source>Upgrade Packages</source>
       <translation>Actualizar Packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="441" />
+      <location filename="../PipInterface/Pip.py" line="445" />
       <source>Install Packages</source>
       <translation>Instalar Packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="471" />
+      <location filename="../PipInterface/Pip.py" line="475" />
       <source>Install Packages from Requirements</source>
       <translation>Instalar Packages a partir de Requisitos</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="492" />
+      <location filename="../PipInterface/Pip.py" line="496" />
       <source>Install Project</source>
       <translation>Instalar Proyecto</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="549" />
-      <location filename="../PipInterface/Pip.py" line="521" />
-      <location filename="../PipInterface/Pip.py" line="512" />
+      <location filename="../PipInterface/Pip.py" line="553" />
+      <location filename="../PipInterface/Pip.py" line="525" />
+      <location filename="../PipInterface/Pip.py" line="516" />
       <source>Uninstall Packages</source>
       <translation>Desinstalar Packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="550" />
-      <location filename="../PipInterface/Pip.py" line="513" />
+      <location filename="../PipInterface/Pip.py" line="554" />
+      <location filename="../PipInterface/Pip.py" line="517" />
       <source>Do you really want to uninstall these packages?</source>
       <translation>¿Realmente desea desinstalar estos packages?</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="559" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Uninstall Packages from Requirements</source>
       <translation>Desinstalar Packages a partir de Requisitos</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="912" />
+      <location filename="../PipInterface/Pip.py" line="916" />
       <source>Cache Info</source>
       <translation>Info de Cache</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="938" />
-      <location filename="../PipInterface/Pip.py" line="929" />
+      <location filename="../PipInterface/Pip.py" line="942" />
+      <location filename="../PipInterface/Pip.py" line="933" />
       <source>List Cached Files</source>
       <translation>Listar Archivos en Cache</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="930" />
+      <location filename="../PipInterface/Pip.py" line="934" />
       <source>Enter a file pattern (empty for all):</source>
       <translation>Introducir un patrón de archivo (dejar en blanco para todos):</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="962" />
-      <location filename="../PipInterface/Pip.py" line="955" />
+      <location filename="../PipInterface/Pip.py" line="966" />
+      <location filename="../PipInterface/Pip.py" line="959" />
       <source>Remove Cached Files</source>
       <translation>Eliminar Archivos en Cache</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="956" />
+      <location filename="../PipInterface/Pip.py" line="960" />
       <source>Enter a file pattern:</source>
       <translation>Introducir un patrón de archivo:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="987" />
-      <location filename="../PipInterface/Pip.py" line="979" />
+      <location filename="../PipInterface/Pip.py" line="991" />
+      <location filename="../PipInterface/Pip.py" line="983" />
       <source>Purge Cache</source>
       <translation>Purgar Cache</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="980" />
+      <location filename="../PipInterface/Pip.py" line="984" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation>Desear realmente purgar la cache de pip? Todos los archivos necesitarán descargarse de nuevo.</translation>
     </message>
@@ -57601,30 +57669,30 @@
       <translation>Archivos:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="434" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="435" />
       <source>Getting installed packages...</source>
       <translation>Obteniendo packages instalados...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="448" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="449" />
       <source>Getting outdated packages...</source>
       <translation>Obteniendo packages antiguos...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1202" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1022" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1009" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="973" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
       <source>Search PyPI</source>
       <translation>Buscar PyPI</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="975" />
       <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Recibido error mientras se buscaba  &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</translation>
     </message>
     <message numerus="yes">
-      <location filename="../PipInterface/PipPackagesWidget.py" line="989" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="990" />
       <source>%n package(s) found.</source>
       <translation>
         <numerusform>%n package encontrado.</numerusform>
@@ -57632,195 +57700,203 @@
       </translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="996" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="997" />
       <source>Showing first {0} packages found.</source>
       <translation>Mostrando primeros {0} packages encontrados.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1015" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1016" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1011" />
       <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Sin resultados para &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1024" />
       <source>&lt;p&gt;There were no more results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No hay más resultados para &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1204" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No hay info de detalles de package disponible para &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1222" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1223" />
       <source>Pip</source>
       <translation>Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1224" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1225" />
       <source>Install Pip</source>
       <translation>Instalar Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1227" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1228" />
       <source>Install Pip to User-Site</source>
       <translation>Instalar Pip en el Sitio de Usuario</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1230" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1231" />
       <source>Repair Pip</source>
       <translation>Reparar Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1237" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1238" />
       <source>Install</source>
       <translation>Instalar</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1402" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1239" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1403" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1240" />
       <source>Install Packages</source>
       <translation>Instalar Packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1242" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1243" />
       <source>Install Local Package</source>
       <translation>Instalar Package Local</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1245" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1246" />
       <source>Re-Install Selected Packages</source>
       <translation>Reinstalar los Packages Seleccionados</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1252" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1253" />
       <source>Requirements/Constraints</source>
       <translation>Requisitos/Restricciones</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1254" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1255" />
       <source>Install Requirements</source>
       <translation>Instalar Requisitos</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1257" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1258" />
       <source>Uninstall Requirements</source>
       <translation>Desinstalar Requisitos</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1260" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1261" />
       <source>Generate Requirements...</source>
       <translation>Generar Requisitos...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1264" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1265" />
       <source>Generate Constraints...</source>
       <translation>Generar Restricciones...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1271" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1272" />
       <source>Cache</source>
       <translation>Caché</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1273" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1274" />
       <source>Show Cache Info...</source>
       <translation>Mostrar info de Cache...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1276" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1277" />
       <source>Show Cached Files...</source>
       <translation>Mostrar Archivos en Cache...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1279" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1280" />
       <source>Remove Cached Files...</source>
       <translation>Eliminar Archivos en Cache...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1282" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1283" />
       <source>Purge Cache...</source>
       <translation>Purgar Cache...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1299" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1300" />
       <source>Show Licenses...</source>
       <translation>Mostrar Licencias...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1303" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1304" />
       <source>Check Vulnerabilities</source>
       <translation>Comprobar Vulnerabilidades</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1307" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1308" />
       <source>Update Vulnerability Database</source>
       <translation>Actualizar Base de Datos de Vulnerabilidades</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1311" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1312" />
       <source>Create SBOM file</source>
       <translation>Crear archivo SBOM</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1318" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1319" />
       <source>Edit User Configuration...</source>
       <translation>Editar Configuración de Usuario...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1321" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1322" />
       <source>Edit Environment Configuration...</source>
       <translation>Editar Configuración de Entorno...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1326" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1327" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1545" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1532" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1521" />
-      <source>Edit Configuration</source>
-      <translation>Editar Configuración</translation>
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1546" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1533" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1522" />
+      <source>Edit Configuration</source>
+      <translation>Editar Configuración</translation>
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1547" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1534" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1523" />
       <source>No valid configuration path determined. Aborting</source>
       <translation>No hay una ruta válida de configuración determinada. Abortando</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1714" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1736" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation>{0} {1}</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1735" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1757" />
       <source>Affected Version:</source>
       <translation>Versión Afectada:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1760" />
       <source>Advisory:</source>
       <translation>Recomendatorio:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1862" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1843" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1890" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1865" />
       <source>unknown</source>
       <translation>desconocido</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1887" />
       <source>any</source>
       <translation>cualquiera</translation>
     </message>
   </context>
   <context>
+    <name>PipPackagesWindow</name>
+    <message>
+      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <source>Manage Packages</source>
+      <translation>Gestionar Packages</translation>
+    </message>
+  </context>
+  <context>
     <name>PipPage</name>
     <message>
       <location filename="../Preferences/ConfigurationPages/PipPage.py" line="31" />
@@ -69378,50 +69454,82 @@
       <translation>WebREPL no está soportado en este dispositivo.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1341" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1555" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
       <source>Active</source>
       <translation>Activa</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
-      <source>Connected</source>
-      <translation>conectada</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1345" />
-      <source>Status</source>
-      <translation>Estado</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1349" />
-      <source>Hostname</source>
-      <translation>Nombre de Host</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1350" />
-      <source>IPv4 Address</source>
-      <translation>Dirección IPv4</translation>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1343" />
+      <source>Name</source>
+      <translation>Nombre</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1568" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1344" />
+      <source>MAC-Address</source>
+      <translation>Dirección MAC</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1347" />
+      <source>Address Type</source>
+      <translation>Tipo de Dirección</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Public</source>
+      <translation>Pública</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Random</source>
+      <translation>Aleatoria</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>MTU</source>
+      <translation>MTU</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>{0} Bytes</source>
+      <translation>{0} Bytes</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1556" />
+      <source>Connected</source>
+      <translation>conectada</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1559" />
+      <source>Status</source>
+      <translation>Estado</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1563" />
+      <source>Hostname</source>
+      <translation>Nombre de Host</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1564" />
+      <source>IPv4 Address</source>
+      <translation>Dirección IPv4</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1565" />
       <source>Netmask</source>
       <translation>Máscara de Red</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1352" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1566" />
       <source>Gateway</source>
       <translation>Gateway</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1353" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1567" />
       <source>DNS</source>
       <translation>DNS</translation>
     </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1354" />
-      <source>MAC-Address</source>
-      <translation>Dirección MAC</translation>
-    </message>
   </context>
   <context>
     <name>RccCompilerOptionsDialog</name>
--- a/src/eric7/i18n/eric7_fr.ts	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/i18n/eric7_fr.ts	Sun Jul 02 17:39:33 2023 +0200
@@ -1346,6 +1346,16 @@
       <source>type annotation is too long ({0} &gt; {1})</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="76" />
+      <source>'typing.Union' is deprecated, use '|' instead (see PEP 604)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="80" />
+      <source>'typing.{0}' is deprecated, use '{1}' instead (see PEP 585)</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>ApplicationDiagramBuilder</name>
@@ -1783,42 +1793,42 @@
       <translation>{0} n'est pas configuré.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
+      <location filename="../Utilities/BackgroundService.py" line="217" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="219" />
+      <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>Restart background client?</source>
+      <translation>Redémarrer le client en arrière plan ?</translation>
+    </message>
+    <message>
       <location filename="../Utilities/BackgroundService.py" line="232" />
-      <source>Restart background client?</source>
-      <translation>Redémarrer le client en arrière plan ?</translation>
-    </message>
-    <message>
-      <location filename="../Utilities/BackgroundService.py" line="233" />
       <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="262" />
+      <location filename="../Utilities/BackgroundService.py" line="261" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="497" />
+      <location filename="../Utilities/BackgroundService.py" line="502" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="506" />
+      <location filename="../Utilities/BackgroundService.py" line="511" />
       <source>Background client disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="507" />
+      <location filename="../Utilities/BackgroundService.py" line="512" />
       <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>
@@ -1881,22 +1891,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>Yes</source>
       <translation type="unfinished">Oui</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>No</source>
       <translation type="unfinished">Non</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>yes</source>
       <translation type="unfinished">oui</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>no</source>
       <translation type="unfinished">non</translation>
     </message>
@@ -2318,26 +2328,31 @@
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="97" />
-      <source>Complete {0}-bit Service UUID: {1}</source>
+      <source>Complete {0}-bit Service UUID: {1}{2}</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="99" />
-      <source>Incomplete {0}-bit Service UUID: {1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="110" />
-      <source>Manufacturer ID: 0x{0:x} ({1})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="114" />
+      <source>Incomplete {0}-bit Service UUID: {1}{2}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="107" />
+      <source> - {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="121" />
+      <source>Manufacturer ID: 0x{0:x} - {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="125" />
       <source>Manufacturer ID: 0x{0:x}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="123" />
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="134" />
       <source>Tx Power Level [dBm]: {0}</source>
       <translation type="unfinished" />
     </message>
@@ -2839,17 +2854,17 @@
       <translation>Nouveau &amp;Dossier...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="335" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
       <source>New Bookmark Folder</source>
       <translation>Nouveau Dossier de Signets</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="337" />
       <source>Enter title for new bookmark folder:</source>
       <translation>Entrer le titre pour le nouveau dossier de signets :</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="343" />
       <source>New Folder</source>
       <translation>Nouveau répertoire</translation>
     </message>
@@ -2953,22 +2968,22 @@
       <translation>Menu de signets</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="543" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="541" />
       <source>Remove Bookmark</source>
       <translation>Supprimer signet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="585" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="583" />
       <source>Insert Bookmark</source>
       <translation>Insérer signet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="626" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="624" />
       <source>Name Change</source>
       <translation>Modification de nom</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="630" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="628" />
       <source>Address Change</source>
       <translation>Modification d'adresse</translation>
     </message>
@@ -3005,22 +3020,22 @@
       <translation>Erreur à enregistrer les signets dans &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="399" />
       <source>Export Bookmarks</source>
       <translation>Exporter les signets</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="403" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
       <source>XBEL bookmarks (*.xbel);;XBEL bookmarks (*.xml);;HTML Bookmarks (*.html)</source>
       <translation>Signets XBEL (*.xbel);;Signets XBEL (*.xml);;Signets HTML (*.html)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="429" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="427" />
       <source>Exporting Bookmarks</source>
       <translation>Export des signets</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="430" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="428" />
       <source>Error exporting bookmarks to &lt;b&gt;{0}&lt;/b&gt;.</source>
       <translation>Erreur à exporter les signets dans &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
@@ -3278,231 +3293,231 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="238" />
+      <location filename="../UI/Browser.py" line="239" />
       <source>Show Hidden Files</source>
       <translation type="unfinished">Montrer les fichiers cachés</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="244" />
+      <location filename="../UI/Browser.py" line="245" />
       <source>New</source>
       <translation type="unfinished">Nouveau</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="246" />
+      <location filename="../UI/Browser.py" line="247" />
       <source>Directory</source>
       <translation type="unfinished">Répertoire</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="249" />
+      <location filename="../UI/Browser.py" line="250" />
       <source>File</source>
       <translation type="unfinished">Fichier</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="323" />
-      <location filename="../UI/Browser.py" line="285" />
-      <location filename="../UI/Browser.py" line="255" />
+      <location filename="../UI/Browser.py" line="324" />
+      <location filename="../UI/Browser.py" line="286" />
+      <location filename="../UI/Browser.py" line="256" />
       <source>Open</source>
       <translation>Ouvrir</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="258" />
+      <location filename="../UI/Browser.py" line="259" />
       <source>Run Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="622" />
-      <location filename="../UI/Browser.py" line="614" />
-      <location filename="../UI/Browser.py" line="604" />
-      <location filename="../UI/Browser.py" line="595" />
-      <location filename="../UI/Browser.py" line="305" />
-      <location filename="../UI/Browser.py" line="262" />
-      <source>Show Mime-Type</source>
-      <translation>Montrer le type Mime</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="266" />
-      <source>Refresh Source File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="361" />
-      <location filename="../UI/Browser.py" line="309" />
-      <location filename="../UI/Browser.py" line="271" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Copier chemin dans le Presse-Papiers</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="369" />
-      <location filename="../UI/Browser.py" line="329" />
-      <location filename="../UI/Browser.py" line="317" />
-      <location filename="../UI/Browser.py" line="279" />
-      <source>Delete</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="288" />
-      <source>Open in Hex Editor</source>
-      <translation>Ouvrir dans Hex Editor</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="292" />
-      <source>Open in Icon Editor</source>
-      <translation>Ouvrir dans Icon Editor</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="296" />
-      <source>Open in Editor</source>
-      <translation type="unfinished">Ouvrir dans l'éditeur</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="300" />
-      <source>Open in PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="388" />
-      <location filename="../UI/Browser.py" line="379" />
-      <location filename="../UI/Browser.py" line="335" />
-      <source>New toplevel directory...</source>
-      <translation>Nouveau répertoire racine...</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="339" />
-      <source>Add as toplevel directory</source>
-      <translation>Ajouter en tant que répertoire racine</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="343" />
-      <source>Remove from toplevel</source>
-      <translation>Supprimer du niveau racine</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="348" />
-      <source>Refresh directory</source>
-      <translation>Rafraichir répertoire</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="353" />
-      <source>Find in this directory</source>
-      <translation>Trouver dans ce répertoire</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="357" />
-      <source>Find &amp;&amp; Replace in this directory</source>
-      <translation>Chercher &amp;&amp; Remplacer dans ce répertoire</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="373" />
-      <source>Goto</source>
-      <translation>Aller à</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="491" />
-      <source>Line {0}</source>
-      <translation>Ligne {0}</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="596" />
-      <source>The mime type of the file could not be determined.</source>
-      <translation>Le type mime du fichier n'a pas pu être déterminé.</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="615" />
-      <location filename="../UI/Browser.py" line="605" />
-      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
-      <translation>Le fichier a le type mime &lt;b&gt;{0}&lt;/b&gt;.</translation>
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="623" />
+      <location filename="../UI/Browser.py" line="615" />
+      <location filename="../UI/Browser.py" line="605" />
+      <location filename="../UI/Browser.py" line="596" />
+      <location filename="../UI/Browser.py" line="306" />
+      <location filename="../UI/Browser.py" line="263" />
+      <source>Show Mime-Type</source>
+      <translation>Montrer le type Mime</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="267" />
+      <source>Refresh Source File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="362" />
+      <location filename="../UI/Browser.py" line="310" />
+      <location filename="../UI/Browser.py" line="272" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Copier chemin dans le Presse-Papiers</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="370" />
+      <location filename="../UI/Browser.py" line="330" />
+      <location filename="../UI/Browser.py" line="318" />
+      <location filename="../UI/Browser.py" line="280" />
+      <source>Delete</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="289" />
+      <source>Open in Hex Editor</source>
+      <translation>Ouvrir dans Hex Editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="293" />
+      <source>Open in Icon Editor</source>
+      <translation>Ouvrir dans Icon Editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="297" />
+      <source>Open in Editor</source>
+      <translation type="unfinished">Ouvrir dans l'éditeur</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="301" />
+      <source>Open in PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="389" />
+      <location filename="../UI/Browser.py" line="380" />
+      <location filename="../UI/Browser.py" line="336" />
+      <source>New toplevel directory...</source>
+      <translation>Nouveau répertoire racine...</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="340" />
+      <source>Add as toplevel directory</source>
+      <translation>Ajouter en tant que répertoire racine</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="344" />
+      <source>Remove from toplevel</source>
+      <translation>Supprimer du niveau racine</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="349" />
+      <source>Refresh directory</source>
+      <translation>Rafraichir répertoire</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="354" />
+      <source>Find in this directory</source>
+      <translation>Trouver dans ce répertoire</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="358" />
+      <source>Find &amp;&amp; Replace in this directory</source>
+      <translation>Chercher &amp;&amp; Remplacer dans ce répertoire</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="374" />
+      <source>Goto</source>
+      <translation>Aller à</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="492" />
+      <source>Line {0}</source>
+      <translation>Ligne {0}</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="597" />
+      <source>The mime type of the file could not be determined.</source>
+      <translation>Le type mime du fichier n'a pas pu être déterminé.</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="616" />
+      <location filename="../UI/Browser.py" line="606" />
+      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
+      <translation>Le fichier a le type mime &lt;b&gt;{0}&lt;/b&gt;.</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="624" />
       <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
       <translation>Le fichier a le type mime &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Faut-il l'ajouter à la liste des types mime texte ?</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="731" />
+      <location filename="../UI/Browser.py" line="732" />
       <source>New toplevel directory</source>
       <translation>Nouveau répertoire racine</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="967" />
-      <location filename="../UI/Browser.py" line="955" />
-      <location filename="../UI/Browser.py" line="946" />
-      <source>New Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="947" />
-      <source>Name for new directory:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="994" />
-      <location filename="../UI/Browser.py" line="956" />
-      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="968" />
+      <location filename="../UI/Browser.py" line="956" />
+      <location filename="../UI/Browser.py" line="947" />
+      <source>New Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="948" />
+      <source>Name for new directory:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="995" />
+      <location filename="../UI/Browser.py" line="957" />
+      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="969" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Le répertoire &lt;b&gt;{0}&lt;/b&gt; ne peut être créé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1006" />
-      <location filename="../UI/Browser.py" line="993" />
-      <location filename="../UI/Browser.py" line="984" />
-      <source>New File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="985" />
-      <source>Name for new file:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1007" />
+      <location filename="../UI/Browser.py" line="994" />
+      <location filename="../UI/Browser.py" line="985" />
+      <source>New File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="986" />
+      <source>Name for new file:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1008" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1103" />
-      <location filename="../UI/Browser.py" line="1045" />
-      <location filename="../UI/Browser.py" line="1035" />
-      <source>Delete File</source>
-      <translation type="unfinished">Supprimer le fichier</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1036" />
-      <source>Do you really want to delete this file?</source>
-      <translation type="unfinished">Voulez-vous vraiment supprimer ce fichier ?</translation>
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1104" />
       <location filename="../UI/Browser.py" line="1046" />
+      <location filename="../UI/Browser.py" line="1036" />
+      <source>Delete File</source>
+      <translation type="unfinished">Supprimer le fichier</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1037" />
+      <source>Do you really want to delete this file?</source>
+      <translation type="unfinished">Voulez-vous vraiment supprimer ce fichier ?</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1105" />
+      <location filename="../UI/Browser.py" line="1047" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Le fichier sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1071" />
-      <location filename="../UI/Browser.py" line="1061" />
-      <source>Delete Directory</source>
-      <translation type="unfinished">Supprimer le répertoire</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1062" />
-      <source>Do you really want to delete this directory?</source>
-      <translation type="unfinished">Voulez-vous vraiment supprimer ce répertoire ?</translation>
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1072" />
+      <location filename="../UI/Browser.py" line="1062" />
+      <source>Delete Directory</source>
+      <translation type="unfinished">Supprimer le répertoire</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1063" />
+      <source>Do you really want to delete this directory?</source>
+      <translation type="unfinished">Voulez-vous vraiment supprimer ce répertoire ?</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1073" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Le répertoire sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1092" />
-      <source>Delete Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1093" />
+      <source>Delete Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1094" />
       <source>Do you really want to delete these files?</source>
       <translation type="unfinished" />
     </message>
@@ -5157,27 +5172,27 @@
       <translation>Erreur : {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1210" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1221" />
       <source>{0} (ignored)</source>
       <translation>{0} (ignoré)</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1285" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1296" />
       <source>No issues found.</source>
       <translation>Pas d'erreur trouvée.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1289" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1300" />
       <source>No files found (check your ignore list).</source>
       <translation>Pas de fichier trouvé (vérifier votre liste d'ignorés).</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2891" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2935" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2892" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2936" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -5663,6 +5678,16 @@
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Exempted 'typing' symbols:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Enter deprecated symbols of the 'typing' module exempted from PEP-585 checking separated by space</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
       <source>Security</source>
       <translation type="unfinished">Sécurité</translation>
     </message>
@@ -6556,7 +6581,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="174" />
+      <location filename="../Utilities/__init__.py" line="176" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>L'encodage '{0}' n'est pas adapté pour le texte.</translation>
     </message>
@@ -7682,375 +7707,378 @@
   <context>
     <name>ConfigurationWidget</name>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="174" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="175" />
       <source>Application</source>
       <translation>Application</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="180" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="181" />
       <source>Conda</source>
       <translation>Conda</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="182" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="183" />
       <source>Cooperation</source>
       <translation>Coopération</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="189" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="190" />
       <source>Diff</source>
       <translation>Diff</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="196" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="197" />
       <source>Email</source>
       <translation>Email</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="203" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="204" />
       <source>Graphics</source>
       <translation>Graphiques</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="865" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="210" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="866" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="211" />
       <source>Hex Editor</source>
       <translation>Hex Editor</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="946" />
       <location filename="../Preferences/ConfigurationDialog.py" line="914" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="882" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="851" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="754" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="639" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="217" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="883" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="852" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="755" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="640" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="218" />
       <source>Icons</source>
       <translation>Icônes</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="223" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="224" />
       <source>IRC</source>
       <translation>IRC</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="225" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="226" />
       <source>Log-Viewer</source>
       <translation>Fenêtre de log</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="232" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="233" />
       <source>MicroPython</source>
       <translation type="unfinished">MicroPython</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="239" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="240" />
       <source>MIME-Types</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="768" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="246" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="769" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="247" />
       <source>Network</source>
       <translation>Réseau</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="253" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="254" />
       <source>Notifications</source>
       <translation>Notifications</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="896" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="260" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="897" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="261" />
       <source>PDF Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="267" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="928" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="268" />
       <source>Python Package Management</source>
       <translation>Gestion des packages Python</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="274" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="275" />
       <source>Plugin Manager</source>
       <translation>Gestionnaire de plugins</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="775" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="653" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="281" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="776" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="654" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="282" />
       <source>Printer</source>
       <translation>Impression</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="288" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="289" />
       <source>Python</source>
       <translation>Python</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="294" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="295" />
       <source>Qt</source>
       <translation>Qt</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="782" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="296" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="783" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="297" />
       <source>Security</source>
       <translation type="unfinished">Sécurité</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="303" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="304" />
       <source>Shell</source>
       <translation>Shell</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="309" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="310" />
       <source>Tasks</source>
       <translation>Tâches</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="311" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="312" />
       <source>Templates</source>
       <translation>Gabarits</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="834" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="318" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="835" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="319" />
       <source>Tray Starter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="325" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="326" />
       <source>Version Control Systems</source>
       <translation>Contrôle de versions</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="332" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="333" />
       <source>Debugger</source>
       <translation>Débogueur</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="667" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="374" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="339" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="668" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="375" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="340" />
       <source>General</source>
       <translation>Général</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="346" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="347" />
       <source>Python3</source>
       <translation>Python3</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="660" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="353" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="661" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="354" />
       <source>Editor</source>
       <translation>Éditeur</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="360" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="361" />
       <source>APIs</source>
       <translation>APIs</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="367" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="368" />
       <source>Documentation Viewer</source>
       <translation>Visionneur de documentation</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="674" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="381" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="675" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="382" />
       <source>Filehandling</source>
       <translation>Gestion des fichiers</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="681" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="388" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="682" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="389" />
       <source>Searching</source>
       <translation>Recherche</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="817" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="688" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="617" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="395" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="818" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="689" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="618" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="396" />
       <source>Spell checking</source>
       <translation>Correction orthographique</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="695" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="402" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="696" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="403" />
       <source>Style</source>
       <translation>Style</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="409" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="410" />
       <source>Code Checkers</source>
       <translation>Vérificateurs de code</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="702" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="416" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="703" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="417" />
       <source>Typing</source>
       <translation>Autoformat</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="423" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="424" />
       <source>Exporters</source>
       <translation>Exportation</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="430" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="431" />
       <source>Autocompletion</source>
       <translation>Autocomplétion</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="458" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="437" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="459" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="438" />
       <source>QScintilla</source>
       <translation>QScintilla</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="514" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="465" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="444" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="515" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="466" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="445" />
       <source>Jedi</source>
       <translation type="unfinished">Jedi</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="451" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="452" />
       <source>Calltips</source>
       <translation>Calltips</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="709" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="472" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="710" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="473" />
       <source>Highlighters</source>
       <translation>Analyseurs syntaxiques</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="716" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="479" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="717" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="480" />
       <source>Filetype Associations</source>
       <translation>Types de fichiers</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="723" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="486" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="724" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="487" />
       <source>Styles</source>
       <translation>Styles</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="730" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="493" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="731" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="494" />
       <source>Keywords</source>
       <translation>Mots-clef</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="737" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="500" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="738" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="501" />
       <source>Properties</source>
       <translation>Propriétés</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="507" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="508" />
       <source>Mouse Click Handlers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="520" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="521" />
       <source>Help</source>
       <translation>Aide</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="789" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="522" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="790" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="523" />
       <source>Help Documentation</source>
       <translation>Sources de documentation</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="529" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="530" />
       <source>Help Viewers</source>
       <translation>Visionneurs d'aide</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="550" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="536" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="551" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="537" />
       <source>Project</source>
       <translation>Projet</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="543" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="544" />
       <source>Project Viewer</source>
       <translation>Gestionnaire de projet</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="557" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="558" />
       <source>Multiproject</source>
       <translation>Multi-projet</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="953" />
       <location filename="../Preferences/ConfigurationDialog.py" line="921" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="889" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="858" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="761" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="646" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="571" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="564" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="890" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="859" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="762" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="647" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="572" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="565" />
       <source>Interface</source>
       <translation>Interface</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="578" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="579" />
       <source>Viewmanager</source>
       <translation>Gestionnaire d'affichage</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="589" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="590" />
       <source>Web Browser</source>
       <translation>Navigateur Web</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="796" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="596" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="797" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="597" />
       <source>Appearance</source>
       <translation>Apparence</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="803" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="603" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="804" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="604" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="810" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="610" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="811" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="611" />
       <source>VirusTotal Interface</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1007" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1039" />
       <source>Enter search text...</source>
       <translation>Entrer le texte de recherche...</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1080" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1112" />
       <source>Preferences</source>
       <translation>Préférences</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1086" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1118" />
       <source>Please select an entry of the list 
 to display the configuration page.</source>
       <translation>Choisir une entrée dans la liste
 pour afficher la page de configuration.</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1163" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1195" />
       <source>Configuration Page Error</source>
       <translation>Erreur de la page de configuration</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1164" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1196" />
       <source>&lt;p&gt;The configuration page &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La page de configuration &lt;b&gt;{0}&lt;/b&gt; n'a pas pu être chargée.&lt;/p&gt;</translation>
     </message>
@@ -10534,26 +10562,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Add allowed host</source>
       <translation>Ajouter un hôte autorisé</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Entrer l'adresse IP d'un hôte autorisé</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
+      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
+      <translation>&lt;p&gt;L'adresse entrée &lt;b&gt;{0}&lt;/b&gt; n'est pas une adresse IP v4 ou IP v6 valide. Annulation...&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
-      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
-      <translation>&lt;p&gt;L'adresse entrée &lt;b&gt;{0}&lt;/b&gt; n'est pas une adresse IP v4 ou IP v6 valide. Annulation...&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
       <source>Edit allowed host</source>
       <translation>Éditer un hôte autorisé</translation>
     </message>
@@ -12071,42 +12099,42 @@
   <context>
     <name>DownloadManager</name>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="111" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="113" />
       <source>Open</source>
       <translation>Ouvrir</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="117" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="119" />
       <source>Cancel</source>
       <translation>Annuler</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="122" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="124" />
       <source>Open Containing Folder</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="125" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="127" />
       <source>Go to Download Page</source>
       <translation>Aller à la page de téléchargement</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="126" />
-      <source>Copy Download Link</source>
-      <translation>Copier le lien de téléchargement</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/Download/DownloadManager.py" line="128" />
+      <source>Copy Download Link</source>
+      <translation>Copier le lien de téléchargement</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="130" />
       <source>Select All</source>
       <translation>Tout sélectionner</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="137" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="139" />
       <source>Remove From List</source>
       <translation>Retirer de la liste</translation>
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="172" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="174" />
       <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
       <translation>
@@ -12117,34 +12145,34 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="264" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="266" />
       <source>Suspicuous URL detected</source>
       <translation>URL suspecte détectée</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="265" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="267" />
       <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="500" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="502" />
       <source>Downloads finished</source>
       <translation>Téléchargements terminés</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="501" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="503" />
       <source>All files have been downloaded.</source>
       <translation>Tous les fichiers ont été téléchargés.</translation>
     </message>
     <message>
       <location filename="../WebBrowser/Download/DownloadManager.ui" line="0" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="586" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="509" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="588" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="511" />
       <source>Download Manager</source>
       <translation>Gestionnaire de téléchargements</translation>
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="619" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="621" />
       <source>{0}% of %n file(s) ({1}) {2}</source>
       <translation>
         <numerusform>{0}% sur %n fichier ({1}) {2}</numerusform>
@@ -12152,7 +12180,7 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="627" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="629" />
       <source>{0}% - Download Manager</source>
       <translation>{0}% - Gestionnaire de téléchargement</translation>
     </message>
@@ -12396,7 +12424,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3335" />
+      <location filename="../QScintilla/Editor.py" line="3334" />
       <location filename="../QScintilla/Editor.py" line="428" />
       <location filename="../QScintilla/Editor.py" line="413" />
       <source>Open File</source>
@@ -12468,7 +12496,7 @@
       <translation>Décommenter</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9154" />
+      <location filename="../QScintilla/Editor.py" line="9152" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12741,7 +12769,7 @@
       <translation type="unfinished">Orthographe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8272" />
+      <location filename="../QScintilla/Editor.py" line="8270" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>Correction orthographique...</translation>
@@ -12802,7 +12830,7 @@
       <translation>Éditer le point d'arrêt...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5932" />
+      <location filename="../QScintilla/Editor.py" line="5929" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>Activer le point d'arrêt</translation>
@@ -12994,398 +13022,398 @@
       <translation>Impression abandonnée</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3277" />
+      <location filename="../QScintilla/Editor.py" line="3276" />
       <source>File Modified</source>
       <translation>Fichier Modifié</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3278" />
+      <location filename="../QScintilla/Editor.py" line="3277" />
       <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="3336" />
+      <location filename="../QScintilla/Editor.py" line="3335" />
       <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="3511" />
+      <location filename="../QScintilla/Editor.py" line="3492" />
+      <location filename="../QScintilla/Editor.py" line="3454" />
+      <source>Save File</source>
+      <translation>Enregistrer Fichier</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="3455" />
+      <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="3512" />
-      <location filename="../QScintilla/Editor.py" line="3493" />
-      <location filename="../QScintilla/Editor.py" line="3455" />
-      <source>Save File</source>
-      <translation>Enregistrer Fichier</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3456" />
-      <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="3513" />
       <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="3649" />
+      <location filename="../QScintilla/Editor.py" line="3646" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3650" />
+      <location filename="../QScintilla/Editor.py" line="3647" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5106" />
+      <location filename="../QScintilla/Editor.py" line="5103" />
       <source>Autocompletion</source>
       <translation>Autocompletion</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5107" />
+      <location filename="../QScintilla/Editor.py" line="5104" />
       <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="5235" />
+      <location filename="../QScintilla/Editor.py" line="5232" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5236" />
+      <location filename="../QScintilla/Editor.py" line="5233" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5528" />
+      <location filename="../QScintilla/Editor.py" line="5525" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5529" />
+      <location filename="../QScintilla/Editor.py" line="5526" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5936" />
+      <location filename="../QScintilla/Editor.py" line="5933" />
       <source>Disable breakpoint</source>
       <translation>Désactiver le point d'arrêt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6315" />
+      <location filename="../QScintilla/Editor.py" line="6312" />
       <source>Code Coverage</source>
       <translation>Code Coverage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6316" />
+      <location filename="../QScintilla/Editor.py" line="6313" />
       <source>Please select a coverage file</source>
       <translation>Sélectionner un fichier coverage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6391" />
-      <location filename="../QScintilla/Editor.py" line="6383" />
+      <location filename="../QScintilla/Editor.py" line="6388" />
+      <location filename="../QScintilla/Editor.py" line="6380" />
       <source>Show Code Coverage Annotations</source>
       <translation>Afficher les annotations de Code Coverage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6384" />
+      <location filename="../QScintilla/Editor.py" line="6381" />
       <source>All lines have been covered.</source>
       <translation>Toutes les lignes ont été executées.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6392" />
+      <location filename="../QScintilla/Editor.py" line="6389" />
       <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="6496" />
+      <location filename="../QScintilla/Editor.py" line="6493" />
       <source>Profile Data</source>
       <translation>Profiler de données</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6497" />
+      <location filename="../QScintilla/Editor.py" line="6494" />
       <source>Please select a profile file</source>
       <translation>Sélectionner un fichier profile</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6658" />
-      <location filename="../QScintilla/Editor.py" line="6652" />
+      <location filename="../QScintilla/Editor.py" line="6655" />
+      <location filename="../QScintilla/Editor.py" line="6649" />
       <source>Syntax Error</source>
       <translation>Erreur de syntaxe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6659" />
+      <location filename="../QScintilla/Editor.py" line="6656" />
       <source>No syntax error message available.</source>
       <translation>Aucun message d'erreur de syntaxe..</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
-      <location filename="../QScintilla/Editor.py" line="6864" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
+      <location filename="../QScintilla/Editor.py" line="6863" />
       <source>Warning</source>
       <translation>Warning</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
       <source>No warning messages available.</source>
       <translation>Pas de message d'alerte disponible.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6934" />
+      <location filename="../QScintilla/Editor.py" line="6933" />
       <source>Style: {0}</source>
       <translation>Style : {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6937" />
+      <location filename="../QScintilla/Editor.py" line="6936" />
       <source>Warning: {0}</source>
       <translation>Alerte : {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6944" />
+      <location filename="../QScintilla/Editor.py" line="6943" />
       <source>Error: {0}</source>
       <translation>Erreur : {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Macro Name</source>
       <translation>Nom de la macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Select a macro name:</source>
       <translation>Sélectionner un nom de macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7077" />
+      <location filename="../QScintilla/Editor.py" line="7076" />
       <source>Load macro file</source>
       <translation>Charger un fichier macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7123" />
-      <location filename="../QScintilla/Editor.py" line="7079" />
+      <location filename="../QScintilla/Editor.py" line="7122" />
+      <location filename="../QScintilla/Editor.py" line="7078" />
       <source>Macro files (*.macro)</source>
       <translation>Fichier Macro (*.macro)</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7100" />
+      <location filename="../QScintilla/Editor.py" line="7090" />
+      <source>Error loading macro</source>
+      <translation>Erreur lors du chargement de la macro</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7091" />
+      <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="7101" />
-      <location filename="../QScintilla/Editor.py" line="7091" />
-      <source>Error loading macro</source>
-      <translation>Erreur lors du chargement de la macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7092" />
-      <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="7102" />
       <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="7121" />
+      <location filename="../QScintilla/Editor.py" line="7120" />
       <source>Save macro file</source>
       <translation>Enregistrer le fichier macro</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7138" />
+      <source>Save macro</source>
+      <translation>Enregistrer la macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7139" />
-      <source>Save macro</source>
-      <translation>Enregistrer la macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7140" />
       <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="7154" />
+      <source>Error saving macro</source>
+      <translation>Erreur lors de l'enregistrement de la macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7155" />
-      <source>Error saving macro</source>
-      <translation>Erreur lors de l'enregistrement de la macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7156" />
       <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="7168" />
+      <source>Start Macro Recording</source>
+      <translation>Démarrer l'enregistrement de la macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7169" />
-      <source>Start Macro Recording</source>
-      <translation>Démarrer l'enregistrement de la macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7170" />
       <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="7195" />
+      <source>Macro Recording</source>
+      <translation>Enregistrement de macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7196" />
-      <source>Macro Recording</source>
-      <translation>Enregistrement de macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation>Entrer le nom de la macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7348" />
+      <location filename="../QScintilla/Editor.py" line="7346" />
       <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="7354" />
+      <location filename="../QScintilla/Editor.py" line="7352" />
       <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="7361" />
+      <location filename="../QScintilla/Editor.py" line="7359" />
       <source>File changed</source>
       <translation>Fichier modifié</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7411" />
+      <location filename="../QScintilla/Editor.py" line="7409" />
       <source>{0} (ro)</source>
       <translation type="unfinished">{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7716" />
+      <location filename="../QScintilla/Editor.py" line="7714" />
       <source>Drop Error</source>
       <translation>Erreur de suppression</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7717" />
+      <location filename="../QScintilla/Editor.py" line="7715" />
       <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="7735" />
+      <source>Resources</source>
+      <translation>Ressources</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7737" />
-      <source>Resources</source>
-      <translation>Ressources</translation>
+      <source>Add file...</source>
+      <translation>Ajouter un fichier...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7738" />
+      <source>Add files...</source>
+      <translation>Ajouter des fichiers...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="7739" />
-      <source>Add file...</source>
-      <translation>Ajouter un fichier...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7740" />
-      <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="7741" />
-      <source>Add aliased file...</source>
-      <translation>Ajouter un fichier alias...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>Ajouter une ressource localisée...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7746" />
+      <location filename="../QScintilla/Editor.py" line="7744" />
       <source>Add resource frame</source>
       <translation>Ajouter un cadre ressource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7765" />
+      <location filename="../QScintilla/Editor.py" line="7763" />
       <source>Add file resource</source>
       <translation>Ajoute un fichier ressource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7777" />
       <source>Add file resources</source>
       <translation>Ajoute des fichiers ressources</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7797" />
+      <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7795" />
       <source>Add aliased file resource</source>
       <translation>Ajoute un alias de fichier ressource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7804" />
+      <location filename="../QScintilla/Editor.py" line="7802" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7879" />
+      <location filename="../QScintilla/Editor.py" line="7877" />
       <source>Package Diagram</source>
       <translation>Diagramme de package</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7880" />
+      <location filename="../QScintilla/Editor.py" line="7878" />
       <source>Include class attributes?</source>
       <translation>Inclure les attributs de classes ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7900" />
+      <location filename="../QScintilla/Editor.py" line="7898" />
       <source>Imports Diagram</source>
       <translation>Diagramme des modules</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7901" />
+      <location filename="../QScintilla/Editor.py" line="7899" />
       <source>Include imports from external modules?</source>
       <translation>Inclure l'importation de modules externes?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7920" />
+      <location filename="../QScintilla/Editor.py" line="7918" />
       <source>Application Diagram</source>
       <translation>Diagramme de l'application</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7921" />
+      <location filename="../QScintilla/Editor.py" line="7919" />
       <source>Include module names?</source>
       <translation>Inclure les noms de modules ?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="8274" />
+      <source>Add to dictionary</source>
+      <translation>Ajouter au dictionnaire</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8276" />
-      <source>Add to dictionary</source>
-      <translation>Ajouter au dictionnaire</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>Tout ignorer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8696" />
+      <location filename="../QScintilla/Editor.py" line="8694" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8697" />
+      <location filename="../QScintilla/Editor.py" line="8695" />
       <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="8790" />
+      <location filename="../QScintilla/Editor.py" line="8788" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8791" />
+      <location filename="../QScintilla/Editor.py" line="8789" />
       <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="8887" />
+      <location filename="../QScintilla/Editor.py" line="8885" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8893" />
+      <location filename="../QScintilla/Editor.py" line="8891" />
       <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="8961" />
+      <location filename="../QScintilla/Editor.py" line="8959" />
       <source>EditorConfig Properties</source>
       <translation>Propriétés d'EditorConfig</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8962" />
+      <location filename="../QScintilla/Editor.py" line="8960" />
       <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>
@@ -15008,7 +15036,7 @@
   <context>
     <name>EditorHighlightersPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="144" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="145" />
       <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="51" />
       <source>Alternative</source>
       <translation>Alternatif</translation>
@@ -20891,8 +20919,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1589" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1573" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1591" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1575" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="196" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -20903,7 +20931,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1674" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1676" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="203" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -20954,8 +20982,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1673" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1632" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1634" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="363" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
@@ -21066,17 +21094,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1574" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1576" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1588" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1590" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1633" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1635" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -21693,27 +21721,27 @@
       <translation>{0} souhaite capturer l'audio et la vidéo de votre écran.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="72" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="67" />
       <source>{0} wants to use desktop notifications.</source>
       <translation>{0} souhaite utiliser les notifications de bureau.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="98" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="92" />
       <source>Remember</source>
       <translation>Se rappeler</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="100" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="94" />
       <source>Allow</source>
       <translation>Autoriser</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="101" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="95" />
       <source>Deny</source>
       <translation>Refuser</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="126" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="120" />
       <source>{0} wants to use an unknown feature.</source>
       <translation>{0} souhaite utiliser une fonction inconnue.</translation>
     </message>
@@ -21930,7 +21958,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="486" />
+      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="487" />
       <source>Error loading feed</source>
       <translation>Erreur lors du chargement du flux</translation>
     </message>
@@ -23195,7 +23223,7 @@
       <translation>Le processus git a terminé avec le code de sortie {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1643" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="213" />
       <source>The git process did not finish within 30s.</source>
       <translation>Le processus git n'a pas terminé dans les 30s.</translation>
@@ -23216,158 +23244,158 @@
       <translation>Le répertoire projet n'a pu être créé.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="281" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="283" />
       <source>Creating Git repository</source>
       <translation>Création du dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="296" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="298" />
       <source>Adding files to Git repository</source>
       <translation>Ajout de fichiers au dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="305" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
       <source>Initial commit to Git repository</source>
       <translation>Commit initial au dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="333" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="335" />
       <source>Cloning project from a Git repository</source>
       <translation>Clonage du projet à partir du dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="428" />
       <source>Commit Changes</source>
       <translation>Commit des modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="429" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished">Ce commit affecte des fichiers qui ont des modifications non enregistrées. Faut-il poursuivre le commit ?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="485" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="546" />
       <source>Switch</source>
       <translation>Basculer de version</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="545" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="547" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Voulez-vous vraiment basculer vers &lt;b&gt;{0}&lt;/b&gt; ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="575" />
       <source>Synchronizing with the Git repository</source>
       <translation>En cours de synchronisation avec le dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="619" />
       <source>Adding files/directories to the Git repository</source>
       <translation>Ajout en cours des fichiers/répertoires dans le dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="691" />
       <source>Removing files/directories from the Git repository</source>
       <translation>Suppression en cours des fichiers/répertoires du dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="754" />
       <source>Renaming {0}</source>
       <translation>Renommage {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="876" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="929" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="918" />
       <source>Revert changes</source>
       <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="919" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="930" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="936" />
       <source>Reverting changes</source>
       <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="988" />
       <source>Merging</source>
       <translation type="unfinished">Fusion en cours</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1012" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1016" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1228" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1232" />
       <source>Git Command</source>
       <translation type="unfinished">Commande Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1330" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1336" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&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;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1334" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&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;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1340" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&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;Étiquettes&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&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;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1346" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&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;Étiquettes&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1352" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&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;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1357" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Auteur&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1356" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1362" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1361" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1367" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1366" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1372" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1371" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&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;Sujet&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1377" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&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;Sujet&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1383" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -23382,459 +23410,459 @@
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1458" />
       <source>Create {0} file</source>
       <translation>Créer le fichier {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; existe déjà. L'écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1517" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1500" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1506" />
       <source>Git Copy</source>
       <translation type="unfinished">Copie Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1507" />
       <source>&lt;p&gt;Copying the directory &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Échec de la copie du répertoire &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
       <source>&lt;p&gt;Copying the file &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Échec de la copie du fichier &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2726" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1645" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Impossible de lancer le processus {0}. Assurez-vous qu'il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1707" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1694" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1683" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1713" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1689" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1708" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1714" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1760" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1766" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1796" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1802" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1835" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1841" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1869" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1894" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1924" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1951" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1957" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1954" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1960" />
       <source>Apply patch files</source>
       <translation type="unfinished">Appliquer les fichiers patch</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2034" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2040" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2284" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2326" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2347" />
       <source>Current Branch</source>
       <translation>Branche actuelle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2348" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La branche actuelle est &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2376" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2378" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2395" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2430" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2459" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2525" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2546" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2828" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2672" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2725" />
       <source>Process Generation Error</source>
       <translation>Erreur du processus</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2771" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2754" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2736" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2738" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2755" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2772" />
       <source>&lt;p&gt;The 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;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être écrit.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2791" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2819" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2793" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2817" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3161" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2991" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3047" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3048" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3183" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3240" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3271" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3294" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3318" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3396" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3598" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3436" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3599" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3559" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3510" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3437" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3509" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3469" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3483" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3558" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3547" />
       <source>Create Branch</source>
       <translation>Créer une branche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3548" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3573" />
       <source>Creating branch</source>
       <translation>Création en cours de la branche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3609" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3610" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3620" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3647" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3707" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3729" />
       <source>Verifying the integrity of the Git repository</source>
       <translation>Vérification en cours de l'intégrité du dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistiques&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3798" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3804" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3815" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3821" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3839" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;Pas de statistique disponible.&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3905" />
       <source>Creating Archive</source>
       <translation>Création en cours de l'archive</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3945" />
       <source>Add Submodule</source>
       <translation>Ajouter un sous-module</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
       <source>List Submodules</source>
       <translation>Lister les sous-modules</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4012" />
       <source>No submodules defined for the project.</source>
       <translation>Pas de sous-modules définis pour ce projet.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
-      <source>All</source>
-      <translation>Tous</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
-      <source>Submodule Path</source>
-      <translation>Chemin de sous-module</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
+      <source>All</source>
+      <translation>Tous</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4029" />
+      <source>Submodule Path</source>
+      <translation>Chemin de sous-module</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4030" />
       <source>Select a submodule path:</source>
       <translation>Sélectionner un chemin de sous-module :</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4079" />
       <source>Initialize Submodules</source>
       <translation>Initialiser les sous-modules</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4112" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4143" />
       <source>Update Submodules</source>
       <translation>Mettre à jour les sous-modules</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Synchronize Submodules</source>
       <translation>Synchroniser les sous-modules</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4266" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -24247,12 +24275,12 @@
       <translation>Impossible de lancer le processus {0}. Assurez-vous qu'il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="213" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="214" />
       <source>Changed by skipped commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="215" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="216" />
       <source>Commit cannot be skipped</source>
       <translation type="unfinished" />
     </message>
@@ -25358,7 +25386,7 @@
       <translation>Étiquetter le commit sélectionné</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1896" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1891" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="340" />
       <source>Branch</source>
       <translation>Branche</translation>
@@ -25379,9 +25407,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1957" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1868" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1952" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1840" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="356" />
       <source>Switch</source>
       <translation>Basculer de version</translation>
@@ -25392,7 +25420,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1979" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="364" />
       <source>Show Short Log</source>
       <translation type="unfinished" />
@@ -25413,125 +25441,125 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="662" />
       <source>The git process did not finish within 30s.</source>
       <translation>Le processus git n'a pas terminé dans les 30s.</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="664" />
+      <source>Could not start the git executable.</source>
+      <translation>Ne peut démarrer le processus git.</translation>
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="667" />
-      <source>Could not start the git executable.</source>
-      <translation>Ne peut démarrer le processus git.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="670" />
       <source>Git Error</source>
       <translation>Erreur Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="799" />
       <source>{0} ({1}%)</source>
       <comment>action, confidence</comment>
       <translation>{0} ({1}%)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="869" />
       <source>Process Generation Error</source>
       <translation>Erreur du processus</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="874" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="870" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Impossible de lancer le processus {0}. Assurez-vous qu'il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1345" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1342" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1359" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1356" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1800" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1958" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1806" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1953" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1801" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1985" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1980" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841" />
       <source>Select a branch</source>
       <translation>Choisir une branche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1935" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1897" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892" />
       <source>Select a default branch</source>
       <translation>Choisir la branche par défaut</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1934" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1929" />
       <source>Branch &amp; Switch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2159" />
       <source>Find Commit</source>
       <translation>Trouver le commit</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2160" />
       <source>'{0}' was not found.</source>
       <translation>'{0}' n'a pas été trouvé.</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2209" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2204" />
       <source>Differences</source>
       <translation>Différences</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2221" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2216" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2237" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2232" />
       <source>Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2262" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2257" />
       <source>There is no difference.</source>
       <translation>Aucune différence.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2429" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2412" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2424" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2389" />
       <source>Save Diff</source>
       <translation>Enregistrer Diff</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2391" />
       <source>Patch Files (*.diff)</source>
       <translation>Fichiers Patch (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2408" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier patch &lt;b&gt;{0}&lt;/b&gt; existe déjà. L'écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2425" />
       <source>&lt;p&gt;The patch 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 patch &lt;b&gt;{0}&lt;/b&gt; ne peut être enregistrer.&lt;br&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
@@ -28935,7 +28963,7 @@
       <translation>Impossible de lancer le processus {0}. Assurez-vous qu'il est bien dans le chemin de recherche.</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="383" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="384" />
       <source>%n file(s) changed</source>
       <translation>
         <numerusform>%n fichier modifié</numerusform>
@@ -28943,7 +28971,7 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="386" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="387" />
       <source>%n line(s) inserted</source>
       <translation>
         <numerusform>%n ligne insérée</numerusform>
@@ -28951,7 +28979,7 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="390" />
       <source>%n line(s) deleted</source>
       <translation>
         <numerusform>%n ligne supprimée</numerusform>
@@ -29115,7 +29143,7 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195" />
       <source>Commit</source>
       <translation>Commit</translation>
@@ -29146,7 +29174,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210" />
       <source>Add</source>
       <translation>Ajouter</translation>
@@ -29177,7 +29205,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226" />
       <source>Differences</source>
       <translation>Différences</translation>
@@ -29198,7 +29226,7 @@
       <translation type="unfinished">Affiche les différences côte à côte de l'entrée sélectionnée dans une fenêtre séparée</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244" />
       <source>Revert</source>
       <translation>Recouvrir</translation>
@@ -29209,7 +29237,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253" />
       <source>Forget Missing</source>
       <translation type="unfinished" />
@@ -29220,7 +29248,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="837" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257" />
       <source>Restore Missing</source>
       <translation type="unfinished" />
@@ -29267,98 +29295,98 @@
       <translation>Impossible de lancer le processus {0}. Assurez-vous qu'il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="605" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="468" />
       <source>all</source>
       <translation>tout</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="676" />
       <source>There are no entries selected to be committed.</source>
       <translation type="unfinished">Il n'y a pas d'entrée sélectionnée à committer.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="719" />
       <source>There are no unversioned entries available/selected.</source>
       <translation>Aucune entrée "non-versionnée" disponible/sélectionnée.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="741" />
-      <source>Stage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="742" />
+      <source>Stage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="743" />
       <source>There are no stageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="765" />
-      <source>Unstage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="766" />
+      <source>Unstage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="767" />
       <source>There are no unstageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="791" />
       <source>There are no missing entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810" />
       <source>There are no uncommitted, unstaged changes available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="874" />
       <source>There are no uncommitted changes available/selected.</source>
       <translation>Il n'y a pas de modification non commitée disponible/sélectionnée.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="923" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="899" />
-      <source>Working Tree to Staging Area</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
-      <source>Staging Area to HEAD Commit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="924" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
+      <source>Working Tree to Staging Area</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="901" />
+      <source>Staging Area to HEAD Commit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="925" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="902" />
       <source>Working Tree to HEAD Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="928" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="905" />
-      <source>Differences Side-by-Side</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="929" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="906" />
+      <source>Differences Side-by-Side</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="907" />
       <source>Select the compare method.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1239" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1240" />
       <source>Revert selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1241" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1242" />
       <source>Revert hunk</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1247" />
       <source>Are you sure you want to revert the selected changes?</source>
       <translation type="unfinished" />
     </message>
@@ -30016,12 +30044,12 @@
       <translation>Impossible de lancer le processus {0}. Assurez-vous qu'il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="336" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="337" />
       <source>current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="340" />
       <source>checked out in linked worktree</source>
       <translation type="unfinished" />
     </message>
@@ -30511,101 +30539,101 @@
       <translation type="unfinished">Impossible de lancer le processus {0}. Assurez-vous qu'il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="516" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="533" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="552" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="535" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="553" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="576" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="577" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="578" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="612" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="595" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="597" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="614" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="634" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="636" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="642" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="669" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="723" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="699" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="701" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="725" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="750" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="762" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="752" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="763" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -30661,27 +30689,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="199" />
+      <location filename="../Globals/__init__.py" line="197" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="202" />
+      <location filename="../Globals/__init__.py" line="200" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="205" />
+      <location filename="../Globals/__init__.py" line="203" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="208" />
+      <location filename="../Globals/__init__.py" line="206" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="211" />
+      <location filename="../Globals/__init__.py" line="209" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -31480,37 +31508,37 @@
   <context>
     <name>HelpSearchWidget</name>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="166" />
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
       <source>Open Link</source>
       <translation>Ouvrir le lien</translation>
     </message>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="168" />
-      <source>Open Link in New Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
-      <source>Open Link in Background Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="171" />
-      <source>Open Link in New Tab</source>
-      <translation>Ouvrir le lien dans un nouvel onglet</translation>
+      <source>Open Link in New Page</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="172" />
-      <source>Open Link in Background Tab</source>
-      <translation>Ourvrir le lien dans un onglet en arrière plan</translation>
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="173" />
-      <source>Open Link in New Window</source>
-      <translation>Ouvrir le lien dans une nouvelle fenêtre</translation>
+      <source>Open Link in Background Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="174" />
+      <source>Open Link in New Tab</source>
+      <translation>Ouvrir le lien dans un nouvel onglet</translation>
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="175" />
+      <source>Open Link in Background Tab</source>
+      <translation>Ourvrir le lien dans un onglet en arrière plan</translation>
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="176" />
+      <source>Open Link in New Window</source>
+      <translation>Ouvrir le lien dans une nouvelle fenêtre</translation>
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="178" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -31835,104 +31863,104 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="442" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="443" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished">Documentation Python 3</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Documentation Qt5</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Documentation Qt5 {6 ?}</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished">Documentation Python 3</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">Documentation PyQt5</translation>
+      <source>Qt5 Documentation</source>
+      <translation type="unfinished">Documentation Qt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>PyQt6 Documentation</source>
-      <translation type="unfinished">Documentation PyQt5 {6 ?}</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Documentation Qt5 {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished">Documentation PySide2</translation>
+      <source>PyQt5 Documentation</source>
+      <translation type="unfinished">Documentation PyQt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
+      <source>PyQt6 Documentation</source>
+      <translation type="unfinished">Documentation PyQt5 {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished">Documentation PySide2</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished">Documentation PySide2 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="506" />
-      <source>Open HTML File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <source>Open HTML File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
       <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="699" />
       <source>Help Engine</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="723" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="732" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="734" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="759" />
       <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="762" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="767" />
       <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="860" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="840" />
       <source>Clear History</source>
       <translation type="unfinished">Effacer l'historique</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="968" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="970" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1026" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1028" />
       <source>Filtered by: </source>
       <translation type="unfinished">Filtré par : </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1062" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1057" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1064" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
       <source>Unfiltered</source>
       <translation type="unfinished">non filtré</translation>
     </message>
@@ -33347,446 +33375,446 @@
       <translation>Le répertoire projet n'a pu être créé.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="311" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="313" />
       <source>Creating Mercurial repository</source>
       <translation>Création en cour d'un répertoire Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="330" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="332" />
       <source>Initial commit to Mercurial repository</source>
       <translation>Commit initial vers le dépot Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="368" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="370" />
       <source>Cloning project from a Mercurial repository</source>
       <translation>Clonage du projet à partir d'un dépot Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="468" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="470" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="469" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="471" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished">Ce commit affecte des fichiers qui ont des modifications non enregistrées. Faut-il poursuivre le commit ?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="531" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="533" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="623" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="625" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation>Synchronisation en cours avec le dépot Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="653" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation>Ajouter des fichiers/dossier au dépot Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="708" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation>Suppression en cours des fichiers/dossiers à partir du dépot Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="754" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="756" />
       <source>Renaming {0}</source>
       <translation type="unfinished">Renommage {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="879" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="881" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="927" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="916" />
       <source>Revert changes</source>
       <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="917" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="928" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="934" />
       <source>Reverting changes</source>
       <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="977" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="979" />
       <source>Merging</source>
       <translation>Fusion en cours</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1017" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1007" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1009" />
       <source>Re-Merge</source>
       <translation type="unfinished">Re-fusionner</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1008" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1010" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1020" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1021" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1023" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1044" />
       <source>Current branch tip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1216" />
       <source>Mercurial command</source>
       <translation>Commande Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1373" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1377" />
       <source>Copying {0}</source>
       <translation>Copie en cours {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1612" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1600" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1591" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1604" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1595" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1613" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1617" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; n'a pas pu être lu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2274" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2263" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2253" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1688" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2267" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2257" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1692" />
       <source>Apply changegroups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1691" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1695" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1733" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1875" />
       <source>Marking as 'unresolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1877" />
       <source>Marking as 'resolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1895" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1899" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1922" />
       <source>Creating branch in the Mercurial repository</source>
       <translation>Création en cours d'une branche sur le dépot Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1930" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation>Nouvelle branche créée &lt;{0}&gt;.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
       <source>Showing current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2022" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2026" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation>Vérification en cours de l'intégrité du dépot Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2035" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2039" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2050" />
       <source>Showing aliases for remote repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2061" />
       <source>Recovering from interrupted transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2068" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2072" />
       <source>Identifying project directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2114" />
       <source>Create .hgignore file</source>
       <translation>Créer un fichier .hgignore</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2111" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2115" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. L'écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2212" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2186" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2216" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2190" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2172" />
       <source>Create changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2170" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2174" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2187" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2191" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Preview changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2255" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2259" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2232" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2264" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2268" />
       <source>Shall the working directory be updated?</source>
       <translation>Faut-il mettre à jour le répertoire de travail ?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2300" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2320" />
       <source>Mercurial Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
       <source>Removing files from the Mercurial repository only</source>
       <translation>Supprimer les fichiers de dépot Mercurial uniquement</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2383" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2364" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2387" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2368" />
       <source>Backing out changeset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2365" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
       <source>No revision given. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2403" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2398" />
+      <source>Rollback last transaction</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2399" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2394" />
-      <source>Rollback last transaction</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2465" />
       <source>Import Patch</source>
       <translation>Importer un patch</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2513" />
       <source>Export Patches</source>
       <translation>Exporter des patches</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2553" />
       <source>Change Phase</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2607" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2646" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2656" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2662" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2666" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2685" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2689" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2703" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2700" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2704" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2789" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2769" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2793" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2762" />
       <source>Add Sub-repository</source>
       <translation>Ajouter un sous-dépot</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2828" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2759" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2832" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2774" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2846" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2790" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2850" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2794" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2827" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2813" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2849" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2831" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2817" />
       <source>Remove Sub-repositories</source>
       <translation>Supprimer un sous-répertoire</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2818" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3062" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2925" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3066" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2929" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2930" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3063" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3067" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3179" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3183" />
       <source>Mercurial Bookmark</source>
       <translation>Signet Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3195" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3199" />
       <source>Delete Bookmark</source>
       <translation>Supprimer le signet</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3200" />
       <source>Select the bookmark to be deleted:</source>
       <translation>Selectionner le signet à supprimer :</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3210" />
       <source>Delete Mercurial Bookmark</source>
       <translation>Supprimer le signet Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3235" />
       <source>Rename Mercurial Bookmark</source>
       <translation>Renommer le signet Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3268" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3272" />
       <source>Move Mercurial Bookmark</source>
       <translation>Déplacer le signet Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3341" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3345" />
       <source>Pull Bookmark</source>
       <translation>Récuperer le signet</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3342" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
       <source>Select the bookmark to be pulled:</source>
       <translation>Sélectionner le signet à récuperer:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3354" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3358" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation>Récupérant le signet d'un dépôt Mercurial distant</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3380" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3384" />
       <source>Push Bookmark</source>
       <translation>Envoyer signet</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3385" />
       <source>Select the bookmark to be push:</source>
       <translation>Sélectionner le signet à envoyer:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3396" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3400" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation>À envoyer le signet à un dépôt Mercurial distant</translation>
     </message>
@@ -34632,42 +34660,42 @@
   <context>
     <name>HgClient</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="91" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="98" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Impossible de lancer le processus {0}. Assurez-vous qu'il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="140" />
-      <source>Did not receive the 'hello' message.</source>
-      <translation>N'a pas reçu le message 'hello'.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="142" />
-      <source>Received data on unexpected channel.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="147" />
+      <source>Did not receive the 'hello' message.</source>
+      <translation>N'a pas reçu le message 'hello'.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="149" />
+      <source>Received data on unexpected channel.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="154" />
       <source>Bad 'hello' message, expected 'capabilities: ' but got '{0}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="152" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="159" />
       <source>'capabilities' message did not contain any capability.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="168" />
       <source>Bad 'hello' message, expected 'encoding: ' but got '{0}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="166" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="173" />
       <source>'encoding' message did not contain any encoding.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="377" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="385" />
       <source>For message see output dialog.</source>
       <translation type="unfinished" />
     </message>
@@ -36078,7 +36106,7 @@
       <translation>Copie depuis</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2690" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2686" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="0" />
       <source>Differences</source>
       <translation>Différences</translation>
@@ -36209,7 +36237,7 @@
       <translation>Signets</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2150" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2146" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
@@ -36266,8 +36294,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2244" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2240" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2223" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343" />
       <source>Switch</source>
       <translation>Basculer de version</translation>
@@ -36298,8 +36326,8 @@
       <translation>Déplacer le signet vers la révision sélectionnée</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2362" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1562" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2358" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1558" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371" />
       <source>Pull Changes</source>
       <translation type="unfinished" />
@@ -36356,7 +36384,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2501" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="424" />
       <source>Apply Changegroup</source>
       <translation type="unfinished" />
@@ -36387,7 +36415,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2408" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2404" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="454" />
       <source>Strip Changesets</source>
       <translation type="unfinished" />
@@ -36408,117 +36436,117 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="889" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="866" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="886" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="837" />
       <source>Mercurial Error</source>
       <translation>Erreur Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1210" />
       <source>{0} (large file)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1472" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1468" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1479" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1641" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1560" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1556" />
       <source>Pull Selected Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2409" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2363" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2245" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2151" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2498" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2405" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2359" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2147" />
       <source>The project should be reread. Do this now?</source>
       <translation>Le projet devrai être relu. Le faire maintenant ?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2224" />
       <source>Select bookmark to switch to (leave empty to use revision):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2273" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2269" />
       <source>Define Bookmark</source>
       <translation>Définir un signet</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2274" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2270" />
       <source>Enter bookmark name for changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2303" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2299" />
       <source>Move Bookmark</source>
       <translation>Déplacer un signet</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2300" />
       <source>Select the bookmark to be moved  to changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2637" />
       <source>Find Commit</source>
       <translation>Chercher le commit</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2638" />
       <source>'{0}' was not found.</source>
       <translation>'{0}' n'a pas été trouvé.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2689" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2685" />
       <source>Generating differences ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2701" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2697" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2713" />
       <source>Diff to Parent {0}{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2740" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2736" />
       <source>There is no difference.</source>
       <translation>Aucune différence.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2891" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2875" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2857" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2853" />
       <source>Save Diff</source>
       <translation>Enregistrer Diff</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2859" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2855" />
       <source>Patch Files (*.diff)</source>
       <translation>Fichiers Patch (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2876" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2872" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier patch &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2892" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2888" />
       <source>&lt;p&gt;The patch 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 patch &lt;b&gt;{0}&lt;/b&gt; ne peut être enregistré.&lt;br&gt;Rasion : {1}&lt;/p&gt;</translation>
     </message>
@@ -41409,22 +41437,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="85" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -46205,9 +46233,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <location filename="../Network/IRC/IrcWidget.py" line="266" />
       <location filename="../Network/IRC/IrcWidget.py" line="261" />
       <location filename="../Network/IRC/IrcWidget.py" line="254" />
@@ -46242,260 +46270,260 @@
       <translation>Déconnection en cours du serveur.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <source>Server found,connecting...</source>
       <translation>Serveur trouvé, connectioin en cours...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
       <source>Connected,logging in...</source>
       <translation>Conecté, login en cours...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
       <source>Server disconnected.</source>
       <translation>Serveur déconnecté.</translation>
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="607" />
+      <source>Message Error</source>
+      <translation>Message d'erreur</translation>
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="608" />
-      <source>Message Error</source>
-      <translation>Message d'erreur</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="609" />
       <source>Unknown message received from server:&lt;br/&gt;{0}</source>
       <translation>Message inconnu reçu du serveur :&lt;br/&gt;{0}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1032" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1022" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1014" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1006" />
-      <location filename="../Network/IRC/IrcWidget.py" line="651" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1030" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1020" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1012" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1004" />
+      <location filename="../Network/IRC/IrcWidget.py" line="650" />
+      <location filename="../Network/IRC/IrcWidget.py" line="642" />
+      <source>CTCP</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="643" />
-      <source>CTCP</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="644" />
       <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="652" />
+      <location filename="../Network/IRC/IrcWidget.py" line="651" />
       <source>Received unknown CTCP-{0} response from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="678" />
+      <location filename="../Network/IRC/IrcWidget.py" line="677" />
       <source>Notice</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="688" />
+      <location filename="../Network/IRC/IrcWidget.py" line="687" />
       <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
       <translation>Vous avez mis votre mode personnel à &lt;b&gt;[{0}]&lt;/b&gt;.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="692" />
+      <location filename="../Network/IRC/IrcWidget.py" line="691" />
       <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="696" />
+      <location filename="../Network/IRC/IrcWidget.py" line="695" />
       <source>Mode</source>
       <translation>Mode</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="704" />
+      <location filename="../Network/IRC/IrcWidget.py" line="703" />
       <source>You have left channel {0}.</source>
       <translation>Vous avez quitté le salon {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="716" />
+      <location filename="../Network/IRC/IrcWidget.py" line="715" />
       <source>You are now known as {0}.</source>
       <translation>Vous êtes maintenant connu en tant que {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="722" />
+      <location filename="../Network/IRC/IrcWidget.py" line="721" />
       <source>User {0} is now known as {1}.</source>
       <translation>L'utilisateur {0} est maintenant connu en tant que {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="728" />
+      <location filename="../Network/IRC/IrcWidget.py" line="727" />
       <source>Received PONG from {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="733" />
+      <location filename="../Network/IRC/IrcWidget.py" line="732" />
       <source>Server Error</source>
       <translation>Erreur du serveur</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="767" />
+      <location filename="../Network/IRC/IrcWidget.py" line="765" />
       <source>Error</source>
       <translation>Erreur</translation>
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="780" />
+      <source>Welcome</source>
+      <translation>Bienvenu</translation>
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="782" />
-      <source>Welcome</source>
-      <translation>Bienvenu</translation>
+      <source>Support</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="784" />
-      <source>Support</source>
-      <translation type="unfinished" />
+      <source>User</source>
+      <translation>Utilisateur</translation>
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="786" />
-      <source>User</source>
-      <translation>Utilisateur</translation>
+      <source>MOTD</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="788" />
-      <source>MOTD</source>
-      <translation type="unfinished" />
+      <source>Away</source>
+      <translation>Absent</translation>
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="790" />
-      <source>Away</source>
-      <translation>Absent</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="792" />
       <source>Info ({0})</source>
       <translation>Infos ({0})</translation>
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="794" />
+      <source>Message of the day</source>
+      <translation>Message du jour</translation>
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="796" />
-      <source>Message of the day</source>
-      <translation>Message du jour</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="798" />
       <source>End of message of the day</source>
       <translation>Fin du message du jour</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="801" />
+      <location filename="../Network/IRC/IrcWidget.py" line="799" />
       <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="806" />
+      <location filename="../Network/IRC/IrcWidget.py" line="804" />
       <source>Current users on {0}: {1}, max. {2}</source>
       <translation>Utilisateurs actuels sur {0}: {1}, max. {2}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="811" />
+      <location filename="../Network/IRC/IrcWidget.py" line="809" />
       <source>Current users on the network: {0}, max. {1}</source>
       <translation>Utilisateurs actuels sur le réseau : {0}, max. {1}</translation>
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="813" />
+      <source>You are no longer marked as being away.</source>
+      <translation>Vous n'êtes plus considéré comme absent.</translation>
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="815" />
-      <source>You are no longer marked as being away.</source>
-      <translation>Vous n'êtes plus considéré comme absent.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="817" />
       <source>You have been marked as being away.</source>
       <translation>Vous êtes considéré comme absent.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="947" />
-      <location filename="../Network/IRC/IrcWidget.py" line="931" />
-      <location filename="../Network/IRC/IrcWidget.py" line="880" />
+      <location filename="../Network/IRC/IrcWidget.py" line="945" />
+      <location filename="../Network/IRC/IrcWidget.py" line="929" />
+      <location filename="../Network/IRC/IrcWidget.py" line="878" />
       <source>SSL Error</source>
       <translation>Erreur SSL</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="881" />
+      <location filename="../Network/IRC/IrcWidget.py" line="879" />
       <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
-      <location filename="../Network/IRC/IrcWidget.py" line="910" />
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
-      <location filename="../Network/IRC/IrcWidget.py" line="897" />
-      <location filename="../Network/IRC/IrcWidget.py" line="889" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
+      <location filename="../Network/IRC/IrcWidget.py" line="908" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
+      <location filename="../Network/IRC/IrcWidget.py" line="895" />
+      <location filename="../Network/IRC/IrcWidget.py" line="887" />
       <source>Socket Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="890" />
+      <location filename="../Network/IRC/IrcWidget.py" line="888" />
       <source>The host was not found. Please check the host name and port settings.</source>
       <translation>L'hôte n'a pas été trouvé. Veuillez vérifier le nom d'hôte et la configuration du port.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="898" />
+      <location filename="../Network/IRC/IrcWidget.py" line="896" />
       <source>The connection was refused by the peer. Please check the host name and port settings.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
       <source>The SSL handshake failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="911" />
+      <location filename="../Network/IRC/IrcWidget.py" line="909" />
       <source>The following network error occurred:&lt;br/&gt;{0}</source>
       <translation>L'erreur réseau suivante est apparue :&lt;br/&gt;{0}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
       <source>A network error occurred.</source>
       <translation>Une erreur réseau est apparue.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="932" />
+      <location filename="../Network/IRC/IrcWidget.py" line="930" />
       <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 type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="948" />
+      <location filename="../Network/IRC/IrcWidget.py" line="946" />
       <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1007" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1005" />
       <source>Received Version request from {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1015" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1013" />
       <source>Received CTCP-PING request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1023" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1021" />
       <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1033" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1031" />
       <source>Received unknown CTCP-{0} request from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1049" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1047" />
       <source>{0} ({1})</source>
       <comment>channel name, users count</comment>
       <translation>{0}({1})</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1071" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1069" />
       <source>Critical</source>
       <translation>Critique</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1072" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1070" />
       <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
       <translation>Pas de surnom acceptable pour le serveur configuré pour &lt;b&gt;{0}&lt;/b&gt;. Déconnection en cours...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
       <source>The given nickname is already in use.</source>
       <translation>Le surnom donné est déjà utilisé.</translation>
     </message>
@@ -47506,7 +47534,7 @@
       <translation>Sélectionne un analyseur syntaxique alternatif</translation>
     </message>
     <message>
-      <location filename="../Project/LexerAssociationDialog.py" line="131" />
+      <location filename="../Project/LexerAssociationDialog.py" line="132" />
       <location filename="../Project/LexerAssociationDialog.py" line="45" />
       <source>Alternative</source>
       <translation>Alternatif</translation>
@@ -49360,13 +49388,13 @@
       <translation>Copier chemin dans le Presse-Papiers</translation>
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="485" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="487" />
       <source>Untitled {0}</source>
       <translation>SansTitre {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="627" />
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="491" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="629" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="493" />
       <source>{0} (ro)</source>
       <translation type="unfinished">{0} (ro)</translation>
     </message>
@@ -52818,317 +52846,317 @@
       <translation>&lt;b&gt;Effacer&lt;/b&gt;&lt;p&gt;Supprime tout le texte de l'éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2862" />
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
       <source>About</source>
       <translation>À propos de</translation>
     </message>
     <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
+      <source>&amp;About</source>
+      <translation>&amp;À propos de </translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2860" />
+      <source>Display information about this software</source>
+      <translation>Affiche les informations concernant le logiciel</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2862" />
-      <source>&amp;About</source>
-      <translation>&amp;À propos de </translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2864" />
-      <source>Display information about this software</source>
-      <translation>Affiche les informations concernant le logiciel</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation>&lt;b&gt;À propos de&lt;/b&gt;&lt;p&gt;Affiche certaines informations concernant le logiciel.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About Qt</source>
       <translation>À propos de Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About &amp;Qt</source>
       <translation>À propos de &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2878" />
+      <location filename="../QScintilla/MiniEditor.py" line="2874" />
       <source>Display information about the Qt toolkit</source>
       <translation>Affiche les informations concernant Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2881" />
+      <location filename="../QScintilla/MiniEditor.py" line="2877" />
       <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
       <translation>&lt;b&gt;À propos de Qt&lt;/b&gt;&lt;p&gt;Affiche les informations concernant Qt&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2890" />
+      <location filename="../QScintilla/MiniEditor.py" line="2886" />
       <source>What's This?</source>
       <translation>Qu'est-ce que c'est ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <location filename="../QScintilla/MiniEditor.py" line="2888" />
       <source>&amp;What's This?</source>
       <translation>&amp;Qu'est-ce que c'est?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2893" />
+      <location filename="../QScintilla/MiniEditor.py" line="2889" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2898" />
+      <location filename="../QScintilla/MiniEditor.py" line="2894" />
       <source>Context sensitive help</source>
       <translation>Aide contextuelle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2900" />
+      <location filename="../QScintilla/MiniEditor.py" line="2896" />
       <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="../QScintilla/MiniEditor.py" line="2918" />
+      <location filename="../QScintilla/MiniEditor.py" line="2914" />
       <source>Preferences</source>
       <translation type="unfinished">Préférences</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2920" />
+      <location filename="../QScintilla/MiniEditor.py" line="2916" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished">&amp;Préférences...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2926" />
+      <location filename="../QScintilla/MiniEditor.py" line="2922" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">Édition des préférences</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2924" />
       <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;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="../QScintilla/MiniEditor.py" line="2942" />
+      <location filename="../QScintilla/MiniEditor.py" line="2938" />
       <source>&amp;File</source>
       <translation>&amp;Fichier</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2950" />
       <source>&amp;Edit</source>
       <translation>&amp;Edition</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2964" />
+      <location filename="../QScintilla/MiniEditor.py" line="2960" />
       <source>&amp;Search</source>
       <translation type="unfinished">Re&amp;chercher</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2974" />
+      <location filename="../QScintilla/MiniEditor.py" line="2970" />
       <source>&amp;View</source>
       <translation type="unfinished">&amp;Affichage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2980" />
+      <location filename="../QScintilla/MiniEditor.py" line="2976" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished">&amp;Configuration</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2985" />
+      <location filename="../QScintilla/MiniEditor.py" line="2981" />
       <source>&amp;Help</source>
       <translation>A&amp;ide</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2997" />
+      <location filename="../QScintilla/MiniEditor.py" line="2993" />
       <source>File</source>
       <translation>Fichier</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3009" />
+      <location filename="../QScintilla/MiniEditor.py" line="3005" />
       <source>Edit</source>
       <translation>Editer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3018" />
+      <location filename="../QScintilla/MiniEditor.py" line="3014" />
       <source>Search</source>
       <translation type="unfinished">Rechercher</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3024" />
+      <location filename="../QScintilla/MiniEditor.py" line="3020" />
       <source>View</source>
       <translation type="unfinished">Affichage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3030" />
+      <location filename="../QScintilla/MiniEditor.py" line="3026" />
       <source>Settings</source>
       <translation type="unfinished">Configuration</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3033" />
+      <location filename="../QScintilla/MiniEditor.py" line="3029" />
       <source>Help</source>
       <translation>Aide</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3046" />
+      <location filename="../QScintilla/MiniEditor.py" line="3042" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3056" />
+      <location filename="../QScintilla/MiniEditor.py" line="3052" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette zone de la barre d'état affiche une indication sur les droits d'écriture des fichiers.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3065" />
+      <location filename="../QScintilla/MiniEditor.py" line="3061" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the 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.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3074" />
+      <location filename="../QScintilla/MiniEditor.py" line="3070" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the 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="../QScintilla/MiniEditor.py" line="3088" />
+      <location filename="../QScintilla/MiniEditor.py" line="3084" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3095" />
+      <location filename="../QScintilla/MiniEditor.py" line="3091" />
       <source>Ready</source>
       <translation>Prêt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <location filename="../QScintilla/MiniEditor.py" line="3166" />
       <source>eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3171" />
+      <location filename="../QScintilla/MiniEditor.py" line="3167" />
       <source>The document has unsaved changes.</source>
       <translation>Le document a des modifications non enregistrées.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="3194" />
       <source>Open File</source>
       <translation>Ouvrir Fichier</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3199" />
+      <location filename="../QScintilla/MiniEditor.py" line="3195" />
       <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/MiniEditor.py" line="3227" />
+      <location filename="../QScintilla/MiniEditor.py" line="3223" />
       <source>File loaded</source>
       <translation>Fichier chargé</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <location filename="../QScintilla/MiniEditor.py" line="3304" />
       <source>Save File</source>
       <translation>Enregistrer le fichier</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3309" />
+      <location filename="../QScintilla/MiniEditor.py" line="3305" />
       <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;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3315" />
+      <location filename="../QScintilla/MiniEditor.py" line="3311" />
       <source>File saved</source>
       <translation>Fichier enregistré</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>[*] - {0}</source>
       <translation>[*] - {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>Mini Editor</source>
       <translation>Mini éditeur</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="3655" />
-      <location filename="../QScintilla/MiniEditor.py" line="3339" />
+      <location filename="../QScintilla/MiniEditor.py" line="3680" />
+      <location filename="../QScintilla/MiniEditor.py" line="3651" />
+      <location filename="../QScintilla/MiniEditor.py" line="3335" />
       <source>Untitled</source>
       <translation>SansTitre</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
       <source>{0}[*] - {1}</source>
       <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3650" />
+      <location filename="../QScintilla/MiniEditor.py" line="3646" />
       <source>Printing...</source>
       <translation>Impression....</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3666" />
+      <location filename="../QScintilla/MiniEditor.py" line="3662" />
       <source>Printing completed</source>
       <translation>Impression terminée</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3668" />
+      <location filename="../QScintilla/MiniEditor.py" line="3664" />
       <source>Error while printing</source>
       <translation>Erreur durant l'impression</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3671" />
+      <location filename="../QScintilla/MiniEditor.py" line="3667" />
       <source>Printing aborted</source>
       <translation>Impression abandonnée</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <location filename="../QScintilla/MiniEditor.py" line="3721" />
       <source>Select all</source>
       <translation>Tout sélectionner</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3726" />
+      <location filename="../QScintilla/MiniEditor.py" line="3722" />
       <source>Deselect all</source>
       <translation>Tout déselectionner</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3739" />
+      <location filename="../QScintilla/MiniEditor.py" line="3735" />
       <source>Languages</source>
       <translation>Langages</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3742" />
+      <location filename="../QScintilla/MiniEditor.py" line="3738" />
       <source>No Language</source>
       <translation>Pas de langage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3764" />
+      <location filename="../QScintilla/MiniEditor.py" line="3760" />
       <source>Guessed</source>
       <translation>Suggestion</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3786" />
-      <location filename="../QScintilla/MiniEditor.py" line="3768" />
+      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Alternatives</source>
       <translation>Alternatives</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3783" />
+      <location filename="../QScintilla/MiniEditor.py" line="3779" />
       <source>Alternatives ({0})</source>
       <translation>Alternatives ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <location filename="../QScintilla/MiniEditor.py" line="3810" />
       <source>Pygments Lexer</source>
       <translation>Analyseur Pygments</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3815" />
+      <location filename="../QScintilla/MiniEditor.py" line="3811" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Sélectionne l'analyseur Pygments à appliquer.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4336" />
+      <location filename="../QScintilla/MiniEditor.py" line="4332" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished">Propriétés d'EditorConfig</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4337" />
+      <location filename="../QScintilla/MiniEditor.py" line="4333" />
       <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">&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>
@@ -53209,564 +53237,604 @@
   <context>
     <name>MiscellaneousChecker</name>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="15" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="16" />
       <source>coding magic comment not found</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="18" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="19" />
       <source>unknown encoding ({0}) found in coding magic comment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="21" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="23" />
       <source>copyright notice not present</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="24" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="26" />
       <source>copyright notice contains invalid author</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="27" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="30" />
       <source>"{0}" is a Python builtin and is being shadowed; consider renaming the variable</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="32" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="35" />
       <source>"{0}" is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="37" />
-      <source>unnecessary generator - rewrite as a list comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="41" />
+      <source>unnecessary generator - rewrite as a list comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="45" />
       <source>unnecessary generator - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="44" />
-      <source>unnecessary generator - rewrite as a dict comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="48" />
-      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
+      <source>unnecessary generator - rewrite as a dict comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="52" />
-      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="56" />
+      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="60" />
       <source>unnecessary {0} call - rewrite as a literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="59" />
-      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="63" />
-      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="67" />
+      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="71" />
       <source>unnecessary {0} call around {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="70" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="74" />
       <source>unnecessary {0} call within {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="73" />
-      <source>unnecessary subscript reversal of iterable within {0}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="77" />
+      <source>unnecessary subscript reversal of iterable within {0}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="81" />
       <source>unnecessary {0} literal - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="80" />
-      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="84" />
-      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
+      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="88" />
-      <source>unnecessary list call - remove the outer call to list()</source>
+      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="92" />
+      <source>unnecessary list call - remove the outer call to list()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="96" />
       <source>unnecessary {0} comprehension - rewrite using {0}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="95" />
-      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="99" />
-      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="103" />
+      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="108" />
       <source>sort keys - '{0}' should be before '{1}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="106" />
-      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="110" />
-      <source>use of 'datetime.datetime.today()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="115" />
-      <source>use of 'datetime.datetime.utcnow()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="120" />
-      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="125" />
-      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="129" />
-      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" />
-      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="112" />
+      <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="117" />
+      <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="122" />
+      <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="127" />
+      <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="131" />
+      <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" />
+      <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" />
-      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
+      <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="143" />
-      <source>use of 'datetime.date()' should be avoided.
-Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <source>multiple decorators were used to declare property '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="148" />
-      <source>use of 'datetime.date.today()' should be avoided.
-Use 'datetime.datetime.now(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="153" />
-      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="158" />
-      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="161" />
-      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="165" />
-      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="169" />
-      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="173" />
-      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="177" />
-      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="152" />
+      <source>use of 'datetime.datetime.today()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="157" />
+      <source>use of 'datetime.datetime.utcnow()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="162" />
+      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" />
+      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" />
+      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" />
+      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="181" />
-      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" />
-      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="188" />
-      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="193" />
-      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="198" />
-      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="202" />
-      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="206" />
-      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="210" />
-      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" />
-      <source>Python does not support the unary prefix increment</source>
+      <source>use of 'datetime.date()' should be avoided.
+Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" />
+      <source>use of 'datetime.date.today()' should be avoided.
+Use 'datetime.datetime.now(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" />
+      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="200" />
+      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" />
+      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="207" />
+      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="212" />
+      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="216" />
+      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="220" />
-      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="225" />
-      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="230" />
-      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="224" />
+      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" />
+      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="231" />
+      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" />
-      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
+      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" />
-      <source>do not call getattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="244" />
-      <source>do not call setattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="247" />
-      <source>do not call assert False since python -O removes these calls</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="251" />
-      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" />
-      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="262" />
-      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="267" />
-      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="272" />
-      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="276" />
-      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" />
+      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" />
+      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="254" />
+      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" />
+      <source>Python does not support the unary prefix increment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="264" />
+      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="269" />
+      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="274" />
+      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="280" />
+      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="285" />
-      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="290" />
-      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="296" />
-      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <source>do not call getattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" />
+      <source>do not call setattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" />
+      <source>do not call assert False since python -O removes these calls</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" />
+      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="301" />
-      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="306" />
-      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" />
-      <source>Function definition does not bind loop variable '{0}'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" />
-      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="322" />
-      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="327" />
-      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
+      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" />
+      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" />
+      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="329" />
+      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" />
-      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" />
-      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="347" />
-      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="352" />
-      <source>Except handlers should only be names of exception classes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="356" />
-      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" />
-      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" />
-      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="372" />
-      <source>unncessary f-string</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" />
-      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" />
-      <source>found {0} formatter</source>
+      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="340" />
+      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="345" />
+      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="350" />
+      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="355" />
+      <source>Function definition does not bind loop variable '{0}'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="359" />
+      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" />
+      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" />
+      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" />
-      <source>format string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="381" />
-      <source>docstring does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="384" />
-      <source>other string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" />
-      <source>format call uses too large index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="390" />
-      <source>format call uses missing keyword ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="393" />
-      <source>format call uses keyword arguments but no named entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="397" />
-      <source>format call uses variable arguments but no numbered entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="401" />
-      <source>format call uses implicit and explicit indexes together</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="405" />
-      <source>format call provides unused index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" />
-      <source>format call provides unused keyword ({0})</source>
+      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" />
+      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="391" />
+      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" />
+      <source>Except handlers should only be names of exception classes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="400" />
+      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="406" />
+      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" />
-      <source>logging statement uses string.format()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="414" />
-      <source>logging statement uses '%'</source>
+      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="417" />
-      <source>logging statement uses '+'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" />
-      <source>logging statement uses f-string</source>
+      <source>unncessary f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="418" />
+      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="423" />
-      <source>logging statement uses 'warn' instead of 'warning'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="426" />
-      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <source>found {0} formatter</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" />
+      <source>format string does contain unindexed parameters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="427" />
+      <source>docstring does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="430" />
-      <source>expected these __future__ imports: {0}; but got none</source>
+      <source>other string does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" />
-      <source>gettext import with alias _ found: {0}</source>
+      <source>format call uses too large index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="436" />
-      <source>print statement found</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" />
-      <source>one element tuple found</source>
+      <source>format call uses missing keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" />
+      <source>format call uses keyword arguments but no named entries</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="440" />
-      <source>mutable default argument of type {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="446" />
-      <source>mutable default argument of function call '{0}'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" />
-      <source>None should not be added at any return if function has no return value except None</source>
+      <source>format call uses variable arguments but no numbered entries</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="447" />
+      <source>format call uses implicit and explicit indexes together</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="451" />
+      <source>format call provides unused index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" />
-      <source>an explicit value at every return should be added if function has a return value except None</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="459" />
-      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <source>format call provides unused keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" />
+      <source>logging statement uses string.format()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="461" />
+      <source>logging statement uses '%'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="464" />
-      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="469" />
-      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <source>logging statement uses '+'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" />
+      <source>logging statement uses f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="470" />
+      <source>logging statement uses 'warn' instead of 'warning'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="474" />
+      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="478" />
+      <source>expected these __future__ imports: {0}; but got none</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="482" />
+      <source>gettext import with alias _ found: {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="486" />
+      <source>print statement found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="488" />
+      <source>one element tuple found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="495" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="492" />
+      <source>mutable default argument of type {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="498" />
+      <source>mutable default argument of function call '{0}'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="502" />
+      <source>None should not be added at any return if function has no return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="507" />
+      <source>an explicit value at every return should be added if function has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="512" />
+      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" />
+      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="523" />
+      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="529" />
       <source>commented code lines should be removed</source>
       <translation>les lignes de code commentées devraient être supprimées</translation>
     </message>
@@ -57003,103 +57071,103 @@
       <translation>python n'a pas pu être démarré.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="193" />
+      <location filename="../PipInterface/Pip.py" line="195" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="216" />
+      <location filename="../PipInterface/Pip.py" line="220" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="217" />
+      <location filename="../PipInterface/Pip.py" line="221" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="257" />
+      <location filename="../PipInterface/Pip.py" line="261" />
       <source>Install PIP</source>
       <translation>Installer PIP</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="304" />
+      <location filename="../PipInterface/Pip.py" line="308" />
       <source>Repair PIP</source>
       <translation>Réparer PIP</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="395" />
+      <location filename="../PipInterface/Pip.py" line="399" />
       <source>Upgrade Packages</source>
       <translation>Mise à jour des packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="441" />
+      <location filename="../PipInterface/Pip.py" line="445" />
       <source>Install Packages</source>
       <translation>Installer des packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="471" />
+      <location filename="../PipInterface/Pip.py" line="475" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="492" />
+      <location filename="../PipInterface/Pip.py" line="496" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="549" />
-      <location filename="../PipInterface/Pip.py" line="521" />
-      <location filename="../PipInterface/Pip.py" line="512" />
+      <location filename="../PipInterface/Pip.py" line="553" />
+      <location filename="../PipInterface/Pip.py" line="525" />
+      <location filename="../PipInterface/Pip.py" line="516" />
       <source>Uninstall Packages</source>
       <translation>Désinstaller les packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="550" />
-      <location filename="../PipInterface/Pip.py" line="513" />
+      <location filename="../PipInterface/Pip.py" line="554" />
+      <location filename="../PipInterface/Pip.py" line="517" />
       <source>Do you really want to uninstall these packages?</source>
       <translation>Voulez-vous vraiment désinstaller ces packages ?</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="559" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="912" />
+      <location filename="../PipInterface/Pip.py" line="916" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="938" />
-      <location filename="../PipInterface/Pip.py" line="929" />
+      <location filename="../PipInterface/Pip.py" line="942" />
+      <location filename="../PipInterface/Pip.py" line="933" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="930" />
+      <location filename="../PipInterface/Pip.py" line="934" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="962" />
-      <location filename="../PipInterface/Pip.py" line="955" />
+      <location filename="../PipInterface/Pip.py" line="966" />
+      <location filename="../PipInterface/Pip.py" line="959" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="956" />
+      <location filename="../PipInterface/Pip.py" line="960" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="987" />
-      <location filename="../PipInterface/Pip.py" line="979" />
+      <location filename="../PipInterface/Pip.py" line="991" />
+      <location filename="../PipInterface/Pip.py" line="983" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="980" />
+      <location filename="../PipInterface/Pip.py" line="984" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -57122,12 +57190,12 @@
       <translation>Erreurs</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="153" />
+      <location filename="../PipInterface/PipDialog.py" line="154" />
       <source>Process Generation Error</source>
       <translation>Erreur du processus</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="154" />
+      <location filename="../PipInterface/PipDialog.py" line="155" />
       <source>The process {0} could not be started.</source>
       <translation>Le processus {0} ne peut être démarré.</translation>
     </message>
@@ -57996,30 +58064,30 @@
       <translation>Fichiers :</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="434" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="435" />
       <source>Getting installed packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="448" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="449" />
       <source>Getting outdated packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1202" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1022" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1009" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="973" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
       <source>Search PyPI</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="975" />
       <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../PipInterface/PipPackagesWidget.py" line="989" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="990" />
       <source>%n package(s) found.</source>
       <translation>
         <numerusform>%n package trouvé.</numerusform>
@@ -58027,195 +58095,203 @@
       </translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="996" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="997" />
       <source>Showing first {0} packages found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1015" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1016" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1011" />
       <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1024" />
       <source>&lt;p&gt;There were no more results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1204" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1222" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1223" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1224" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1225" />
       <source>Install Pip</source>
       <translation>Installer pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1227" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1228" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1230" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1231" />
       <source>Repair Pip</source>
       <translation>Réparer Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1237" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1238" />
       <source>Install</source>
       <translation type="unfinished">Installer</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1402" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1239" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1403" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1240" />
       <source>Install Packages</source>
       <translation>Installer des packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1242" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1243" />
       <source>Install Local Package</source>
       <translation>Installer un package local</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1245" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1246" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1252" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1253" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1254" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1255" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1257" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1258" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1260" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1261" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1264" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1265" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1271" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1272" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1273" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1274" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1276" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1277" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1279" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1280" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1282" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1283" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1299" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1300" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1303" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1304" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1307" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1308" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1311" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1312" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1318" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1319" />
       <source>Edit User Configuration...</source>
       <translation>Éditer la configuration utilisateur...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1321" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1322" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1326" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1327" />
       <source>Configure...</source>
       <translation>Configuration...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1545" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1532" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1521" />
-      <source>Edit Configuration</source>
-      <translation>Éditer la configuration</translation>
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1546" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1533" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1522" />
+      <source>Edit Configuration</source>
+      <translation>Éditer la configuration</translation>
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1547" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1534" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1523" />
       <source>No valid configuration path determined. Aborting</source>
       <translation>Pas de chemin de configuration déterminé. Annulation</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1714" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1736" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1735" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1757" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1760" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1862" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1843" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1890" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1865" />
       <source>unknown</source>
       <translation type="unfinished">inconnu</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1887" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
   </context>
   <context>
+    <name>PipPackagesWindow</name>
+    <message>
+      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <source>Manage Packages</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>PipPage</name>
     <message>
       <location filename="../Preferences/ConfigurationPages/PipPage.py" line="31" />
@@ -59616,7 +59692,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="471" />
       <source>Variable Name</source>
       <translation>Nom de variable</translation>
     </message>
@@ -61252,8 +61328,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6671" />
-      <location filename="../Project/Project.py" line="6642" />
+      <location filename="../Project/Project.py" line="6668" />
+      <location filename="../Project/Project.py" line="6639" />
       <location filename="../Project/Project.py" line="6593" />
       <location filename="../Project/Project.py" line="4800" />
       <source>Execute Make</source>
@@ -61275,7 +61351,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6648" />
+      <location filename="../Project/Project.py" line="6645" />
       <location filename="../Project/Project.py" line="4819" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
@@ -61795,22 +61871,22 @@
       <translation>Le processus make n'a pas démarré.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6643" />
+      <location filename="../Project/Project.py" line="6640" />
       <source>The make process crashed.</source>
       <translation>Crash du processus make.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6651" />
+      <location filename="../Project/Project.py" line="6648" />
       <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="6656" />
+      <location filename="../Project/Project.py" line="6653" />
       <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="6672" />
+      <location filename="../Project/Project.py" line="6669" />
       <source>The makefile contains errors.</source>
       <translation>Le makefile contient des erreurs.</translation>
     </message>
@@ -64749,7 +64825,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="424" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="434" />
       <location filename="../DataViews/PyCoverageDialog.py" line="69" />
       <source>LCOV Report</source>
       <translation type="unfinished" />
@@ -64778,12 +64854,12 @@
       </translation>
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="425" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="435" />
       <source>Enter the path of the output file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="429" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="439" />
       <source>LCOV Files (*.lcov);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -65060,7 +65136,7 @@
       <translation>Fichiers %v/%m</translation>
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="361" />
+      <location filename="../DataViews/PyProfileDialog.py" line="371" />
       <location filename="../DataViews/PyProfileDialog.py" line="91" />
       <source>Exclude Python Library</source>
       <translation>Exlure les librairies Python</translation>
@@ -65111,7 +65187,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="357" />
+      <location filename="../DataViews/PyProfileDialog.py" line="367" />
       <source>Include Python Library</source>
       <translation>Inclure les librairies Python</translation>
     </message>
@@ -66494,38 +66570,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="213" />
+      <location filename="../UI/PythonAstViewer.py" line="214" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="223" />
+      <location filename="../UI/PythonAstViewer.py" line="224" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="229" />
+      <location filename="../UI/PythonAstViewer.py" line="230" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="247" />
+      <location filename="../UI/PythonAstViewer.py" line="248" />
       <source>Module</source>
       <translation>Module</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="279" />
+      <location filename="../UI/PythonAstViewer.py" line="280" />
       <source>{0}: {1}</source>
       <translation>{0}: {1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="296" />
-      <location filename="../UI/PythonAstViewer.py" line="286" />
+      <location filename="../UI/PythonAstViewer.py" line="297" />
+      <location filename="../UI/PythonAstViewer.py" line="287" />
       <source>{0},{1}</source>
       <translation>{0},{1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="303" />
+      <location filename="../UI/PythonAstViewer.py" line="304" />
       <source>{0}  -  {1}</source>
       <translation>{0}  -  {1}</translation>
     </message>
@@ -69101,7 +69177,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="716" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="714" />
       <source>Initializing new queue repository</source>
       <translation type="unfinished" />
     </message>
@@ -70079,50 +70155,82 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1341" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1555" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
       <source>Active</source>
       <translation type="unfinished">Actif</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1345" />
-      <source>Status</source>
-      <translation type="unfinished">Etat (status)</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1349" />
-      <source>Hostname</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1350" />
-      <source>IPv4 Address</source>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1343" />
+      <source>Name</source>
+      <translation type="unfinished">Nom</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1568" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1344" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1347" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Public</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>MTU</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>{0} Bytes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1556" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1559" />
+      <source>Status</source>
+      <translation type="unfinished">Etat (status)</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1563" />
+      <source>Hostname</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1564" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1565" />
       <source>Netmask</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1352" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1566" />
       <source>Gateway</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1353" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1567" />
       <source>DNS</source>
       <translation type="unfinished" />
     </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1354" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
   </context>
   <context>
     <name>RccCompilerOptionsDialog</name>
@@ -71225,7 +71333,7 @@
       <translation>Tenir compte de la casse</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SearchWidget.py" line="98" />
+      <location filename="../WebBrowser/SearchWidget.py" line="100" />
       <source>Expression was not found.</source>
       <translation>L'expression n'a pas été trouvée.</translation>
     </message>
@@ -72645,46 +72753,46 @@
       <translation>Configuration...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2063" />
-      <location filename="../QScintilla/Shell.py" line="1845" />
+      <location filename="../QScintilla/Shell.py" line="2059" />
+      <location filename="../QScintilla/Shell.py" line="1841" />
       <location filename="../QScintilla/Shell.py" line="408" />
       <source>Project</source>
       <translation>Projet</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="810" />
+      <location filename="../QScintilla/Shell.py" line="806" />
       <source>Select History</source>
       <translation>Historique</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="811" />
+      <location filename="../QScintilla/Shell.py" line="807" />
       <source>Select the history entry to execute (most recent shown last).</source>
       <translation>Sélectionner une entrée à executer (la plus récente est à la fin).</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="876" />
+      <location filename="../QScintilla/Shell.py" line="872" />
       <source>Passive Debug Mode</source>
       <translation>Mode débogueur passif</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="877" />
+      <location filename="../QScintilla/Shell.py" line="873" />
       <source>
 Not connected</source>
       <translation>
 Non connexté</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="880" />
+      <location filename="../QScintilla/Shell.py" line="876" />
       <source>No.</source>
       <translation>Non.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="882" />
+      <location filename="../QScintilla/Shell.py" line="878" />
       <source>{0} on {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="929" />
+      <location filename="../QScintilla/Shell.py" line="925" />
       <source>Exception "{0}"
 {1}
 File: {2}, Line: {3}
@@ -72695,7 +72803,7 @@
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="938" />
+      <location filename="../QScintilla/Shell.py" line="934" />
       <source>Exception "{0}"
 {1}
 </source>
@@ -72704,43 +72812,43 @@
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="958" />
+      <location filename="../QScintilla/Shell.py" line="954" />
       <source>Unspecified syntax error.
 </source>
       <translation>Erreur de syntaxe non spécifié.
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="961" />
+      <location filename="../QScintilla/Shell.py" line="957" />
       <source>Syntax error "{1}" in file {0} at line {2}, character {3}.
 </source>
       <translation>Erreur de syntaxe"{1}" dans le fichier {0} à la ligne {2}, caractère {3}.
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="985" />
+      <location filename="../QScintilla/Shell.py" line="981" />
       <source>Signal "{0}" generated in file {1} at line {2}.
 Function: {3}({4})</source>
       <translation>Signal "{0}" généré dans le fichier {1} à la ligne {2}.
 Fonction : {3}({4})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1067" />
+      <location filename="../QScintilla/Shell.py" line="1063" />
       <source>StdOut: {0}</source>
       <translation>StdOut: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1075" />
+      <location filename="../QScintilla/Shell.py" line="1071" />
       <source>StdErr: {0}</source>
       <translation>StdErr: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1101" />
+      <location filename="../QScintilla/Shell.py" line="1097" />
       <source>&lt;{0}&gt; {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1888" />
+      <location filename="../QScintilla/Shell.py" line="1884" />
       <source>Available Virtual Environments:
 {0}
 </source>
@@ -72749,42 +72857,42 @@
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1931" />
-      <location filename="../QScintilla/Shell.py" line="1895" />
+      <location filename="../QScintilla/Shell.py" line="1927" />
+      <location filename="../QScintilla/Shell.py" line="1891" />
       <source>Current Virtual Environment: '{0}'
 </source>
       <translation>Environment virtuel actuel : '{0}'
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2203" />
+      <location filename="../QScintilla/Shell.py" line="2199" />
       <source>Drop Error</source>
       <translation>Erreur de suppression</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2204" />
+      <location filename="../QScintilla/Shell.py" line="2200" />
       <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="2446" />
-      <location filename="../QScintilla/Shell.py" line="2431" />
-      <location filename="../QScintilla/Shell.py" line="2412" />
+      <location filename="../QScintilla/Shell.py" line="2442" />
+      <location filename="../QScintilla/Shell.py" line="2427" />
+      <location filename="../QScintilla/Shell.py" line="2408" />
       <source>Save Shell Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2414" />
+      <location filename="../QScintilla/Shell.py" line="2410" />
       <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="2432" />
+      <location filename="../QScintilla/Shell.py" line="2428" />
       <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="2447" />
+      <location filename="../QScintilla/Shell.py" line="2443" />
       <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>
@@ -73030,335 +73138,335 @@
   <context>
     <name>ShellWindow</name>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1275" />
-      <location filename="../QScintilla/ShellWindow.py" line="54" />
+      <location filename="../QScintilla/ShellWindow.py" line="1279" />
+      <location filename="../QScintilla/ShellWindow.py" line="62" />
       <source>eric Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="220" />
-      <source>Quit</source>
-      <translation>Quitter</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="222" />
-      <source>&amp;Quit</source>
-      <translation>&amp;Quitter</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="223" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Q</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="228" />
-      <source>Quit the Shell</source>
-      <translation>Quitter le shell</translation>
+      <source>Quit</source>
+      <translation>Quitter</translation>
     </message>
     <message>
       <location filename="../QScintilla/ShellWindow.py" line="230" />
+      <source>&amp;Quit</source>
+      <translation>&amp;Quitter</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="231" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="236" />
+      <source>Quit the Shell</source>
+      <translation>Quitter le shell</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="238" />
       <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Quitter le Shell&lt;/b&gt;&lt;p&gt;Ceci quitte la fenêtre Shell.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="237" />
+      <location filename="../QScintilla/ShellWindow.py" line="245" />
       <source>New Window</source>
       <translation>Nouvelle fenêtre</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="239" />
+      <location filename="../QScintilla/ShellWindow.py" line="247" />
       <source>New &amp;Window</source>
       <translation>&amp;Nouvelle fenêtre</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="240" />
+      <location filename="../QScintilla/ShellWindow.py" line="248" />
       <source>Ctrl+Shift+N</source>
       <comment>File|New Window</comment>
       <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="245" />
+      <location filename="../QScintilla/ShellWindow.py" line="253" />
       <source>Open a new Shell window</source>
       <translation>Ouvrir une nouvelle fenêtre Shell</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="247" />
+      <location filename="../QScintilla/ShellWindow.py" line="255" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nouvelle fenêtre&lt;/b&gt;&lt;p&gt;Ceci ouvre une nouvelle instance de la fenêtre shell.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="258" />
-      <location filename="../QScintilla/ShellWindow.py" line="256" />
-      <source>Restart</source>
-      <translation>Rédémarrer</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="264" />
-      <source>Restart the shell</source>
-      <translation>Redémarre le shell</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="266" />
+      <location filename="../QScintilla/ShellWindow.py" line="264" />
+      <source>Restart</source>
+      <translation>Rédémarrer</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="272" />
+      <source>Restart the shell</source>
+      <translation>Redémarre le shell</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="274" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="278" />
-      <location filename="../QScintilla/ShellWindow.py" line="276" />
+      <location filename="../QScintilla/ShellWindow.py" line="286" />
+      <location filename="../QScintilla/ShellWindow.py" line="284" />
       <source>Restart and Clear</source>
       <translation>Redémarrer et effacer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="285" />
+      <location filename="../QScintilla/ShellWindow.py" line="293" />
       <source>Clear the window and restart the shell</source>
       <translation>Effacer la fenêtre et redémarrer le shell</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="288" />
+      <location filename="../QScintilla/ShellWindow.py" line="296" />
       <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="298" />
+      <location filename="../QScintilla/ShellWindow.py" line="306" />
       <source>Save Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="300" />
+      <location filename="../QScintilla/ShellWindow.py" line="308" />
       <source>Save Contents...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="309" />
+      <location filename="../QScintilla/ShellWindow.py" line="317" />
       <source>Save the current contents of the shell to a file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="312" />
+      <location filename="../QScintilla/ShellWindow.py" line="320" />
       <source>&lt;b&gt;Save Contents&lt;/b&gt;&lt;p&gt;Save the current contents of the shell to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="345" />
+      <location filename="../QScintilla/ShellWindow.py" line="353" />
       <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Couper&lt;/b&gt;&lt;p&gt;Couper le texte sélectionné vers le presse papier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="367" />
+      <location filename="../QScintilla/ShellWindow.py" line="375" />
       <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Copier&lt;/b&gt;&lt;p&gt;Copie le texte sélectionné dans le presse-papier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="389" />
+      <location filename="../QScintilla/ShellWindow.py" line="397" />
       <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="411" />
+      <location filename="../QScintilla/ShellWindow.py" line="419" />
       <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="709" />
-      <location filename="../QScintilla/ShellWindow.py" line="708" />
+      <location filename="../QScintilla/ShellWindow.py" line="713" />
+      <location filename="../QScintilla/ShellWindow.py" line="712" />
       <source>Move forward one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="721" />
-      <location filename="../QScintilla/ShellWindow.py" line="720" />
+      <location filename="../QScintilla/ShellWindow.py" line="725" />
+      <location filename="../QScintilla/ShellWindow.py" line="724" />
       <source>Move back one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1115" />
+      <location filename="../QScintilla/ShellWindow.py" line="1119" />
       <source>Show History</source>
       <translation>Montrer l'historique</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1117" />
+      <location filename="../QScintilla/ShellWindow.py" line="1121" />
       <source>&amp;Show History...</source>
       <translation>Montrer l'hi&amp;storique...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1123" />
-      <source>Show the shell history in a dialog</source>
-      <translation>Montrer l'historique du shell dans une fenêtre</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1127" />
+      <source>Show the shell history in a dialog</source>
+      <translation>Montrer l'historique du shell dans une fenêtre</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1131" />
       <source>Clear History</source>
       <translation>Effacer l'historique</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1129" />
+      <location filename="../QScintilla/ShellWindow.py" line="1133" />
       <source>&amp;Clear History...</source>
       <translation>Effa&amp;cer l'historique...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1135" />
-      <source>Clear the shell history</source>
-      <translation>Nettoyer l'historique shell</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1139" />
+      <source>Clear the shell history</source>
+      <translation>Nettoyer l'historique shell</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1143" />
       <source>Select History Entry</source>
       <translation>Sélectionner l'entrée de l'historique</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1140" />
+      <location filename="../QScintilla/ShellWindow.py" line="1144" />
       <source>Select History &amp;Entry</source>
       <translation>Sélectionner l'&amp;entrée de l'historique</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1147" />
+      <location filename="../QScintilla/ShellWindow.py" line="1151" />
       <source>Select an entry of the shell history</source>
       <translation>Sélectionner une entrée de l'historique shell</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
+      <location filename="../QScintilla/ShellWindow.py" line="1160" />
       <source>About</source>
       <translation>À propos</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
-      <source>&amp;About</source>
-      <translation>&amp;À propos</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1158" />
-      <source>Display information about this software</source>
-      <translation>Affiche les informations concernant le logiciel</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1160" />
+      <source>&amp;About</source>
+      <translation>&amp;À propos</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1162" />
+      <source>Display information about this software</source>
+      <translation>Affiche les informations concernant le logiciel</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1164" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation>&lt;b&gt;À propos de&lt;/b&gt;&lt;p&gt;Affiche certaines informations concernant le logiciel.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About Qt</source>
       <translation>À propos de Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About &amp;Qt</source>
       <translation>À propos de &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1172" />
+      <location filename="../QScintilla/ShellWindow.py" line="1176" />
       <source>Display information about the Qt toolkit</source>
       <translation>Affiche les informations concernant Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1175" />
+      <location filename="../QScintilla/ShellWindow.py" line="1179" />
       <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
       <translation>&lt;b&gt;À propos de Qt&lt;/b&gt;&lt;p&gt;Affiche les informations concernant Qt&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1184" />
+      <location filename="../QScintilla/ShellWindow.py" line="1188" />
       <source>What's This?</source>
       <translation>Qu'est-ce que c'est ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1186" />
+      <location filename="../QScintilla/ShellWindow.py" line="1190" />
       <source>&amp;What's This?</source>
       <translation>&amp;Qu'est-ce que c'est?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1187" />
+      <location filename="../QScintilla/ShellWindow.py" line="1191" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1192" />
+      <location filename="../QScintilla/ShellWindow.py" line="1196" />
       <source>Context sensitive help</source>
       <translation>Aide contextuelle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1194" />
+      <location filename="../QScintilla/ShellWindow.py" line="1198" />
       <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="../QScintilla/ShellWindow.py" line="1273" />
+      <location filename="../QScintilla/ShellWindow.py" line="1277" />
       <source>eric Shell [{0}]</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="1346" />
       <source>About eric Shell Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1343" />
+      <location filename="../QScintilla/ShellWindow.py" line="1347" />
       <source>The eric Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1370" />
+      <location filename="../QScintilla/ShellWindow.py" line="1374" />
       <source>&amp;File</source>
       <translation>&amp;Fichier</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1381" />
+      <location filename="../QScintilla/ShellWindow.py" line="1385" />
       <source>&amp;Edit</source>
       <translation>&amp;Edition</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1392" />
+      <location filename="../QScintilla/ShellWindow.py" line="1396" />
       <source>&amp;View</source>
       <translation>&amp;Affichage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1399" />
+      <location filename="../QScintilla/ShellWindow.py" line="1403" />
       <source>Histor&amp;y</source>
       <translation>&amp;Historique</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1406" />
+      <location filename="../QScintilla/ShellWindow.py" line="1410" />
       <source>&amp;Start</source>
       <translation>&amp;Lancer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1412" />
+      <location filename="../QScintilla/ShellWindow.py" line="1416" />
       <source>&amp;Help</source>
       <translation>A&amp;ide</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1445" />
+      <location filename="../QScintilla/ShellWindow.py" line="1449" />
       <source>File</source>
       <translation>Fichier</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1455" />
+      <location filename="../QScintilla/ShellWindow.py" line="1459" />
       <source>Edit</source>
       <translation>Édition</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1461" />
+      <location filename="../QScintilla/ShellWindow.py" line="1465" />
       <source>Find</source>
       <translation>Chercher</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1466" />
+      <location filename="../QScintilla/ShellWindow.py" line="1470" />
       <source>View</source>
       <translation>Affichage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1472" />
+      <location filename="../QScintilla/ShellWindow.py" line="1476" />
       <source>History</source>
       <translation>Historique</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1477" />
+      <location filename="../QScintilla/ShellWindow.py" line="1481" />
       <source>Help</source>
       <translation>Aide</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1499" />
+      <location filename="../QScintilla/ShellWindow.py" line="1503" />
       <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette zone de la barre de statut permet de zoomer le shell.&lt;/p&gt;</translation>
     </message>
@@ -73716,24 +73824,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="363" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="345" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="324" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
       <source>Edit shortcuts</source>
       <translation>Edition de raccourcis</translation>
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="326" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="347" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="365" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -76899,330 +77007,330 @@
       <translation>Le projet n'a pu être mis à jour à partir du référentiel.&lt;br /&gt;Restauration du contenu initial.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="310" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="327" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="312" />
       <source>Importing project into Subversion repository</source>
       <translation>Importer le projet dans le référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="328" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="330" />
       <source>Imported revision {0}.
 </source>
       <translation>Révision Importée {0}.
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="362" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="364" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="367" />
       <source>Subversion Checkout</source>
       <translation>'Checkout' Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="420" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="433" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="422" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="368" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation>L'étiquette doit être une étiquette normale (tags) ou une étiquette de branche (branches). Prière de faire un choix dans la liste.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="389" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="388" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="391" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="390" />
       <source>Checking project out of Subversion repository</source>
       <translation>'Checkout' du projet depuis le référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="419" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="432" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="421" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="434" />
       <source>Subversion Export</source>
       <translation>'Export' Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="443" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="445" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="456" />
       <source>Exporting project from Subversion repository</source>
       <translation>Exporter un projet du référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="514" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="535" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="516" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="537" />
       <source>Commit Changes</source>
       <translation>Commiter les changements</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="515" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="517" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="538" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation>Ce commit affecte des fichiers qui ont des modifications non enregistrées. Faut-il poursuivre le commit ?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="578" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="580" />
       <source>Commiting changes to Subversion repository</source>
       <translation>'Commiter' les modifications dans le référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="614" />
       <source>Committed revision {0}.</source>
       <translation>Révision committée {0}.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="638" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="684" />
       <source>Synchronizing with the Subversion repository</source>
       <translation>Synchronisation avec le référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="735" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="793" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation>Ajouter des fichiers/répertoires au référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="898" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="900" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation>Ajouter des arborescences de répertoires dans le référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="859" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="937" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="939" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation>Supprimer des fichiers/répertoires du réferentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="918" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="920" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="998" />
       <source>Moving {0}</source>
       <translation>Dépalcement en cours de {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1177" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1148" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1027" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="998" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1292" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1124" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1094" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1179" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1029" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1294" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1265" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1126" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1096" />
       <source>Subversion Error</source>
       <translation>Erreur Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1095" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1001" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1097" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation>Impossible d'atteindre l'URL du référentiel à partir de la copie locale. Abandon de l'opération d'étiquetage</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1028" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1125" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1030" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1127" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation>Le format de l'URL du référentiel n'est pas valide. Abandon de l'opération d'étiquetage</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1062" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1161" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1147" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1149" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1324" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1172" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1326" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1174" />
       <source>Revision {0}.
 </source>
       <translation>Révision {0}.
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1106" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1095" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1197" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1108" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1097" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
       <source>Revert changes</source>
       <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1096" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1198" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1200" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1107" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1109" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1211" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1113" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1115" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1219" />
       <source>Reverting changes</source>
       <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1149" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1264" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1151" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1266" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation>Impossible d'atteindre l'URL du référentiel du projet depuis la copie locale. Abandon de l'opération</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1178" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1293" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1180" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1295" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation>Le format de l'URL du référentiel n'est pas valide. Abandon de l'opération</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1207" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1318" />
       <source>Switching to {0}</source>
       <translation>Basculement en cours vers {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1416" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1275" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1418" />
       <source>Merging {0}</source>
       <translation>Fusion en cours {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1543" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1723" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1544" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1725" />
       <source>Cleaning up {0}</source>
       <translation>Nettoyage en cours {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1573" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1763" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1765" />
       <source>Subversion command</source>
       <translation>Commande Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1744" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1883" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1747" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1887" />
       <source>Resolving conficts</source>
       <translation>Résoudre les confits</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1924" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1928" />
       <source>Copying {0}</source>
       <translation>Copie en cours {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1844" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1823" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2000" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1847" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1987" />
       <source>Subversion Set Property</source>
       <translation>Propriété Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1870" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2045" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1988" />
       <source>You have to supply a property name. Aborting.</source>
       <translation>Vous devez donner un nom à la propriété. Abandon.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2023" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2027" />
       <source>Property set.</source>
       <translation>Propriété définie.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1887" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1858" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2061" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2044" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1890" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1872" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2048" />
       <source>Subversion Delete Property</source>
       <translation>Suppression d'une propriété Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2079" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2083" />
       <source>Property deleted.</source>
       <translation>Propriété supprimée.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2114" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2102" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2093" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2294" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2105" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2096" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2310" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2298" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2289" />
       <source>Subversion Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2115" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2307" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2118" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2311" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2348" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2352" />
       <source>Subversion Lock</source>
       <translation>Verrou Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2349" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2353" />
       <source>Enter lock comment</source>
       <translation>Entrer un commentaire pour le verrou</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2165" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2370" />
       <source>Locking in the Subversion repository</source>
       <translation>Verrouillage dans le référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2192" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2195" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2411" />
       <source>Unlocking in the Subversion repository</source>
       <translation>Déverrouillage dans le référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2217" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2458" />
       <source>Relocating</source>
       <translation>Déplacement</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2235" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2479" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2238" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2483" />
       <source>Repository Browser</source>
       <translation>Navigateur de référentiel</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2236" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2480" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2239" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2484" />
       <source>Enter the repository URL.</source>
       <translation>Entrer l'URL du référentiel.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2269" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2505" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2309" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2272" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2509" />
       <source>Remove from changelist</source>
       <translation>Supprimer de la liste des modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2285" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2544" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2533" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2548" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2537" />
       <source>Add to changelist</source>
       <translation>Ajouter à la liste des modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2534" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2289" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2538" />
       <source>Enter name of the changelist:</source>
       <translation>Entrer le nom de la liste des modifications:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2373" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2598" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2602" />
       <source>Upgrade</source>
       <translation>Mise à jour</translation>
     </message>
@@ -77403,7 +77511,7 @@
       <translation>Le processus svn s'est terminé avec le code de sortie {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2052" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="181" />
       <source>The svn process did not finish within 30s.</source>
       <translation>Le processus SVN ne s'est pas terminé dans les 30 dernières secondes.</translation>
@@ -77414,12 +77522,12 @@
       <translation>Impossible de lancer l'executable SVN.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1862" />
       <source>Enter property name</source>
       <translation>Entrer le nom de la propriété</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2051" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2054" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Impossible de lancer le processus {0}. Assurez-vous qu'il est bien dans le chemin de recherche.</translation>
     </message>
@@ -78050,27 +78158,27 @@
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="208" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="284" />
       <source>There is no difference.</source>
       <translation>Aucune différence.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="223" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="342" />
       <source>&lt;Start&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="225" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="343" />
       <source>&lt;End&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="410" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="444" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="426" />
@@ -78078,19 +78186,19 @@
       <translation>Enregistrer Diff</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="378" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="428" />
       <source>Patch Files (*.diff)</source>
       <translation>Fichiers Patch (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="396" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="445" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier patch &lt;b&gt;{0}&lt;/b&gt; existe déjà. L'écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="412" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="461" />
       <source>&lt;p&gt;The patch 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 patch &lt;b&gt;{0}&lt;/b&gt; ne peut être enregistrer.&lt;br&gt;Raison : {1}&lt;/p&gt;</translation>
@@ -78346,7 +78454,7 @@
       <translation>Sélectionner le champ à filtrer</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="566" />
@@ -78356,7 +78464,7 @@
       <translation>Révision</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="674" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="563" />
@@ -80372,7 +80480,7 @@
       <translation>Sélectionner le statut des entrées à afficher</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="654" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.ui" line="0" />
@@ -80596,8 +80704,8 @@
       <translation>Ajouter à la liste des modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1057" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="129" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="915" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="894" />
@@ -80606,7 +80714,7 @@
       <translation>Supprimer de la liste des modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="134" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="818" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="134" />
@@ -80614,7 +80722,7 @@
       <translation>Verrouillage</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="136" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="837" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="136" />
@@ -80698,7 +80806,7 @@
       <translation>oui</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="491" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="562" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="491" />
@@ -80706,34 +80814,34 @@
       <translation>tout</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="798" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="655" />
       <source>There are no entries selected to be committed.</source>
       <translation>Il n'y a pas d'entrée sélectionnée à committer.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
-      <source>Add</source>
-      <translation>Ajouter</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
+      <source>Add</source>
+      <translation>Ajouter</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="840" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="697" />
       <source>There are no unversioned entries available/selected.</source>
       <translation>Aucune entrée "non-versionnée" disponible/sélectionnée.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="888" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="862" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="720" />
       <source>Revert</source>
       <translation>Recouvrir</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="934" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="912" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="864" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="791" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="769" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="721" />
@@ -80741,41 +80849,41 @@
       <translation>Il n'y a pas de modification non commitée disponible/sélectionnée.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="747" />
       <source>There are no missing entries available/selected.</source>
       <translation>Il n'y a pas d'entrées manquantes disponibles/sélectionnées.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="768" />
       <source>Differences</source>
       <translation>Différences</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="939" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="797" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="790" />
       <source>Side-by-Side Diff</source>
       <translation>Diff côte à côte</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="941" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="798" />
       <source>Only one file with uncommitted changes must be selected.</source>
       <translation>Uniquement un fichier avec des modifications non commitées doit être sélectionné.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="819" />
       <source>There are no unlocked files available/selected.</source>
       <translation>Il n'y a aucun fichier déverrouilé disponible/sélectionné.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="981" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="876" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="857" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="838" />
@@ -80783,25 +80891,25 @@
       <translation>Il n'y a aucun fichier verrouilé disponible/sélectionné.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="998" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="856" />
       <source>Break Lock</source>
       <translation>Casser le verrouillage d'un autre utilisateur</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1017" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="875" />
       <source>Steal Lock</source>
       <translation>Voler le verrou</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1038" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="895" />
       <source>There are no files available/selected not belonging to a changelist.</source>
       <translation>Il n'y a pas de fichiers disponibles ou sélectionnés n'appartenant pas à une liste.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1059" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="916" />
       <source>There are no files available/selected belonging to a changelist.</source>
       <translation>Il n'y a pas de fichiers disponibles ou sélectionnés appartenant à une liste.</translation>
@@ -80929,7 +81037,7 @@
   <context>
     <name>SvnStatusMonitorThread</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="141" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="143" />
       <source>Subversion status checked successfully (using pysvn)</source>
       <translation>Vérification de statut Subversion réussie (avec pysvn)</translation>
     </message>
@@ -82535,7 +82643,7 @@
       <translation>Pas de synchronisation</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="187" />
+      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="188" />
       <source>&lt;font color="#FF0000"&gt;&lt;b&gt;Error:&lt;/b&gt; {0}&lt;/font&gt;</source>
       <translation>&lt;font color="#FF0000"&gt;&lt;b&gt;Erreur :&lt;/b&gt; {0}&lt;/font&gt;</translation>
     </message>
@@ -83569,7 +83677,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="565" />
+      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="563" />
       <source>Show Tab Manager</source>
       <translation>Montrer le gestionnaire d'onglet</translation>
     </message>
@@ -84135,47 +84243,47 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="743" />
+      <location filename="../Tasks/TaskViewer.py" line="744" />
       <source>Activate task filter</source>
       <translation>Activer le filtre de tâches</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="744" />
+      <location filename="../Tasks/TaskViewer.py" line="745" />
       <source>The task filter doesn't have any active filters. Do you want to configure the filter settings?</source>
       <translation>Le filtre de tâches n'a aucun filtre actif. Voulez-vous configurer les paramètres de filtre ?</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="778" />
-      <source>Scan Filter Patterns</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="779" />
+      <source>Scan Filter Patterns</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="780" />
       <source>Enter filename patterns of files to be excluded separated by a comma:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="821" />
-      <source>Extracting project tasks...</source>
-      <translation>Extraction des tâches de projet...</translation>
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="822" />
+      <source>Extracting project tasks...</source>
+      <translation>Extraction des tâches de projet...</translation>
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="823" />
       <source>Abort</source>
       <translation>Abandon</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="825" />
+      <location filename="../Tasks/TaskViewer.py" line="826" />
       <source>%v/%m Files</source>
       <translation>Fichiers %v/%m</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="829" />
+      <location filename="../Tasks/TaskViewer.py" line="830" />
       <source>Tasks</source>
       <translation>Tâches</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="836" />
+      <location filename="../Tasks/TaskViewer.py" line="837" />
       <source>Extracting project tasks...
 {0}</source>
       <translation>Extraction en cours des tâches projet...
@@ -84318,7 +84426,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="316" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="318" />
       <location filename="../MicroPython/Devices/TeensyDevices.py" line="154" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -84359,17 +84467,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="317" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="319" />
       <source>&lt;p&gt;Teensy 4.0 and Teensy 4.1 are flashed using the 'Teensy Loader' application. Make sure you downloaded the MicroPython or CircuitPython .hex file.&lt;/p&gt;&lt;p&gt;See &lt;a href="{0}"&gt;the PJRC Teensy web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="339" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="341" />
       <source>Start 'Teensy Loader'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="340" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="342" />
       <source>&lt;p&gt;The 'Teensy Loader' application &lt;b&gt;teensy&lt;/b&gt; could not be started. Ensure it is in the application search path or start it manually.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -84595,78 +84703,78 @@
       <translation>Configuration...</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="531" />
+      <location filename="../Templates/TemplateViewer.py" line="533" />
       <source>Remove Template</source>
       <translation>Suppression du gabarit</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="532" />
+      <location filename="../Templates/TemplateViewer.py" line="534" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Voulez-vous vraiment supprimer &lt;b&gt;{0}&lt;/b&gt; ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="560" />
-      <source>Import Templates</source>
-      <translation>Importation des gabarits</translation>
-    </message>
-    <message>
       <location filename="../Templates/TemplateViewer.py" line="562" />
+      <source>Import Templates</source>
+      <translation>Importation des gabarits</translation>
+    </message>
+    <message>
+      <location filename="../Templates/TemplateViewer.py" line="564" />
       <source>Templates Files (*.ecj);;XML Templates Files (*.e4c);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="595" />
-      <location filename="../Templates/TemplateViewer.py" line="579" />
+      <location filename="../Templates/TemplateViewer.py" line="597" />
+      <location filename="../Templates/TemplateViewer.py" line="581" />
       <source>Export Templates</source>
       <translation>Exportation des gabarits</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="581" />
+      <location filename="../Templates/TemplateViewer.py" line="583" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="596" />
+      <location filename="../Templates/TemplateViewer.py" line="598" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="614" />
+      <location filename="../Templates/TemplateViewer.py" line="616" />
       <source>Reload Templates</source>
       <translation>Recharger gabarits</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="615" />
+      <location filename="../Templates/TemplateViewer.py" line="617" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation>Le gabarit contient des modifications non enregistrées. Faut-il ignorer ces modifications ?</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
       <source>Template Help</source>
       <translation>Aide sur les gabarits</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="883" />
+      <location filename="../Templates/TemplateViewer.py" line="885" />
       <source>Edit Template Group</source>
       <translation>Edition du Groupe de gabarits</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="884" />
+      <location filename="../Templates/TemplateViewer.py" line="886" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1005" />
+      <location filename="../Templates/TemplateViewer.py" line="1007" />
       <source>Read Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1006" />
+      <location filename="../Templates/TemplateViewer.py" line="1008" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier gabarit &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
     </message>
@@ -87533,99 +87641,99 @@
   <context>
     <name>UMLGraphicsView</name>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="90" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="94" />
       <source>Delete shapes</source>
       <translation>Effacer les entités</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="96" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="100" />
       <source>Increase width by {0} points</source>
       <translation>Augmenter la largeur de {0} points</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="103" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="107" />
       <source>Increase height by {0} points</source>
       <translation>Augmenter la hauteur de {0} points</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="110" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="114" />
       <source>Decrease width by {0} points</source>
       <translation>Réduire la largeur de {0} points</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="117" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="121" />
       <source>Decrease height by {0} points</source>
       <translation>Réduire la largeur de {0} points</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="123" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="127" />
       <source>Set size</source>
       <translation>Redimensionnement</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="128" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="132" />
       <source>Re-Scan</source>
       <translation>Re-scanner</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="133" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="137" />
       <source>Re-Layout</source>
       <translation>Remise en page</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="138" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="142" />
       <source>Align Left</source>
       <translation>Aligner à gauche</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="145" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="149" />
       <source>Align Center Horizontal</source>
       <translation>Centrer horizontalement</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="152" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="156" />
       <source>Align Right</source>
       <translation>Aligner à droite</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="158" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="162" />
       <source>Align Top</source>
       <translation>Aligner en haut</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="165" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="169" />
       <source>Align Center Vertical</source>
       <translation>Centrer verticalement</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="172" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="176" />
       <source>Align Bottom</source>
       <translation>Aligner en bas</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="235" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="240" />
       <source>Graphics</source>
       <translation>Graphiques</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="395" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="382" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="365" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="400" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="387" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="370" />
       <source>Save Diagram</source>
       <translation>Enregistrer le diagramme</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="367" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="372" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="383" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="388" />
       <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="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="401" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; n'a pas pu être enregistré.&lt;/p&gt;</translation>
     </message>
@@ -88351,7 +88459,7 @@
       <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="7688" />
+      <location filename="../UI/UserInterface.py" line="7687" />
       <location filename="../UI/UserInterface.py" line="1934" />
       <location filename="../UI/UserInterface.py" line="1927" />
       <source>Load session</source>
@@ -89638,8 +89746,8 @@
       <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="7373" />
-      <location filename="../UI/UserInterface.py" line="7354" />
+      <location filename="../UI/UserInterface.py" line="7372" />
+      <location filename="../UI/UserInterface.py" line="7353" />
       <location filename="../UI/UserInterface.py" line="3358" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exporter les raccourcis clavier</translation>
@@ -89660,7 +89768,7 @@
       <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="7392" />
+      <location filename="../UI/UserInterface.py" line="7391" />
       <location filename="../UI/UserInterface.py" line="3377" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importer des raccourcis clavier</translation>
@@ -90376,185 +90484,185 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6609" />
+      <location filename="../UI/UserInterface.py" line="6610" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6896" />
-      <location filename="../UI/UserInterface.py" line="6834" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6716" />
-      <location filename="../UI/UserInterface.py" line="6652" />
-      <source>Documentation Missing</source>
-      <translation>Documentation Manquante</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6897" />
       <location filename="../UI/UserInterface.py" line="6835" />
       <location filename="../UI/UserInterface.py" line="6791" />
       <location filename="../UI/UserInterface.py" line="6717" />
       <location filename="../UI/UserInterface.py" line="6653" />
+      <source>Documentation Missing</source>
+      <translation>Documentation Manquante</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6898" />
+      <location filename="../UI/UserInterface.py" line="6836" />
+      <location filename="../UI/UserInterface.py" line="6792" />
+      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6654" />
       <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="6878" />
-      <location filename="../UI/UserInterface.py" line="6760" />
-      <source>Documentation</source>
-      <translation>Documentation</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6761" />
-      <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="6879" />
+      <location filename="../UI/UserInterface.py" line="6761" />
+      <source>Documentation</source>
+      <translation>Documentation</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6762" />
+      <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="6880" />
       <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="7056" />
+      <location filename="../UI/UserInterface.py" line="6993" />
+      <source>Start Web Browser</source>
+      <translation>Démarrer le navigateur web</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6994" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7057" />
-      <location filename="../UI/UserInterface.py" line="6994" />
-      <source>Start Web Browser</source>
-      <translation>Démarrer le navigateur web</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6995" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7058" />
       <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="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Open Browser</source>
       <translation>Ouverture du navigateur</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Could not start a web browser</source>
       <translation>Impossible de lancer le navigateur web</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7374" />
+      <location filename="../UI/UserInterface.py" line="7373" />
       <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="7394" />
+      <location filename="../UI/UserInterface.py" line="7393" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7576" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7577" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7578" />
       <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier tâche &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
+      <location filename="../UI/UserInterface.py" line="7620" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7649" />
-      <location filename="../UI/UserInterface.py" line="7622" />
-      <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="7648" />
+      <location filename="../UI/UserInterface.py" line="7621" />
+      <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="7647" />
       <source>Read session</source>
       <translation>Chargement de session</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7665" />
+      <location filename="../UI/UserInterface.py" line="7664" />
       <source>Save Session</source>
       <translation type="unfinished">Enregistrer la session</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7667" />
+      <location filename="../UI/UserInterface.py" line="7666" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7690" />
+      <location filename="../UI/UserInterface.py" line="7689" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7735" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7736" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7737" />
       <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="8106" />
+      <source>Drop Error</source>
+      <translation>Erreur de suppression</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8107" />
-      <source>Drop Error</source>
-      <translation>Erreur de suppression</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8108" />
       <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="8288" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8289" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8290" />
       <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="8346" />
+      <location filename="../UI/UserInterface.py" line="8333" />
+      <source>First time usage</source>
+      <translation>Première utilisation</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8334" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8347" />
-      <location filename="../UI/UserInterface.py" line="8334" />
-      <source>First time usage</source>
-      <translation>Première utilisation</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8335" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8348" />
       <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="8371" />
+      <location filename="../UI/UserInterface.py" line="8370" />
       <source>Select Workspace Directory</source>
       <translation>Sélectionner le répertoire de travail</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8530" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8531" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8532" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -90638,7 +90746,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="989" />
+      <location filename="../Utilities/__init__.py" line="991" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Vous pouvez utiliser la syntaxe "%-code" dans la chaine de caractères. Les codes supportés sont :&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;colonne du curseur de l'éditeur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;répertoire de l'éditeur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;nom de fichier de l'éditeur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;répertoire 'home' de l'utilisateur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;ligne du curseur de l'éditeur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;chemin du projet courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;texte sélectionné dans l'éditeur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;nom d'utilisateur de l'utilisateur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;le signe pourcent&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -91750,663 +91858,663 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="681" />
-      <location filename="../QScintilla/ShellWindow.py" line="302" />
+      <location filename="../QScintilla/ShellWindow.py" line="310" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation>Ctrl+S</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1032" />
-      <location filename="../QScintilla/ShellWindow.py" line="329" />
+      <location filename="../QScintilla/ShellWindow.py" line="337" />
       <source>Cut</source>
       <translation>Couper</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1034" />
-      <location filename="../QScintilla/ShellWindow.py" line="331" />
+      <location filename="../QScintilla/ShellWindow.py" line="339" />
       <source>Cu&amp;t</source>
       <translation>Cou&amp;per</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1036" />
-      <location filename="../QScintilla/ShellWindow.py" line="333" />
+      <location filename="../QScintilla/ShellWindow.py" line="341" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation>Ctrl+X</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1039" />
-      <location filename="../QScintilla/ShellWindow.py" line="336" />
+      <location filename="../QScintilla/ShellWindow.py" line="344" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation>Shift+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1045" />
-      <location filename="../QScintilla/ShellWindow.py" line="342" />
+      <location filename="../QScintilla/ShellWindow.py" line="350" />
       <source>Cut the selection</source>
       <translation>Coupe la sélection</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1059" />
-      <location filename="../QScintilla/ShellWindow.py" line="351" />
+      <location filename="../QScintilla/ShellWindow.py" line="359" />
       <source>Copy</source>
       <translation>Copier</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1061" />
-      <location filename="../QScintilla/ShellWindow.py" line="353" />
+      <location filename="../QScintilla/ShellWindow.py" line="361" />
       <source>&amp;Copy</source>
       <translation>&amp;Copier</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1063" />
-      <location filename="../QScintilla/ShellWindow.py" line="355" />
+      <location filename="../QScintilla/ShellWindow.py" line="363" />
       <source>Ctrl+C</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+C</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1066" />
-      <location filename="../QScintilla/ShellWindow.py" line="358" />
+      <location filename="../QScintilla/ShellWindow.py" line="366" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1072" />
-      <location filename="../QScintilla/ShellWindow.py" line="364" />
+      <location filename="../QScintilla/ShellWindow.py" line="372" />
       <source>Copy the selection</source>
       <translation>Copie la sélection</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1086" />
-      <location filename="../QScintilla/ShellWindow.py" line="373" />
+      <location filename="../QScintilla/ShellWindow.py" line="381" />
       <source>Paste</source>
       <translation>Coller</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1088" />
-      <location filename="../QScintilla/ShellWindow.py" line="375" />
+      <location filename="../QScintilla/ShellWindow.py" line="383" />
       <source>&amp;Paste</source>
       <translation>Col&amp;ler</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1090" />
-      <location filename="../QScintilla/ShellWindow.py" line="377" />
+      <location filename="../QScintilla/ShellWindow.py" line="385" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation>Ctrl+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1093" />
-      <location filename="../QScintilla/ShellWindow.py" line="380" />
+      <location filename="../QScintilla/ShellWindow.py" line="388" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation>Shift+Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1099" />
-      <location filename="../QScintilla/ShellWindow.py" line="386" />
+      <location filename="../QScintilla/ShellWindow.py" line="394" />
       <source>Paste the last cut/copied text</source>
       <translation>Colle le dernier texte copié/coupé</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1115" />
       <location filename="../ViewManager/ViewManager.py" line="1113" />
-      <location filename="../QScintilla/ShellWindow.py" line="400" />
-      <location filename="../QScintilla/ShellWindow.py" line="398" />
+      <location filename="../QScintilla/ShellWindow.py" line="408" />
+      <location filename="../QScintilla/ShellWindow.py" line="406" />
       <source>Clear</source>
       <translation>Effacer</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1117" />
-      <location filename="../QScintilla/ShellWindow.py" line="402" />
+      <location filename="../QScintilla/ShellWindow.py" line="410" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation>Alt+Shift+C</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1124" />
-      <location filename="../QScintilla/ShellWindow.py" line="409" />
+      <location filename="../QScintilla/ShellWindow.py" line="417" />
       <source>Clear all text</source>
       <translation>Efface tout le texte</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
-      <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/ShellWindow.py" line="435" />
-      <location filename="../QScintilla/ShellWindow.py" line="434" />
+      <location filename="../QScintilla/MiniEditor.py" line="1681" />
+      <location filename="../QScintilla/MiniEditor.py" line="1680" />
+      <location filename="../QScintilla/ShellWindow.py" line="439" />
+      <location filename="../QScintilla/ShellWindow.py" line="438" />
       <source>Delete current line</source>
       <translation>Suppression de la ligne courante</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1686" />
-      <location filename="../QScintilla/ShellWindow.py" line="436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1682" />
+      <location filename="../QScintilla/ShellWindow.py" line="440" />
       <source>Ctrl+Shift+L</source>
       <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
-      <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/ShellWindow.py" line="447" />
-      <location filename="../QScintilla/ShellWindow.py" line="446" />
+      <location filename="../QScintilla/MiniEditor.py" line="1203" />
+      <location filename="../QScintilla/MiniEditor.py" line="1202" />
+      <location filename="../QScintilla/ShellWindow.py" line="451" />
+      <location filename="../QScintilla/ShellWindow.py" line="450" />
       <source>Indent one level</source>
       <translation>Indentation d'un niveau</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1208" />
-      <location filename="../QScintilla/ShellWindow.py" line="448" />
+      <location filename="../QScintilla/MiniEditor.py" line="1204" />
+      <location filename="../QScintilla/ShellWindow.py" line="452" />
       <source>Tab</source>
       <translation>Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
-      <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/ShellWindow.py" line="459" />
-      <location filename="../QScintilla/ShellWindow.py" line="458" />
+      <location filename="../QScintilla/MiniEditor.py" line="1669" />
+      <location filename="../QScintilla/MiniEditor.py" line="1668" />
+      <location filename="../QScintilla/ShellWindow.py" line="463" />
+      <location filename="../QScintilla/ShellWindow.py" line="462" />
       <source>Insert new line</source>
       <translation>Insertion d'une nouvelle ligne</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
-      <location filename="../QScintilla/ShellWindow.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1670" />
+      <location filename="../QScintilla/ShellWindow.py" line="464" />
       <source>Return</source>
       <translation>Return</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1675" />
-      <location filename="../QScintilla/ShellWindow.py" line="461" />
+      <location filename="../QScintilla/MiniEditor.py" line="1671" />
+      <location filename="../QScintilla/ShellWindow.py" line="465" />
       <source>Enter</source>
       <translation>Enter</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
-      <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/ShellWindow.py" line="471" />
-      <location filename="../QScintilla/ShellWindow.py" line="470" />
+      <location filename="../QScintilla/MiniEditor.py" line="1555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1554" />
+      <location filename="../QScintilla/ShellWindow.py" line="475" />
+      <location filename="../QScintilla/ShellWindow.py" line="474" />
       <source>Delete previous character</source>
       <translation>Suppression du caractère précédent</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1560" />
-      <location filename="../QScintilla/ShellWindow.py" line="472" />
+      <location filename="../QScintilla/MiniEditor.py" line="1556" />
+      <location filename="../QScintilla/ShellWindow.py" line="476" />
       <source>Backspace</source>
       <translation>Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1567" />
-      <location filename="../QScintilla/ShellWindow.py" line="479" />
+      <location filename="../QScintilla/MiniEditor.py" line="1563" />
+      <location filename="../QScintilla/ShellWindow.py" line="483" />
       <source>Meta+H</source>
       <translation>Meta+H</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1572" />
-      <location filename="../QScintilla/ShellWindow.py" line="484" />
+      <location filename="../QScintilla/MiniEditor.py" line="1568" />
+      <location filename="../QScintilla/ShellWindow.py" line="488" />
       <source>Shift+Backspace</source>
       <translation>Shift+Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
-      <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/ShellWindow.py" line="493" />
-      <location filename="../QScintilla/ShellWindow.py" line="492" />
+      <location filename="../QScintilla/MiniEditor.py" line="1593" />
+      <location filename="../QScintilla/MiniEditor.py" line="1592" />
+      <location filename="../QScintilla/ShellWindow.py" line="497" />
+      <location filename="../QScintilla/ShellWindow.py" line="496" />
       <source>Delete current character</source>
       <translation>Suppression du caractère courant</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1598" />
-      <location filename="../QScintilla/ShellWindow.py" line="494" />
+      <location filename="../QScintilla/MiniEditor.py" line="1594" />
+      <location filename="../QScintilla/ShellWindow.py" line="498" />
       <source>Del</source>
       <translation>Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1605" />
-      <location filename="../QScintilla/ShellWindow.py" line="501" />
+      <location filename="../QScintilla/MiniEditor.py" line="1601" />
+      <location filename="../QScintilla/ShellWindow.py" line="505" />
       <source>Meta+D</source>
       <translation>Meta+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
-      <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/ShellWindow.py" line="509" />
-      <location filename="../QScintilla/ShellWindow.py" line="508" />
+      <location filename="../QScintilla/MiniEditor.py" line="1609" />
+      <location filename="../QScintilla/MiniEditor.py" line="1608" />
+      <location filename="../QScintilla/ShellWindow.py" line="513" />
+      <location filename="../QScintilla/ShellWindow.py" line="512" />
       <source>Delete word to left</source>
       <translation>Suppression du mot de gauche</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1614" />
-      <location filename="../QScintilla/ShellWindow.py" line="510" />
+      <location filename="../QScintilla/MiniEditor.py" line="1610" />
+      <location filename="../QScintilla/ShellWindow.py" line="514" />
       <source>Ctrl+Backspace</source>
       <translation>Ctrl+Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
-      <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/ShellWindow.py" line="521" />
-      <location filename="../QScintilla/ShellWindow.py" line="520" />
+      <location filename="../QScintilla/MiniEditor.py" line="1621" />
+      <location filename="../QScintilla/MiniEditor.py" line="1620" />
+      <location filename="../QScintilla/ShellWindow.py" line="525" />
+      <location filename="../QScintilla/ShellWindow.py" line="524" />
       <source>Delete word to right</source>
       <translation>Suppression du mot de droite</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1626" />
-      <location filename="../QScintilla/ShellWindow.py" line="522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1622" />
+      <location filename="../QScintilla/ShellWindow.py" line="526" />
       <source>Ctrl+Del</source>
       <translation>Ctrl+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
-      <location filename="../QScintilla/MiniEditor.py" line="1637" />
-      <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/ShellWindow.py" line="533" />
-      <location filename="../QScintilla/ShellWindow.py" line="532" />
+      <location filename="../QScintilla/MiniEditor.py" line="1633" />
+      <location filename="../QScintilla/MiniEditor.py" line="1632" />
+      <location filename="../QScintilla/ShellWindow.py" line="537" />
+      <location filename="../QScintilla/ShellWindow.py" line="536" />
       <source>Delete line to left</source>
       <translation>Suppression de la partie gauche de la ligne</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1639" />
-      <location filename="../QScintilla/ShellWindow.py" line="535" />
+      <location filename="../QScintilla/MiniEditor.py" line="1635" />
+      <location filename="../QScintilla/ShellWindow.py" line="539" />
       <source>Ctrl+Shift+Backspace</source>
       <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
-      <location filename="../QScintilla/MiniEditor.py" line="1651" />
-      <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/ShellWindow.py" line="547" />
-      <location filename="../QScintilla/ShellWindow.py" line="546" />
+      <location filename="../QScintilla/MiniEditor.py" line="1647" />
+      <location filename="../QScintilla/MiniEditor.py" line="1646" />
+      <location filename="../QScintilla/ShellWindow.py" line="551" />
+      <location filename="../QScintilla/ShellWindow.py" line="550" />
       <source>Delete line to right</source>
       <translation>Suppression de la partie droite de la ligne</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1659" />
-      <location filename="../QScintilla/ShellWindow.py" line="555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1655" />
+      <location filename="../QScintilla/ShellWindow.py" line="559" />
       <source>Meta+K</source>
       <translation>Meta+K</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1664" />
-      <location filename="../QScintilla/ShellWindow.py" line="560" />
+      <location filename="../QScintilla/MiniEditor.py" line="1660" />
+      <location filename="../QScintilla/ShellWindow.py" line="564" />
       <source>Ctrl+Shift+Del</source>
       <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
-      <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/ShellWindow.py" line="569" />
-      <location filename="../QScintilla/ShellWindow.py" line="568" />
+      <location filename="../QScintilla/MiniEditor.py" line="891" />
+      <location filename="../QScintilla/MiniEditor.py" line="890" />
+      <location filename="../QScintilla/ShellWindow.py" line="573" />
+      <location filename="../QScintilla/ShellWindow.py" line="572" />
       <source>Move left one character</source>
       <translation>Déplacement d'un caractère vers la gauche</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="896" />
-      <location filename="../QScintilla/ShellWindow.py" line="570" />
+      <location filename="../QScintilla/MiniEditor.py" line="892" />
+      <location filename="../QScintilla/ShellWindow.py" line="574" />
       <source>Left</source>
       <translation>Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="904" />
-      <location filename="../QScintilla/ShellWindow.py" line="578" />
+      <location filename="../QScintilla/MiniEditor.py" line="900" />
+      <location filename="../QScintilla/ShellWindow.py" line="582" />
       <source>Meta+B</source>
       <translation>Meta+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
-      <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/ShellWindow.py" line="585" />
-      <location filename="../QScintilla/ShellWindow.py" line="584" />
+      <location filename="../QScintilla/MiniEditor.py" line="907" />
+      <location filename="../QScintilla/MiniEditor.py" line="906" />
+      <location filename="../QScintilla/ShellWindow.py" line="589" />
+      <location filename="../QScintilla/ShellWindow.py" line="588" />
       <source>Move right one character</source>
       <translation>Déplacement d'un caractère vers la droite</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="912" />
-      <location filename="../QScintilla/ShellWindow.py" line="586" />
+      <location filename="../QScintilla/MiniEditor.py" line="908" />
+      <location filename="../QScintilla/ShellWindow.py" line="590" />
       <source>Right</source>
       <translation>Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="919" />
-      <location filename="../QScintilla/ShellWindow.py" line="593" />
+      <location filename="../QScintilla/MiniEditor.py" line="915" />
+      <location filename="../QScintilla/ShellWindow.py" line="597" />
       <source>Meta+F</source>
       <translation>Meta+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="991" />
-      <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/ShellWindow.py" line="601" />
-      <location filename="../QScintilla/ShellWindow.py" line="600" />
+      <location filename="../QScintilla/MiniEditor.py" line="987" />
+      <location filename="../QScintilla/MiniEditor.py" line="986" />
+      <location filename="../QScintilla/ShellWindow.py" line="605" />
+      <location filename="../QScintilla/ShellWindow.py" line="604" />
       <source>Move left one word</source>
       <translation>Déplacement d'un mot vers la gauche</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="999" />
-      <location filename="../QScintilla/MiniEditor.py" line="967" />
-      <location filename="../QScintilla/ShellWindow.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="995" />
+      <location filename="../QScintilla/MiniEditor.py" line="963" />
+      <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Alt+Left</source>
       <translation>Alt+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1059" />
-      <location filename="../QScintilla/MiniEditor.py" line="1003" />
-      <location filename="../QScintilla/ShellWindow.py" line="613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1055" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/ShellWindow.py" line="617" />
       <source>Ctrl+Left</source>
       <translation>Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
-      <location filename="../QScintilla/MiniEditor.py" line="1011" />
-      <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/ShellWindow.py" line="621" />
-      <location filename="../QScintilla/ShellWindow.py" line="620" />
+      <location filename="../QScintilla/MiniEditor.py" line="1007" />
+      <location filename="../QScintilla/MiniEditor.py" line="1006" />
+      <location filename="../QScintilla/ShellWindow.py" line="625" />
+      <location filename="../QScintilla/ShellWindow.py" line="624" />
       <source>Move right one word</source>
       <translation>Déplacement d'un mot vers la droite</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="1023" />
-      <location filename="../QScintilla/ShellWindow.py" line="629" />
+      <location filename="../QScintilla/MiniEditor.py" line="1809" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/ShellWindow.py" line="633" />
       <source>Ctrl+Right</source>
       <translation>Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1033" />
-      <location filename="../QScintilla/MiniEditor.py" line="1030" />
-      <location filename="../QScintilla/ShellWindow.py" line="639" />
-      <location filename="../QScintilla/ShellWindow.py" line="636" />
+      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1026" />
+      <location filename="../QScintilla/ShellWindow.py" line="643" />
+      <location filename="../QScintilla/ShellWindow.py" line="640" />
       <source>Move to first visible character in document line</source>
       <translation>Déplacement vers le premier caractère visible de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2074" />
-      <location filename="../QScintilla/MiniEditor.py" line="1043" />
-      <location filename="../QScintilla/ShellWindow.py" line="649" />
+      <location filename="../QScintilla/MiniEditor.py" line="2070" />
+      <location filename="../QScintilla/MiniEditor.py" line="1039" />
+      <location filename="../QScintilla/ShellWindow.py" line="653" />
       <source>Home</source>
       <translation>Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
-      <location filename="../QScintilla/MiniEditor.py" line="1071" />
-      <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/ShellWindow.py" line="657" />
-      <location filename="../QScintilla/ShellWindow.py" line="656" />
+      <location filename="../QScintilla/MiniEditor.py" line="1067" />
+      <location filename="../QScintilla/MiniEditor.py" line="1066" />
+      <location filename="../QScintilla/ShellWindow.py" line="661" />
+      <location filename="../QScintilla/ShellWindow.py" line="660" />
       <source>Move to end of document line</source>
       <translation>Déplacement à la fin de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1079" />
-      <location filename="../QScintilla/ShellWindow.py" line="665" />
+      <location filename="../QScintilla/MiniEditor.py" line="1075" />
+      <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>Meta+E</source>
       <translation>Meta+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1083" />
-      <location filename="../QScintilla/ShellWindow.py" line="669" />
+      <location filename="../QScintilla/MiniEditor.py" line="2087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
+      <location filename="../QScintilla/ShellWindow.py" line="673" />
       <source>End</source>
       <translation>End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
-      <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/ShellWindow.py" line="677" />
-      <location filename="../QScintilla/ShellWindow.py" line="676" />
+      <location filename="../QScintilla/MiniEditor.py" line="923" />
+      <location filename="../QScintilla/MiniEditor.py" line="922" />
+      <location filename="../QScintilla/ShellWindow.py" line="681" />
+      <location filename="../QScintilla/ShellWindow.py" line="680" />
       <source>Move up one line</source>
       <translation>Déplacement d'une ligne vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="928" />
-      <location filename="../QScintilla/ShellWindow.py" line="678" />
+      <location filename="../QScintilla/MiniEditor.py" line="924" />
+      <location filename="../QScintilla/ShellWindow.py" line="682" />
       <source>Up</source>
       <translation>Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="935" />
-      <location filename="../QScintilla/ShellWindow.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="689" />
       <source>Meta+P</source>
       <translation>Meta+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
-      <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/ShellWindow.py" line="693" />
-      <location filename="../QScintilla/ShellWindow.py" line="692" />
+      <location filename="../QScintilla/MiniEditor.py" line="939" />
+      <location filename="../QScintilla/MiniEditor.py" line="938" />
+      <location filename="../QScintilla/ShellWindow.py" line="697" />
+      <location filename="../QScintilla/ShellWindow.py" line="696" />
       <source>Move down one line</source>
       <translation>Déplacement d'une ligne vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="944" />
-      <location filename="../QScintilla/ShellWindow.py" line="694" />
+      <location filename="../QScintilla/MiniEditor.py" line="940" />
+      <location filename="../QScintilla/ShellWindow.py" line="698" />
       <source>Down</source>
       <translation>Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="951" />
-      <location filename="../QScintilla/ShellWindow.py" line="701" />
+      <location filename="../QScintilla/MiniEditor.py" line="947" />
+      <location filename="../QScintilla/ShellWindow.py" line="705" />
       <source>Meta+N</source>
       <translation>Meta+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1195" />
-      <location filename="../QScintilla/MiniEditor.py" line="1092" />
-      <location filename="../QScintilla/ShellWindow.py" line="710" />
+      <location filename="../QScintilla/MiniEditor.py" line="1191" />
+      <location filename="../QScintilla/MiniEditor.py" line="1088" />
+      <location filename="../QScintilla/ShellWindow.py" line="714" />
       <source>Ctrl+Down</source>
       <translation>Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1175" />
-      <location filename="../QScintilla/MiniEditor.py" line="1104" />
-      <location filename="../QScintilla/ShellWindow.py" line="722" />
+      <location filename="../QScintilla/MiniEditor.py" line="1171" />
+      <location filename="../QScintilla/MiniEditor.py" line="1100" />
+      <location filename="../QScintilla/ShellWindow.py" line="726" />
       <source>Ctrl+Up</source>
       <translation>Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
-      <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/ShellWindow.py" line="733" />
-      <location filename="../QScintilla/ShellWindow.py" line="732" />
+      <location filename="../QScintilla/MiniEditor.py" line="1135" />
+      <location filename="../QScintilla/MiniEditor.py" line="1134" />
+      <location filename="../QScintilla/ShellWindow.py" line="737" />
+      <location filename="../QScintilla/ShellWindow.py" line="736" />
       <source>Move up one page</source>
       <translation>Déplacement d'une page vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1140" />
-      <location filename="../QScintilla/ShellWindow.py" line="734" />
+      <location filename="../QScintilla/MiniEditor.py" line="1136" />
+      <location filename="../QScintilla/ShellWindow.py" line="738" />
       <source>PgUp</source>
       <translation>PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/ShellWindow.py" line="745" />
-      <location filename="../QScintilla/ShellWindow.py" line="744" />
+      <location filename="../QScintilla/MiniEditor.py" line="1147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1146" />
+      <location filename="../QScintilla/ShellWindow.py" line="749" />
+      <location filename="../QScintilla/ShellWindow.py" line="748" />
       <source>Move down one page</source>
       <translation>Déplacement d'une page vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1152" />
-      <location filename="../QScintilla/ShellWindow.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="1148" />
+      <location filename="../QScintilla/ShellWindow.py" line="750" />
       <source>PgDown</source>
       <translation>PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1159" />
-      <location filename="../QScintilla/ShellWindow.py" line="753" />
+      <location filename="../QScintilla/MiniEditor.py" line="1155" />
+      <location filename="../QScintilla/ShellWindow.py" line="757" />
       <source>Meta+V</source>
       <translation>Meta+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
-      <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/ShellWindow.py" line="761" />
-      <location filename="../QScintilla/ShellWindow.py" line="760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1855" />
+      <location filename="../QScintilla/MiniEditor.py" line="1854" />
+      <location filename="../QScintilla/ShellWindow.py" line="765" />
+      <location filename="../QScintilla/ShellWindow.py" line="764" />
       <source>Escape</source>
       <translation>Echappement</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1860" />
-      <location filename="../QScintilla/ShellWindow.py" line="762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1856" />
+      <location filename="../QScintilla/ShellWindow.py" line="766" />
       <source>Esc</source>
       <translation>Esc</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1233" />
-      <location filename="../QScintilla/MiniEditor.py" line="1230" />
-      <location filename="../QScintilla/ShellWindow.py" line="775" />
-      <location filename="../QScintilla/ShellWindow.py" line="772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1226" />
+      <location filename="../QScintilla/ShellWindow.py" line="779" />
+      <location filename="../QScintilla/ShellWindow.py" line="776" />
       <source>Extend selection left one character</source>
       <translation>Extension de la sélection d'un caractère vers la gauche</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1236" />
-      <location filename="../QScintilla/ShellWindow.py" line="778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1232" />
+      <location filename="../QScintilla/ShellWindow.py" line="782" />
       <source>Shift+Left</source>
       <translation>Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1243" />
-      <location filename="../QScintilla/ShellWindow.py" line="785" />
+      <location filename="../QScintilla/MiniEditor.py" line="1239" />
+      <location filename="../QScintilla/ShellWindow.py" line="789" />
       <source>Meta+Shift+B</source>
       <translation>Meta+Shift+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1253" />
-      <location filename="../QScintilla/MiniEditor.py" line="1250" />
-      <location filename="../QScintilla/ShellWindow.py" line="795" />
-      <location filename="../QScintilla/ShellWindow.py" line="792" />
+      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1246" />
+      <location filename="../QScintilla/ShellWindow.py" line="799" />
+      <location filename="../QScintilla/ShellWindow.py" line="796" />
       <source>Extend selection right one character</source>
       <translation>Extension de la sélection d'un caractère vers la droite</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1256" />
-      <location filename="../QScintilla/ShellWindow.py" line="798" />
+      <location filename="../QScintilla/MiniEditor.py" line="1252" />
+      <location filename="../QScintilla/ShellWindow.py" line="802" />
       <source>Shift+Right</source>
       <translation>Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1263" />
-      <location filename="../QScintilla/ShellWindow.py" line="805" />
+      <location filename="../QScintilla/MiniEditor.py" line="1259" />
+      <location filename="../QScintilla/ShellWindow.py" line="809" />
       <source>Meta+Shift+F</source>
       <translation>Meta+Shift+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
-      <location filename="../QScintilla/MiniEditor.py" line="1347" />
-      <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/ShellWindow.py" line="813" />
-      <location filename="../QScintilla/ShellWindow.py" line="812" />
+      <location filename="../QScintilla/MiniEditor.py" line="1343" />
+      <location filename="../QScintilla/MiniEditor.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="817" />
+      <location filename="../QScintilla/ShellWindow.py" line="816" />
       <source>Extend selection left one word</source>
       <translation>Extension de la sélection d'un mot vers la gauche</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1356" />
-      <location filename="../QScintilla/MiniEditor.py" line="1316" />
-      <location filename="../QScintilla/ShellWindow.py" line="822" />
+      <location filename="../QScintilla/MiniEditor.py" line="1352" />
+      <location filename="../QScintilla/MiniEditor.py" line="1312" />
+      <location filename="../QScintilla/ShellWindow.py" line="826" />
       <source>Alt+Shift+Left</source>
       <translation>Alt+Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2277" />
-      <location filename="../QScintilla/MiniEditor.py" line="1362" />
-      <location filename="../QScintilla/ShellWindow.py" line="828" />
+      <location filename="../QScintilla/MiniEditor.py" line="2273" />
+      <location filename="../QScintilla/MiniEditor.py" line="1358" />
+      <location filename="../QScintilla/ShellWindow.py" line="832" />
       <source>Ctrl+Shift+Left</source>
       <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1373" />
-      <location filename="../QScintilla/MiniEditor.py" line="1370" />
-      <location filename="../QScintilla/ShellWindow.py" line="839" />
-      <location filename="../QScintilla/ShellWindow.py" line="836" />
+      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1366" />
+      <location filename="../QScintilla/ShellWindow.py" line="843" />
+      <location filename="../QScintilla/ShellWindow.py" line="840" />
       <source>Extend selection right one word</source>
       <translation>Extension de la sélection d'un mot vers la droite</translation>
     </message>
@@ -92414,60 +92522,60 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1384" />
-      <location filename="../QScintilla/MiniEditor.py" line="1338" />
-      <location filename="../QScintilla/ShellWindow.py" line="850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1380" />
+      <location filename="../QScintilla/MiniEditor.py" line="1334" />
+      <location filename="../QScintilla/ShellWindow.py" line="854" />
       <source>Alt+Shift+Right</source>
       <translation>Alt+Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1838" />
-      <location filename="../QScintilla/MiniEditor.py" line="1390" />
-      <location filename="../QScintilla/ShellWindow.py" line="856" />
+      <location filename="../QScintilla/MiniEditor.py" line="1834" />
+      <location filename="../QScintilla/MiniEditor.py" line="1386" />
+      <location filename="../QScintilla/ShellWindow.py" line="860" />
       <source>Ctrl+Shift+Right</source>
       <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1402" />
       <location filename="../QScintilla/MiniEditor.py" line="1398" />
+      <location filename="../QScintilla/MiniEditor.py" line="1394" />
+      <location filename="../QScintilla/ShellWindow.py" line="872" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
-      <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
       <translation>Extension de la sélection au premier caractère visible de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1413" />
-      <location filename="../QScintilla/ShellWindow.py" line="879" />
+      <location filename="../QScintilla/MiniEditor.py" line="1409" />
+      <location filename="../QScintilla/ShellWindow.py" line="883" />
       <source>Shift+Home</source>
       <translation>Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1423" />
-      <location filename="../QScintilla/MiniEditor.py" line="1420" />
-      <location filename="../QScintilla/ShellWindow.py" line="889" />
-      <location filename="../QScintilla/ShellWindow.py" line="886" />
+      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1416" />
+      <location filename="../QScintilla/ShellWindow.py" line="893" />
+      <location filename="../QScintilla/ShellWindow.py" line="890" />
       <source>Extend selection to end of document line</source>
       <translation>Extension de la sélection à la fin de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1433" />
-      <location filename="../QScintilla/ShellWindow.py" line="899" />
+      <location filename="../QScintilla/MiniEditor.py" line="1429" />
+      <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Meta+Shift+E</source>
       <translation>Meta+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1437" />
-      <location filename="../QScintilla/ShellWindow.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
+      <location filename="../QScintilla/ShellWindow.py" line="907" />
       <source>Shift+End</source>
       <translation>Shift+End</translation>
     </message>
@@ -92475,255 +92583,255 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2533" />
-      <location filename="../QScintilla/ShellWindow.py" line="917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2529" />
+      <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Search</source>
       <translation>Rechercher</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2535" />
-      <location filename="../QScintilla/ShellWindow.py" line="919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2531" />
+      <location filename="../QScintilla/ShellWindow.py" line="923" />
       <source>&amp;Search...</source>
       <translation>Re&amp;chercher...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2537" />
-      <location filename="../QScintilla/ShellWindow.py" line="921" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
+      <location filename="../QScintilla/ShellWindow.py" line="925" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
       <translation>Ctrl+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2544" />
-      <location filename="../QScintilla/ShellWindow.py" line="928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2540" />
+      <location filename="../QScintilla/ShellWindow.py" line="932" />
       <source>Search for a text</source>
       <translation>Recherche de texte</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="935" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2559" />
-      <location filename="../QScintilla/ShellWindow.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="2555" />
+      <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>Search next</source>
       <translation>Chercher suivant</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2561" />
-      <location filename="../QScintilla/ShellWindow.py" line="945" />
+      <location filename="../QScintilla/MiniEditor.py" line="2557" />
+      <location filename="../QScintilla/ShellWindow.py" line="949" />
       <source>Search &amp;next</source>
       <translation>Chercher &amp;suivant</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2563" />
-      <location filename="../QScintilla/ShellWindow.py" line="947" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
+      <location filename="../QScintilla/ShellWindow.py" line="951" />
       <source>F3</source>
       <comment>Search|Search next</comment>
       <translation>F3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2570" />
-      <location filename="../QScintilla/ShellWindow.py" line="954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2566" />
+      <location filename="../QScintilla/ShellWindow.py" line="958" />
       <source>Search next occurrence of text</source>
       <translation>Recherche de l'occurence de texte suivante</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="957" />
+      <location filename="../QScintilla/ShellWindow.py" line="961" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2585" />
-      <location filename="../QScintilla/ShellWindow.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="2581" />
+      <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Search previous</source>
       <translation>Chercher précédent</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2587" />
-      <location filename="../QScintilla/ShellWindow.py" line="973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2583" />
+      <location filename="../QScintilla/ShellWindow.py" line="977" />
       <source>Search &amp;previous</source>
       <translation>Chercher &amp;précédent</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2589" />
-      <location filename="../QScintilla/ShellWindow.py" line="975" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
+      <location filename="../QScintilla/ShellWindow.py" line="979" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
       <translation>Shift+F3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2598" />
-      <location filename="../QScintilla/ShellWindow.py" line="984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2594" />
+      <location filename="../QScintilla/ShellWindow.py" line="988" />
       <source>Search previous occurrence of text</source>
       <translation>Recherche de l'occurence de texte précédente</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="989" />
+      <location filename="../QScintilla/ShellWindow.py" line="993" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2758" />
-      <location filename="../QScintilla/ShellWindow.py" line="1010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2754" />
+      <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Zoom in</source>
       <translation>Zoom avant</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2760" />
-      <location filename="../QScintilla/ShellWindow.py" line="1012" />
+      <location filename="../QScintilla/MiniEditor.py" line="2756" />
+      <location filename="../QScintilla/ShellWindow.py" line="1016" />
       <source>Zoom &amp;in</source>
       <translation>Zoom a&amp;vant</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2762" />
-      <location filename="../QScintilla/ShellWindow.py" line="1014" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
+      <location filename="../QScintilla/ShellWindow.py" line="1018" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
       <translation>Ctrl++</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2765" />
-      <location filename="../QScintilla/ShellWindow.py" line="1017" />
+      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/ShellWindow.py" line="1021" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
       <translation>Zoom avant</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2771" />
-      <location filename="../QScintilla/ShellWindow.py" line="1023" />
+      <location filename="../QScintilla/MiniEditor.py" line="2767" />
+      <location filename="../QScintilla/ShellWindow.py" line="1027" />
       <source>Zoom in on the text</source>
       <translation>Zoom sur le texte</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2774" />
-      <location filename="../QScintilla/ShellWindow.py" line="1026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/ShellWindow.py" line="1030" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zoom avant&lt;/b&gt;&lt;p&gt;Zoom sur le texte. Affiche le texte en plus gros.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2784" />
-      <location filename="../QScintilla/ShellWindow.py" line="1036" />
+      <location filename="../QScintilla/MiniEditor.py" line="2780" />
+      <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Zoom out</source>
       <translation>Zoom arrière</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2786" />
-      <location filename="../QScintilla/ShellWindow.py" line="1038" />
+      <location filename="../QScintilla/MiniEditor.py" line="2782" />
+      <location filename="../QScintilla/ShellWindow.py" line="1042" />
       <source>Zoom &amp;out</source>
       <translation>Zoom a&amp;rrière</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2788" />
-      <location filename="../QScintilla/ShellWindow.py" line="1040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
+      <location filename="../QScintilla/ShellWindow.py" line="1044" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
       <translation>Ctrl+-</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2791" />
-      <location filename="../QScintilla/ShellWindow.py" line="1043" />
+      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/ShellWindow.py" line="1047" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
       <translation>Zoom arrière</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2797" />
-      <location filename="../QScintilla/ShellWindow.py" line="1049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2793" />
+      <location filename="../QScintilla/ShellWindow.py" line="1053" />
       <source>Zoom out on the text</source>
       <translation>Zoom arrière du texte</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2800" />
-      <location filename="../QScintilla/ShellWindow.py" line="1052" />
+      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/ShellWindow.py" line="1056" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zoom arrière&lt;/b&gt;&lt;p&gt;Zoom arrière du texte. Affiche le texte en plus petit.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2810" />
-      <location filename="../QScintilla/ShellWindow.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="2806" />
+      <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Zoom reset</source>
       <translation>Annulation du zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2812" />
-      <location filename="../QScintilla/ShellWindow.py" line="1064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2808" />
+      <location filename="../QScintilla/ShellWindow.py" line="1068" />
       <source>Zoom &amp;reset</source>
       <translation>Annulation du &amp;zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2814" />
-      <location filename="../QScintilla/ShellWindow.py" line="1066" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
+      <location filename="../QScintilla/ShellWindow.py" line="1070" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
       <translation>Ctrl+0</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2821" />
-      <location filename="../QScintilla/ShellWindow.py" line="1073" />
+      <location filename="../QScintilla/MiniEditor.py" line="2817" />
+      <location filename="../QScintilla/ShellWindow.py" line="1077" />
       <source>Reset the zoom of the text</source>
       <translation>Annulation du zoom du texte</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2824" />
-      <location filename="../QScintilla/ShellWindow.py" line="1076" />
+      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/ShellWindow.py" line="1080" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Annulation du zoom&lt;/b&gt;&lt;p&gt;Annulation du zoom du texte. Ceci met le facteur de zoom à 100%. &lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2835" />
-      <location filename="../QScintilla/ShellWindow.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="2831" />
+      <location filename="../QScintilla/ShellWindow.py" line="1091" />
       <source>Zoom</source>
       <translation>Zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2837" />
-      <location filename="../QScintilla/ShellWindow.py" line="1089" />
+      <location filename="../QScintilla/MiniEditor.py" line="2833" />
+      <location filename="../QScintilla/ShellWindow.py" line="1093" />
       <source>&amp;Zoom</source>
       <translation>&amp;Zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2844" />
-      <location filename="../QScintilla/ShellWindow.py" line="1096" />
+      <location filename="../QScintilla/MiniEditor.py" line="2840" />
+      <location filename="../QScintilla/ShellWindow.py" line="1100" />
       <source>Zoom the text</source>
       <translation>Zoom du texte</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2847" />
-      <location filename="../QScintilla/ShellWindow.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/ShellWindow.py" line="1103" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom du texte. Ouvre une fenêtre pour entrer la taille souhaitée.&lt;/p&gt;</translation>
     </message>
@@ -92737,977 +92845,977 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
-      <location filename="../QScintilla/MiniEditor.py" line="959" />
-      <location filename="../QScintilla/MiniEditor.py" line="958" />
+      <location filename="../QScintilla/MiniEditor.py" line="955" />
+      <location filename="../QScintilla/MiniEditor.py" line="954" />
       <source>Move left one word part</source>
       <translation>Déplacement d'une part de mot vers la gauche</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
-      <location filename="../QScintilla/MiniEditor.py" line="975" />
-      <location filename="../QScintilla/MiniEditor.py" line="974" />
+      <location filename="../QScintilla/MiniEditor.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="970" />
       <source>Move right one word part</source>
       <translation>Déplacement d'une part de mot vers la droite</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2129" />
-      <location filename="../QScintilla/MiniEditor.py" line="1019" />
-      <location filename="../QScintilla/MiniEditor.py" line="983" />
+      <location filename="../QScintilla/MiniEditor.py" line="2125" />
+      <location filename="../QScintilla/MiniEditor.py" line="1015" />
+      <location filename="../QScintilla/MiniEditor.py" line="979" />
       <source>Alt+Right</source>
       <translation>Alt+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
-      <location filename="../QScintilla/MiniEditor.py" line="1051" />
-      <location filename="../QScintilla/MiniEditor.py" line="1050" />
+      <location filename="../QScintilla/MiniEditor.py" line="1047" />
+      <location filename="../QScintilla/MiniEditor.py" line="1046" />
       <source>Move to start of display line</source>
       <translation>Déplacement au début de la ligne courante</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1063" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
       <source>Alt+Home</source>
       <translation>Alt+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1090" />
+      <location filename="../QScintilla/MiniEditor.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1086" />
       <source>Scroll view down one line</source>
       <translation>Descend la vue d'une ligne</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
-      <location filename="../QScintilla/MiniEditor.py" line="1102" />
+      <location filename="../QScintilla/MiniEditor.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="1098" />
       <source>Scroll view up one line</source>
       <translation>Monte la vue d'une ligne</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
-      <location filename="../QScintilla/MiniEditor.py" line="1114" />
+      <location filename="../QScintilla/MiniEditor.py" line="1111" />
+      <location filename="../QScintilla/MiniEditor.py" line="1110" />
       <source>Move up one paragraph</source>
       <translation>Déplacement d'un paragraphe vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1116" />
+      <location filename="../QScintilla/MiniEditor.py" line="1112" />
       <source>Alt+Up</source>
       <translation>Alt+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
-      <location filename="../QScintilla/MiniEditor.py" line="1126" />
+      <location filename="../QScintilla/MiniEditor.py" line="1123" />
+      <location filename="../QScintilla/MiniEditor.py" line="1122" />
       <source>Move down one paragraph</source>
       <translation>Déplacement d'un paragraphe vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1128" />
+      <location filename="../QScintilla/MiniEditor.py" line="1124" />
       <source>Alt+Down</source>
       <translation>Alt+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
-      <location filename="../QScintilla/MiniEditor.py" line="1167" />
-      <location filename="../QScintilla/MiniEditor.py" line="1166" />
+      <location filename="../QScintilla/MiniEditor.py" line="1163" />
+      <location filename="../QScintilla/MiniEditor.py" line="1162" />
       <source>Move to start of document</source>
       <translation>Déplacement au début du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1179" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
       <source>Ctrl+Home</source>
       <translation>Ctrl+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
-      <location filename="../QScintilla/MiniEditor.py" line="1187" />
-      <location filename="../QScintilla/MiniEditor.py" line="1186" />
+      <location filename="../QScintilla/MiniEditor.py" line="1183" />
+      <location filename="../QScintilla/MiniEditor.py" line="1182" />
       <source>Move to end of document</source>
       <translation>Déplacement à la fin du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1199" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
       <source>Ctrl+End</source>
       <translation>Ctrl+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
-      <location filename="../QScintilla/MiniEditor.py" line="1218" />
+      <location filename="../QScintilla/MiniEditor.py" line="1215" />
+      <location filename="../QScintilla/MiniEditor.py" line="1214" />
       <source>Unindent one level</source>
       <translation>Désindentation d'un niveau</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1220" />
+      <location filename="../QScintilla/MiniEditor.py" line="1216" />
       <source>Shift+Tab</source>
       <translation>Shift+Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
-      <location filename="../QScintilla/MiniEditor.py" line="1270" />
+      <location filename="../QScintilla/MiniEditor.py" line="1267" />
+      <location filename="../QScintilla/MiniEditor.py" line="1266" />
       <source>Extend selection up one line</source>
       <translation>Extension de la sélection d'une ligne vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1272" />
+      <location filename="../QScintilla/MiniEditor.py" line="1268" />
       <source>Shift+Up</source>
       <translation>Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1279" />
+      <location filename="../QScintilla/MiniEditor.py" line="1275" />
       <source>Meta+Shift+P</source>
       <translation>Meta+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
-      <location filename="../QScintilla/MiniEditor.py" line="1286" />
+      <location filename="../QScintilla/MiniEditor.py" line="1283" />
+      <location filename="../QScintilla/MiniEditor.py" line="1282" />
       <source>Extend selection down one line</source>
       <translation>Extension de la sélection d'une ligne vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1288" />
+      <location filename="../QScintilla/MiniEditor.py" line="1284" />
       <source>Shift+Down</source>
       <translation>Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1291" />
       <source>Meta+Shift+N</source>
       <translation>Meta+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1305" />
-      <location filename="../QScintilla/MiniEditor.py" line="1302" />
+      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1298" />
       <source>Extend selection left one word part</source>
       <translation>Extension de la sélection d'une part de mot vers la gauche</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1327" />
-      <location filename="../QScintilla/MiniEditor.py" line="1324" />
+      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1320" />
       <source>Extend selection right one word part</source>
       <translation>Extension de la sélection d'une part de mot vers la droite</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1447" />
-      <location filename="../QScintilla/MiniEditor.py" line="1444" />
+      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1440" />
       <source>Extend selection up one paragraph</source>
       <translation>Extension de la sélection d'un paragraphe vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1450" />
+      <location filename="../QScintilla/MiniEditor.py" line="1446" />
       <source>Alt+Shift+Up</source>
       <translation>Alt+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1463" />
-      <location filename="../QScintilla/MiniEditor.py" line="1460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1456" />
       <source>Extend selection down one paragraph</source>
       <translation>Extension de la sélection d'un paragraphe vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1466" />
+      <location filename="../QScintilla/MiniEditor.py" line="1462" />
       <source>Alt+Shift+Down</source>
       <translation>Alt+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
-      <location filename="../QScintilla/MiniEditor.py" line="1476" />
+      <location filename="../QScintilla/MiniEditor.py" line="1473" />
+      <location filename="../QScintilla/MiniEditor.py" line="1472" />
       <source>Extend selection up one page</source>
       <translation>Extension de la sélection d'une page vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1478" />
+      <location filename="../QScintilla/MiniEditor.py" line="1474" />
       <source>Shift+PgUp</source>
       <translation>Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
-      <location filename="../QScintilla/MiniEditor.py" line="1488" />
+      <location filename="../QScintilla/MiniEditor.py" line="1485" />
+      <location filename="../QScintilla/MiniEditor.py" line="1484" />
       <source>Extend selection down one page</source>
       <translation>Extension de la sélection d'une page vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1490" />
+      <location filename="../QScintilla/MiniEditor.py" line="1486" />
       <source>Shift+PgDown</source>
       <translation>Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1497" />
+      <location filename="../QScintilla/MiniEditor.py" line="1493" />
       <source>Meta+Shift+V</source>
       <translation>Meta+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1507" />
-      <location filename="../QScintilla/MiniEditor.py" line="1504" />
+      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1500" />
       <source>Extend selection to start of document</source>
       <translation>Extension de la sélection à la fin du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1517" />
+      <location filename="../QScintilla/MiniEditor.py" line="1513" />
       <source>Ctrl+Shift+Up</source>
       <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1518" />
       <source>Ctrl+Shift+Home</source>
       <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1533" />
-      <location filename="../QScintilla/MiniEditor.py" line="1530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1526" />
       <source>Extend selection to end of document</source>
       <translation>Extension de la sélection à la fin du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1544" />
+      <location filename="../QScintilla/MiniEditor.py" line="1540" />
       <source>Ctrl+Shift+Down</source>
       <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1550" />
+      <location filename="../QScintilla/MiniEditor.py" line="1546" />
       <source>Ctrl+Shift+End</source>
       <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1583" />
-      <location filename="../QScintilla/MiniEditor.py" line="1580" />
+      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1576" />
       <source>Delete previous character if not at start of line</source>
       <translation>Suppression du caractère précédent sauf en début de ligne</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
-      <location filename="../QScintilla/MiniEditor.py" line="1696" />
+      <location filename="../QScintilla/MiniEditor.py" line="1693" />
+      <location filename="../QScintilla/MiniEditor.py" line="1692" />
       <source>Duplicate current line</source>
       <translation>Duplication de la ligne courante</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1698" />
+      <location filename="../QScintilla/MiniEditor.py" line="1694" />
       <source>Ctrl+D</source>
       <translation>Ctrl+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1711" />
-      <location filename="../QScintilla/MiniEditor.py" line="1708" />
+      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1704" />
       <source>Swap current and previous lines</source>
       <translation>Permuter la ligne courante avec la précédente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1714" />
+      <location filename="../QScintilla/MiniEditor.py" line="1710" />
       <source>Ctrl+T</source>
       <translation>Ctrl+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
-      <location filename="../QScintilla/MiniEditor.py" line="1724" />
+      <location filename="../QScintilla/MiniEditor.py" line="1721" />
+      <location filename="../QScintilla/MiniEditor.py" line="1720" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1726" />
+      <location filename="../QScintilla/MiniEditor.py" line="1722" />
       <source>Meta+Alt+R</source>
       <translation>Meta+Alt+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
-      <location filename="../QScintilla/MiniEditor.py" line="1736" />
+      <location filename="../QScintilla/MiniEditor.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="1732" />
       <source>Cut current line</source>
       <translation>Couper la ligne courante</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1738" />
+      <location filename="../QScintilla/MiniEditor.py" line="1734" />
       <source>Alt+Shift+L</source>
       <translation>Alt+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="1748" />
+      <location filename="../QScintilla/MiniEditor.py" line="1745" />
+      <location filename="../QScintilla/MiniEditor.py" line="1744" />
       <source>Copy current line</source>
       <translation>Copier la ligne courante</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1750" />
+      <location filename="../QScintilla/MiniEditor.py" line="1746" />
       <source>Ctrl+Shift+T</source>
       <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
-      <location filename="../QScintilla/MiniEditor.py" line="1760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1757" />
+      <location filename="../QScintilla/MiniEditor.py" line="1756" />
       <source>Toggle insert/overtype</source>
       <translation>Basculer de mode Insertion /Ecrasement</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1758" />
       <source>Ins</source>
       <translation>Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1775" />
-      <location filename="../QScintilla/MiniEditor.py" line="1772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1768" />
       <source>Convert selection to lower case</source>
       <translation>Conversion de la sélection en minuscules</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1774" />
       <source>Alt+Shift+U</source>
       <translation>Alt+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1791" />
-      <location filename="../QScintilla/MiniEditor.py" line="1788" />
+      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1784" />
       <source>Convert selection to upper case</source>
       <translation>Conversion de la sélection en majuscules</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1794" />
+      <location filename="../QScintilla/MiniEditor.py" line="1790" />
       <source>Ctrl+Shift+U</source>
       <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
-      <location filename="../QScintilla/MiniEditor.py" line="1805" />
-      <location filename="../QScintilla/MiniEditor.py" line="1804" />
+      <location filename="../QScintilla/MiniEditor.py" line="1801" />
+      <location filename="../QScintilla/MiniEditor.py" line="1800" />
       <source>Move to end of display line</source>
       <translation>Déplacement à la fin de la ligne affichée</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1817" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
       <source>Alt+End</source>
       <translation>Alt+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1827" />
-      <location filename="../QScintilla/MiniEditor.py" line="1824" />
+      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1820" />
       <source>Extend selection to end of display line</source>
       <translation>Extension de la sélection à la fin de la ligne affichée</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
-      <location filename="../QScintilla/MiniEditor.py" line="1847" />
-      <location filename="../QScintilla/MiniEditor.py" line="1846" />
+      <location filename="../QScintilla/MiniEditor.py" line="1843" />
+      <location filename="../QScintilla/MiniEditor.py" line="1842" />
       <source>Formfeed</source>
       <translation>Chargement de page</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1873" />
-      <location filename="../QScintilla/MiniEditor.py" line="1870" />
+      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1866" />
       <source>Extend rectangular selection down one line</source>
       <translation>Extension de la sélection rectangulaire d'une ligne vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1876" />
+      <location filename="../QScintilla/MiniEditor.py" line="1872" />
       <source>Alt+Ctrl+Down</source>
       <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1884" />
+      <location filename="../QScintilla/MiniEditor.py" line="1880" />
       <source>Meta+Alt+Shift+N</source>
       <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1895" />
-      <location filename="../QScintilla/MiniEditor.py" line="1892" />
+      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1888" />
       <source>Extend rectangular selection up one line</source>
       <translation>Extension de la sélection rectangulaire d'une ligne vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1898" />
+      <location filename="../QScintilla/MiniEditor.py" line="1894" />
       <source>Alt+Ctrl+Up</source>
       <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1906" />
+      <location filename="../QScintilla/MiniEditor.py" line="1902" />
       <source>Meta+Alt+Shift+P</source>
       <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1917" />
-      <location filename="../QScintilla/MiniEditor.py" line="1914" />
+      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1910" />
       <source>Extend rectangular selection left one character</source>
       <translation>Extension de la sélection rectangulaire d'un caractère vers la gauche</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1920" />
+      <location filename="../QScintilla/MiniEditor.py" line="1916" />
       <source>Alt+Ctrl+Left</source>
       <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1928" />
+      <location filename="../QScintilla/MiniEditor.py" line="1924" />
       <source>Meta+Alt+Shift+B</source>
       <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1939" />
-      <location filename="../QScintilla/MiniEditor.py" line="1936" />
+      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1932" />
       <source>Extend rectangular selection right one character</source>
       <translation>Extension de la sélection rectangulaire d'un caractère vers la droite</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1942" />
+      <location filename="../QScintilla/MiniEditor.py" line="1938" />
       <source>Alt+Ctrl+Right</source>
       <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1950" />
+      <location filename="../QScintilla/MiniEditor.py" line="1946" />
       <source>Meta+Alt+Shift+F</source>
       <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1963" />
-      <location filename="../QScintilla/MiniEditor.py" line="1958" />
+      <location filename="../QScintilla/MiniEditor.py" line="1959" />
+      <location filename="../QScintilla/MiniEditor.py" line="1954" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation>Extension de la sélection rectangulaire au premier caractère visible du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1976" />
+      <location filename="../QScintilla/MiniEditor.py" line="1972" />
       <source>Alt+Shift+Home</source>
       <translation>Alt+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1987" />
-      <location filename="../QScintilla/MiniEditor.py" line="1984" />
+      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1980" />
       <source>Extend rectangular selection to end of document line</source>
       <translation>Extension de la sélection rectangulaire à la fin de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1998" />
+      <location filename="../QScintilla/MiniEditor.py" line="1994" />
       <source>Meta+Alt+Shift+E</source>
       <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2003" />
+      <location filename="../QScintilla/MiniEditor.py" line="1999" />
       <source>Alt+Shift+End</source>
       <translation>Alt+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2013" />
-      <location filename="../QScintilla/MiniEditor.py" line="2010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2006" />
       <source>Extend rectangular selection up one page</source>
       <translation>Extension de la sélection rectangulaire d'une page vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2016" />
+      <location filename="../QScintilla/MiniEditor.py" line="2012" />
       <source>Alt+Shift+PgUp</source>
       <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2029" />
-      <location filename="../QScintilla/MiniEditor.py" line="2026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2022" />
       <source>Extend rectangular selection down one page</source>
       <translation>Extension de la sélection rectangulaire d'une page vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2032" />
+      <location filename="../QScintilla/MiniEditor.py" line="2028" />
       <source>Alt+Shift+PgDown</source>
       <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2036" />
       <source>Meta+Alt+Shift+V</source>
       <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="2048" />
+      <location filename="../QScintilla/MiniEditor.py" line="2511" />
+      <location filename="../QScintilla/MiniEditor.py" line="2510" />
+      <location filename="../QScintilla/MiniEditor.py" line="2045" />
+      <location filename="../QScintilla/MiniEditor.py" line="2044" />
       <source>Duplicate current selection</source>
       <translation>Duplication de la sélection courante</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2516" />
-      <location filename="../QScintilla/MiniEditor.py" line="2050" />
+      <location filename="../QScintilla/MiniEditor.py" line="2512" />
+      <location filename="../QScintilla/MiniEditor.py" line="2046" />
       <source>Ctrl+Shift+D</source>
       <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2064" />
-      <location filename="../QScintilla/MiniEditor.py" line="2061" />
+      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2057" />
       <source>Scroll to start of document</source>
       <translation>Défilement au début du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
-      <location filename="../QScintilla/MiniEditor.py" line="2083" />
-      <location filename="../QScintilla/MiniEditor.py" line="2082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2079" />
+      <location filename="../QScintilla/MiniEditor.py" line="2078" />
       <source>Scroll to end of document</source>
       <translation>Défilement à la fin du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2102" />
-      <location filename="../QScintilla/MiniEditor.py" line="2099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2095" />
       <source>Scroll vertically to center current line</source>
       <translation>Défilement vertical de façon à centrer la ligne courante</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2112" />
+      <location filename="../QScintilla/MiniEditor.py" line="2108" />
       <source>Meta+L</source>
       <translation>Meta+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
-      <location filename="../QScintilla/MiniEditor.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2120" />
+      <location filename="../QScintilla/MiniEditor.py" line="2117" />
+      <location filename="../QScintilla/MiniEditor.py" line="2116" />
       <source>Move to end of next word</source>
       <translation>Déplacement à la fin du mot suivant</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2140" />
-      <location filename="../QScintilla/MiniEditor.py" line="2137" />
+      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2133" />
       <source>Extend selection to end of next word</source>
       <translation>Extension de la séleciton à la fin du mot suivant</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2163" />
-      <location filename="../QScintilla/MiniEditor.py" line="2160" />
+      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2156" />
       <source>Move to end of previous word</source>
       <translation>Déplacement à la fin du mot précédent</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2180" />
-      <location filename="../QScintilla/MiniEditor.py" line="2177" />
+      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2173" />
       <source>Extend selection to end of previous word</source>
       <translation>Extension de la séleciton à la fin du mot précédent</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2197" />
-      <location filename="../QScintilla/MiniEditor.py" line="2194" />
+      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2190" />
       <source>Move to start of document line</source>
       <translation>Déplacement au début de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2207" />
+      <location filename="../QScintilla/MiniEditor.py" line="2203" />
       <source>Meta+A</source>
       <translation>Meta+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2218" />
-      <location filename="../QScintilla/MiniEditor.py" line="2215" />
+      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2211" />
       <source>Extend selection to start of document line</source>
       <translation>Extension de la sélection au début de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2229" />
+      <location filename="../QScintilla/MiniEditor.py" line="2225" />
       <source>Meta+Shift+A</source>
       <translation>Meta+Shift+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2242" />
       <location filename="../QScintilla/MiniEditor.py" line="2238" />
+      <location filename="../QScintilla/MiniEditor.py" line="2234" />
       <source>Extend rectangular selection to start of document line</source>
       <translation>Extension de la sélection rectangulaire au début de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2254" />
+      <location filename="../QScintilla/MiniEditor.py" line="2250" />
       <source>Meta+Alt+Shift+A</source>
       <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2266" />
-      <location filename="../QScintilla/MiniEditor.py" line="2263" />
+      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2259" />
       <source>Extend selection to start of display line</source>
       <translation>Extension de la sélection au début de la ligne affichée</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2289" />
-      <location filename="../QScintilla/MiniEditor.py" line="2286" />
+      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2282" />
       <source>Move to start of display or document line</source>
       <translation>Déplacement au début de la ligne affichée ou de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2307" />
       <location filename="../QScintilla/MiniEditor.py" line="2303" />
+      <location filename="../QScintilla/MiniEditor.py" line="2299" />
       <source>Extend selection to start of display or document line</source>
       <translation>Extension de la sélection au début de la ligne affichée ou de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2326" />
       <location filename="../QScintilla/MiniEditor.py" line="2322" />
+      <location filename="../QScintilla/MiniEditor.py" line="2318" />
       <source>Move to first visible character in display or document line</source>
       <translation>Déplacement vers le premier caractère visible de la ligne affichée ou de la ligne do document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2346" />
-      <location filename="../QScintilla/MiniEditor.py" line="2341" />
+      <location filename="../QScintilla/MiniEditor.py" line="2342" />
+      <location filename="../QScintilla/MiniEditor.py" line="2337" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation>Extension de la sélection au premier caractère visible du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2365" />
-      <location filename="../QScintilla/MiniEditor.py" line="2362" />
+      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2358" />
       <source>Move to end of display or document line</source>
       <translation>Déplacement à la de la ligne affichée ou de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2382" />
-      <location filename="../QScintilla/MiniEditor.py" line="2379" />
+      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2375" />
       <source>Extend selection to end of display or document line</source>
       <translation>Extension de la sélection à la fint de la ligne affichée ou de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
-      <location filename="../QScintilla/MiniEditor.py" line="2397" />
-      <location filename="../QScintilla/MiniEditor.py" line="2396" />
+      <location filename="../QScintilla/MiniEditor.py" line="2393" />
+      <location filename="../QScintilla/MiniEditor.py" line="2392" />
       <source>Stuttered move up one page</source>
       <translation>Déplacement étagé d'une page vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2412" />
-      <location filename="../QScintilla/MiniEditor.py" line="2409" />
+      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2405" />
       <source>Stuttered extend selection up one page</source>
       <translation>Extension de la sélection étagée d'une page vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2429" />
-      <location filename="../QScintilla/MiniEditor.py" line="2426" />
+      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2422" />
       <source>Stuttered move down one page</source>
       <translation>Déplacement étagé d'une page vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2446" />
-      <location filename="../QScintilla/MiniEditor.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2439" />
       <source>Stuttered extend selection down one page</source>
       <translation>Extension de la sélection étagée d'une page vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2463" />
-      <location filename="../QScintilla/MiniEditor.py" line="2460" />
+      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2456" />
       <source>Delete right to end of next word</source>
       <translation>Supprimer jusqu'à la fin du mot à doite</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2473" />
+      <location filename="../QScintilla/MiniEditor.py" line="2469" />
       <source>Alt+Del</source>
       <translation>Alt+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2484" />
-      <location filename="../QScintilla/MiniEditor.py" line="2481" />
+      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2477" />
       <source>Move selected lines up one line</source>
       <translation>Déplacement des lignes sélectionnées d'une ligne vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2501" />
-      <location filename="../QScintilla/MiniEditor.py" line="2498" />
+      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2494" />
       <source>Move selected lines down one line</source>
       <translation>Déplacement des lignes sélectionnées d'une ligne vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2547" />
+      <location filename="../QScintilla/MiniEditor.py" line="2543" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Rechercher&lt;/b&gt;&lt;p&gt;Recherche du texte dans l'éditeur courant. Un fenêtre est affichée pour saisir le texte recherché et le options de recherche.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2573" />
+      <location filename="../QScintilla/MiniEditor.py" line="2569" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Chercher suivant&lt;/b&gt;&lt;p&gt;Recherche en avant le texte saisi dans l'éditeur courant. Les options de recherche précédentes sont réutilisées.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2603" />
+      <location filename="../QScintilla/MiniEditor.py" line="2599" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Chercher précédent&lt;/b&gt;&lt;p&gt;Recherche en arrière le texte saisi dans l'éditeur courant. Les options de recherche précédentes sont réutilisées.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2617" />
-      <location filename="../QScintilla/MiniEditor.py" line="2615" />
+      <location filename="../QScintilla/MiniEditor.py" line="2613" />
+      <location filename="../QScintilla/MiniEditor.py" line="2611" />
       <source>Clear search markers</source>
       <translation>Effacer les marqueurs de recherche</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2619" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation>Ctrl+3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2628" />
+      <location filename="../QScintilla/MiniEditor.py" line="2624" />
       <source>Clear all displayed search markers</source>
       <translation>Efface tous les marqueurs de recherche affichés</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2633" />
+      <location filename="../QScintilla/MiniEditor.py" line="2629" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Effacer tous les marqueurs de recherche&lt;/b&gt;&lt;p&gt;Efface tous les marqueurs de recherche affichés.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2639" />
       <source>Replace</source>
       <translation>Remplacer</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2644" />
+      <location filename="../QScintilla/MiniEditor.py" line="2640" />
       <source>&amp;Replace...</source>
       <translation>&amp;Remplacer...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2646" />
+      <location filename="../QScintilla/MiniEditor.py" line="2642" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation>Ctrl+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2653" />
+      <location filename="../QScintilla/MiniEditor.py" line="2649" />
       <source>Replace some text</source>
       <translation>Remplacer un texte</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2656" />
+      <location filename="../QScintilla/MiniEditor.py" line="2652" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Remplacer&lt;/b&gt;&lt;p&gt;Recherche du texte dans l'éditeur courant et le remplace par un autre. Un fenêtre est affichée pour saisir le texte initial, le texte de remplacement et les options de remplacement.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2670" />
-      <location filename="../QScintilla/MiniEditor.py" line="2668" />
+      <location filename="../QScintilla/MiniEditor.py" line="2666" />
+      <location filename="../QScintilla/MiniEditor.py" line="2664" />
       <source>Replace and Search</source>
       <translation>Remplacer et chercher</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2672" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation>Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2681" />
+      <location filename="../QScintilla/MiniEditor.py" line="2677" />
       <source>Replace the found text and search the next occurrence</source>
       <translation>Remplacer le texte trouvé et chercher l'occurrence suivante</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2686" />
+      <location filename="../QScintilla/MiniEditor.py" line="2682" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2702" />
-      <location filename="../QScintilla/MiniEditor.py" line="2700" />
+      <location filename="../QScintilla/MiniEditor.py" line="2698" />
+      <location filename="../QScintilla/MiniEditor.py" line="2696" />
       <source>Replace Occurrence</source>
       <translation>Remplacer occurrence</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2704" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2713" />
+      <location filename="../QScintilla/MiniEditor.py" line="2709" />
       <source>Replace the found text</source>
       <translation>Remplacer le texte trouvé</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2716" />
+      <location filename="../QScintilla/MiniEditor.py" line="2712" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2729" />
-      <location filename="../QScintilla/MiniEditor.py" line="2727" />
+      <location filename="../QScintilla/MiniEditor.py" line="2725" />
+      <location filename="../QScintilla/MiniEditor.py" line="2723" />
       <source>Replace All</source>
       <translation>Tout remplacer</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2731" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation>Shift+Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2740" />
+      <location filename="../QScintilla/MiniEditor.py" line="2736" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2743" />
+      <location filename="../QScintilla/MiniEditor.py" line="2739" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -95656,29 +95764,29 @@
       <translation>&amp;Editer...</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7350" />
-      <location filename="../ViewManager/ViewManager.py" line="7336" />
-      <location filename="../ViewManager/ViewManager.py" line="7304" />
+      <location filename="../ViewManager/ViewManager.py" line="7349" />
+      <location filename="../ViewManager/ViewManager.py" line="7335" />
+      <location filename="../ViewManager/ViewManager.py" line="7303" />
       <source>Edit Spelling Dictionary</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7307" />
+      <location filename="../ViewManager/ViewManager.py" line="7306" />
       <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="7323" />
+      <location filename="../ViewManager/ViewManager.py" line="7322" />
       <source>Editing {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7339" />
+      <location filename="../ViewManager/ViewManager.py" line="7338" />
       <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="7353" />
+      <location filename="../ViewManager/ViewManager.py" line="7352" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation type="unfinished" />
     </message>
@@ -96764,7 +96872,7 @@
 </translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="135" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="136" />
       <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="96" />
       <source>Failed
 
@@ -96774,7 +96882,7 @@
 </translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="144" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="145" />
       <source>
 pyvenv finished.
 </source>
@@ -96783,13 +96891,13 @@
 </translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="159" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="160" />
       <source>No suitable pyvenv program could be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="222" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="223" />
       <source>
 Writing log file '{0}'.
 </source>
@@ -96798,21 +96906,21 @@
 </translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="226" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="227" />
       <source>Output:
 </source>
       <translation type="unfinished">Sortie :
 </translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="231" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="232" />
       <source>Errors:
 </source>
       <translation type="unfinished">Erreurs :
 </translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="235" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="236" />
       <source>The logfile '{0}' could not be written.
 Reason: {1}
 </source>
@@ -96821,7 +96929,7 @@
 </translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="239" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="240" />
       <source>Done.
 </source>
       <translation type="unfinished">Terminé.
@@ -99015,32 +99123,32 @@
       <translation>Enregistrer la page web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2312" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2341" />
       <source>Quota Request</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2313" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2342" />
       <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="2389" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2385" />
       <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="2397" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2393" />
       <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="2402" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2398" />
       <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="2409" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2405" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -102034,28 +102142,28 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="143" />
       <source>No current editor</source>
       <translation>Pas d'éditeur courant</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="145" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
       <source>Please open or create a file first.</source>
       <translation>Veuillez d'abord ouvrir ou créer un fichier.</translation>
     </message>
     <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="182" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="166" />
+      <source>Create Package</source>
+      <translation>Créer un package</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
+      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Le répertoire du package &lt;b&gt;{0}&lt;/b&gt; ne peut être créé. Annulation...&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Plugins/PluginWizardEricPlugin.py" line="183" />
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
-      <source>Create Package</source>
-      <translation>Créer un package</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="168" />
-      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Le répertoire du package &lt;b&gt;{0}&lt;/b&gt; ne peut être créé. Annulation...&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="184" />
       <source>&lt;p&gt;The package file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier du package &lt;b&gt;{0}&lt;/b&gt; ne peut être créé. Annulation...&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
@@ -102328,32 +102436,32 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1270" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1274" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Modifications&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1801" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1282" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&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;Étiquettes&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1807" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1284" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1811" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1288" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&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;Signets&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1814" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1291" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1295" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&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;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1297" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1301" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
@@ -102362,7 +102470,7 @@
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure de soumission&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1320" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -102373,36 +102481,36 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1775" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1779" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1782" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1786" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1793" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Suggestion&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1794" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1798" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&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;Modifications&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1825" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&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;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1831" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -103090,17 +103198,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1814" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
       <source>unknown</source>
       <translation>inconnu</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1822" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Informations sur le référentiel&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;API Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Révision actuelle&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Révision validée&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date de validation&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure de validation&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Dernier auteur&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1667" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1670" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Information référentiel&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Version en cours&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Version soumise&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date de la soumission&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure de la soumission&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Dernier auteur&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_it.ts	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/i18n/eric7_it.ts	Sun Jul 02 17:39:33 2023 +0200
@@ -1323,6 +1323,16 @@
       <source>type annotation is too long ({0} &gt; {1})</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="76" />
+      <source>'typing.Union' is deprecated, use '|' instead (see PEP 604)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="80" />
+      <source>'typing.{0}' is deprecated, use '{1}' instead (see PEP 585)</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>ApplicationDiagramBuilder</name>
@@ -1756,42 +1766,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
+      <location filename="../Utilities/BackgroundService.py" line="217" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="219" />
+      <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>Restart background client?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Utilities/BackgroundService.py" line="232" />
-      <source>Restart background client?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Utilities/BackgroundService.py" line="233" />
       <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="262" />
+      <location filename="../Utilities/BackgroundService.py" line="261" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="497" />
+      <location filename="../Utilities/BackgroundService.py" line="502" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="506" />
+      <location filename="../Utilities/BackgroundService.py" line="511" />
       <source>Background client disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="507" />
+      <location filename="../Utilities/BackgroundService.py" line="512" />
       <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>
@@ -1854,22 +1864,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>Yes</source>
       <translation type="unfinished">Si</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>No</source>
       <translation type="unfinished">No</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>yes</source>
       <translation type="unfinished">si</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>no</source>
       <translation type="unfinished">no</translation>
     </message>
@@ -2291,26 +2301,31 @@
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="97" />
-      <source>Complete {0}-bit Service UUID: {1}</source>
+      <source>Complete {0}-bit Service UUID: {1}{2}</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="99" />
-      <source>Incomplete {0}-bit Service UUID: {1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="110" />
-      <source>Manufacturer ID: 0x{0:x} ({1})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="114" />
+      <source>Incomplete {0}-bit Service UUID: {1}{2}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="107" />
+      <source> - {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="121" />
+      <source>Manufacturer ID: 0x{0:x} - {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="125" />
       <source>Manufacturer ID: 0x{0:x}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="123" />
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="134" />
       <source>Tx Power Level [dBm]: {0}</source>
       <translation type="unfinished" />
     </message>
@@ -2812,17 +2827,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="335" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
       <source>New Bookmark Folder</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="337" />
       <source>Enter title for new bookmark folder:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="343" />
       <source>New Folder</source>
       <translation>Nuova Cartella</translation>
     </message>
@@ -2926,22 +2941,22 @@
       <translation>Menu dei segnalibri</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="543" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="541" />
       <source>Remove Bookmark</source>
       <translation>Rimuovi segnalibro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="585" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="583" />
       <source>Insert Bookmark</source>
       <translation>Inserisci segnalibro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="626" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="624" />
       <source>Name Change</source>
       <translation>Cambia Nome</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="630" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="628" />
       <source>Address Change</source>
       <translation>Cambia Indirizzo</translation>
     </message>
@@ -2978,22 +2993,22 @@
       <translation>Errore nel salvataggio dei segnalibri su &lt;b&gt;({0})&lt;/b&gt;.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="399" />
       <source>Export Bookmarks</source>
       <translation>Esporta segnalibri</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="403" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
       <source>XBEL bookmarks (*.xbel);;XBEL bookmarks (*.xml);;HTML Bookmarks (*.html)</source>
       <translation>Segnalibri XBEL (*.xbel);;Segnalibri XBEL (*.xml);;Segnalibri HTML (*.html)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="429" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="427" />
       <source>Exporting Bookmarks</source>
       <translation>Esportazione Segnalibri</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="430" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="428" />
       <source>Error exporting bookmarks to &lt;b&gt;{0}&lt;/b&gt;.</source>
       <translation>Errore nell'esportazione dei segnalibri su &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
@@ -3251,231 +3266,231 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="238" />
+      <location filename="../UI/Browser.py" line="239" />
       <source>Show Hidden Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="244" />
+      <location filename="../UI/Browser.py" line="245" />
       <source>New</source>
       <translation type="unfinished">Nuovo</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="246" />
+      <location filename="../UI/Browser.py" line="247" />
       <source>Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="249" />
+      <location filename="../UI/Browser.py" line="250" />
       <source>File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="323" />
-      <location filename="../UI/Browser.py" line="285" />
-      <location filename="../UI/Browser.py" line="255" />
+      <location filename="../UI/Browser.py" line="324" />
+      <location filename="../UI/Browser.py" line="286" />
+      <location filename="../UI/Browser.py" line="256" />
       <source>Open</source>
       <translation>Apri</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="258" />
+      <location filename="../UI/Browser.py" line="259" />
       <source>Run Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="622" />
-      <location filename="../UI/Browser.py" line="614" />
-      <location filename="../UI/Browser.py" line="604" />
-      <location filename="../UI/Browser.py" line="595" />
-      <location filename="../UI/Browser.py" line="305" />
-      <location filename="../UI/Browser.py" line="262" />
-      <source>Show Mime-Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="266" />
-      <source>Refresh Source File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="361" />
-      <location filename="../UI/Browser.py" line="309" />
-      <location filename="../UI/Browser.py" line="271" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Copia il path nella Clipboard</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="369" />
-      <location filename="../UI/Browser.py" line="329" />
-      <location filename="../UI/Browser.py" line="317" />
-      <location filename="../UI/Browser.py" line="279" />
-      <source>Delete</source>
-      <translation type="unfinished">Cancella</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="288" />
-      <source>Open in Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="292" />
-      <source>Open in Icon Editor</source>
-      <translation>Apri nell'editor di icone</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="296" />
-      <source>Open in Editor</source>
-      <translation type="unfinished">Apri con l'editor</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="300" />
-      <source>Open in PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="388" />
-      <location filename="../UI/Browser.py" line="379" />
-      <location filename="../UI/Browser.py" line="335" />
-      <source>New toplevel directory...</source>
-      <translation>Nuova directory principale...</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="339" />
-      <source>Add as toplevel directory</source>
-      <translation>Aggiungi come directory principale</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="343" />
-      <source>Remove from toplevel</source>
-      <translation>Rimuovi dal principale</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="348" />
-      <source>Refresh directory</source>
-      <translation>Rileggi directory</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="353" />
-      <source>Find in this directory</source>
-      <translation>Trova in questa directory</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="357" />
-      <source>Find &amp;&amp; Replace in this directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="373" />
-      <source>Goto</source>
-      <translation>Vai a</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="491" />
-      <source>Line {0}</source>
-      <translation>Linea {0}</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="596" />
-      <source>The mime type of the file could not be determined.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="615" />
-      <location filename="../UI/Browser.py" line="605" />
-      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="623" />
+      <location filename="../UI/Browser.py" line="615" />
+      <location filename="../UI/Browser.py" line="605" />
+      <location filename="../UI/Browser.py" line="596" />
+      <location filename="../UI/Browser.py" line="306" />
+      <location filename="../UI/Browser.py" line="263" />
+      <source>Show Mime-Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="267" />
+      <source>Refresh Source File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="362" />
+      <location filename="../UI/Browser.py" line="310" />
+      <location filename="../UI/Browser.py" line="272" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Copia il path nella Clipboard</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="370" />
+      <location filename="../UI/Browser.py" line="330" />
+      <location filename="../UI/Browser.py" line="318" />
+      <location filename="../UI/Browser.py" line="280" />
+      <source>Delete</source>
+      <translation type="unfinished">Cancella</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="289" />
+      <source>Open in Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="293" />
+      <source>Open in Icon Editor</source>
+      <translation>Apri nell'editor di icone</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="297" />
+      <source>Open in Editor</source>
+      <translation type="unfinished">Apri con l'editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="301" />
+      <source>Open in PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="389" />
+      <location filename="../UI/Browser.py" line="380" />
+      <location filename="../UI/Browser.py" line="336" />
+      <source>New toplevel directory...</source>
+      <translation>Nuova directory principale...</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="340" />
+      <source>Add as toplevel directory</source>
+      <translation>Aggiungi come directory principale</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="344" />
+      <source>Remove from toplevel</source>
+      <translation>Rimuovi dal principale</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="349" />
+      <source>Refresh directory</source>
+      <translation>Rileggi directory</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="354" />
+      <source>Find in this directory</source>
+      <translation>Trova in questa directory</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="358" />
+      <source>Find &amp;&amp; Replace in this directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="374" />
+      <source>Goto</source>
+      <translation>Vai a</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="492" />
+      <source>Line {0}</source>
+      <translation>Linea {0}</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="597" />
+      <source>The mime type of the file could not be determined.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="616" />
+      <location filename="../UI/Browser.py" line="606" />
+      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="624" />
       <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="731" />
+      <location filename="../UI/Browser.py" line="732" />
       <source>New toplevel directory</source>
       <translation>Nuova directory principale</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="967" />
-      <location filename="../UI/Browser.py" line="955" />
-      <location filename="../UI/Browser.py" line="946" />
-      <source>New Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="947" />
-      <source>Name for new directory:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="994" />
-      <location filename="../UI/Browser.py" line="956" />
-      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="968" />
+      <location filename="../UI/Browser.py" line="956" />
+      <location filename="../UI/Browser.py" line="947" />
+      <source>New Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="948" />
+      <source>Name for new directory:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="995" />
+      <location filename="../UI/Browser.py" line="957" />
+      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="969" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1006" />
-      <location filename="../UI/Browser.py" line="993" />
-      <location filename="../UI/Browser.py" line="984" />
-      <source>New File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="985" />
-      <source>Name for new file:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1007" />
+      <location filename="../UI/Browser.py" line="994" />
+      <location filename="../UI/Browser.py" line="985" />
+      <source>New File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="986" />
+      <source>Name for new file:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1008" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1103" />
-      <location filename="../UI/Browser.py" line="1045" />
-      <location filename="../UI/Browser.py" line="1035" />
-      <source>Delete File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1036" />
-      <source>Do you really want to delete this file?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1104" />
       <location filename="../UI/Browser.py" line="1046" />
+      <location filename="../UI/Browser.py" line="1036" />
+      <source>Delete File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1037" />
+      <source>Do you really want to delete this file?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1105" />
+      <location filename="../UI/Browser.py" line="1047" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1071" />
-      <location filename="../UI/Browser.py" line="1061" />
-      <source>Delete Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1062" />
-      <source>Do you really want to delete this directory?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1072" />
+      <location filename="../UI/Browser.py" line="1062" />
+      <source>Delete Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1063" />
+      <source>Do you really want to delete this directory?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1073" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1092" />
-      <source>Delete Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1093" />
+      <source>Delete Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1094" />
       <source>Do you really want to delete these files?</source>
       <translation type="unfinished" />
     </message>
@@ -5128,27 +5143,27 @@
       <translation>Errore: {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1210" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1221" />
       <source>{0} (ignored)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1285" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1296" />
       <source>No issues found.</source>
       <translation>Nessun problema trovato.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1289" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1300" />
       <source>No files found (check your ignore list).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2891" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2935" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2892" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2936" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -5634,6 +5649,16 @@
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Exempted 'typing' symbols:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Enter deprecated symbols of the 'typing' module exempted from PEP-585 checking separated by space</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
       <source>Security</source>
       <translation type="unfinished">Sicurezza</translation>
     </message>
@@ -6529,7 +6554,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="174" />
+      <location filename="../Utilities/__init__.py" line="176" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>La codifica '{0}' è errata per questo testo.</translation>
     </message>
@@ -7651,375 +7676,378 @@
   <context>
     <name>ConfigurationWidget</name>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="174" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="175" />
       <source>Application</source>
       <translation>Applicazione</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="180" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="181" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="182" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="183" />
       <source>Cooperation</source>
       <translation>Cooperazione</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="189" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="190" />
       <source>Diff</source>
       <translation type="unfinished">Diff</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="196" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="197" />
       <source>Email</source>
       <translation>Email</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="203" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="204" />
       <source>Graphics</source>
       <translation>Grafica</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="865" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="210" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="866" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="211" />
       <source>Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="946" />
       <location filename="../Preferences/ConfigurationDialog.py" line="914" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="882" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="851" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="754" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="639" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="217" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="883" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="852" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="755" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="640" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="218" />
       <source>Icons</source>
       <translation>Icone</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="223" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="224" />
       <source>IRC</source>
       <translation>IRC</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="225" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="226" />
       <source>Log-Viewer</source>
       <translation type="unfinished">Log-Viewer</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="232" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="233" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="239" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="240" />
       <source>MIME-Types</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="768" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="246" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="769" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="247" />
       <source>Network</source>
       <translation>Rete</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="253" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="254" />
       <source>Notifications</source>
       <translation>Notificazioni</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="896" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="260" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="897" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="261" />
       <source>PDF Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="267" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="928" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="268" />
       <source>Python Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="274" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="275" />
       <source>Plugin Manager</source>
       <translation>Gestore plugin</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="775" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="653" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="281" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="776" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="654" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="282" />
       <source>Printer</source>
       <translation>Stampante</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="288" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="289" />
       <source>Python</source>
       <translation>Python</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="294" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="295" />
       <source>Qt</source>
       <translation>Qt</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="782" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="296" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="783" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="297" />
       <source>Security</source>
       <translation>Sicurezza</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="303" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="304" />
       <source>Shell</source>
       <translation>Shell</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="309" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="310" />
       <source>Tasks</source>
       <translation>Task</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="311" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="312" />
       <source>Templates</source>
       <translation>Modello</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="834" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="318" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="835" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="319" />
       <source>Tray Starter</source>
       <translation>Tray Starter</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="325" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="326" />
       <source>Version Control Systems</source>
       <translation>Controllo di versione</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="332" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="333" />
       <source>Debugger</source>
       <translation>Debugger</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="667" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="374" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="339" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="668" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="375" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="340" />
       <source>General</source>
       <translation>Generale</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="346" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="347" />
       <source>Python3</source>
       <translation>Python3</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="660" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="353" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="661" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="354" />
       <source>Editor</source>
       <translation>Editor</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="360" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="361" />
       <source>APIs</source>
       <translation>APIs</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="367" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="368" />
       <source>Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="674" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="381" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="675" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="382" />
       <source>Filehandling</source>
       <translation>Gestione file</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="681" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="388" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="682" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="389" />
       <source>Searching</source>
       <translation>Ricerca</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="817" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="688" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="617" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="395" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="818" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="689" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="618" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="396" />
       <source>Spell checking</source>
       <translation>Correzione automatica</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="695" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="402" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="696" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="403" />
       <source>Style</source>
       <translation>Stile</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="409" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="410" />
       <source>Code Checkers</source>
       <translation>Correttori di codice</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="702" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="416" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="703" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="417" />
       <source>Typing</source>
       <translation>Digitazione</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="423" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="424" />
       <source>Exporters</source>
       <translation>Esportatori</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="430" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="431" />
       <source>Autocompletion</source>
       <translation>Autocompletamento</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="458" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="437" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="459" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="438" />
       <source>QScintilla</source>
       <translation>QScintilla</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="514" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="465" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="444" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="515" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="466" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="445" />
       <source>Jedi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="451" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="452" />
       <source>Calltips</source>
       <translation>Calltips</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="709" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="472" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="710" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="473" />
       <source>Highlighters</source>
       <translation>Evidenziatori</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="716" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="479" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="717" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="480" />
       <source>Filetype Associations</source>
       <translation>Associazione tipi file</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="723" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="486" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="724" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="487" />
       <source>Styles</source>
       <translation>Stili</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="730" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="493" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="731" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="494" />
       <source>Keywords</source>
       <translation>Parole chiave</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="737" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="500" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="738" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="501" />
       <source>Properties</source>
       <translation>Proprietà</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="507" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="508" />
       <source>Mouse Click Handlers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="520" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="521" />
       <source>Help</source>
       <translation>Aiuto</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="789" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="522" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="790" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="523" />
       <source>Help Documentation</source>
       <translation>Aiuto Documentazione</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="529" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="530" />
       <source>Help Viewers</source>
       <translation>Aiuto visualizzatori</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="550" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="536" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="551" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="537" />
       <source>Project</source>
       <translation>Progetto</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="543" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="544" />
       <source>Project Viewer</source>
       <translation>Visualizzatore progetto</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="557" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="558" />
       <source>Multiproject</source>
       <translation>Multiprogetto</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="953" />
       <location filename="../Preferences/ConfigurationDialog.py" line="921" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="889" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="858" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="761" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="646" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="571" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="564" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="890" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="859" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="762" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="647" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="572" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="565" />
       <source>Interface</source>
       <translation>Interfaccia</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="578" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="579" />
       <source>Viewmanager</source>
       <translation>Gestrore viste</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="589" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="590" />
       <source>Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="796" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="596" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="797" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="597" />
       <source>Appearance</source>
       <translation>Aspetto</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="803" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="603" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="804" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="604" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="810" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="610" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="811" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="611" />
       <source>VirusTotal Interface</source>
       <translation>Interfaccia VirusTotal</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1007" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1039" />
       <source>Enter search text...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1080" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1112" />
       <source>Preferences</source>
       <translation>Preferenze</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1086" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1118" />
       <source>Please select an entry of the list 
 to display the configuration page.</source>
       <translation>Selezionare un elemento della lista
 da mostrare nella pagina di configurazione.</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1163" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1195" />
       <source>Configuration Page Error</source>
       <translation>Configurazione pagine errore</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1164" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1196" />
       <source>&lt;p&gt;The configuration page &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La pagina di configurazione &lt;b&gt;{0}&lt;/b&gt; non può essere caricata.&lt;/p&gt;</translation>
     </message>
@@ -10509,26 +10537,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Add allowed host</source>
       <translation>Aggiungi un host consentito</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Inserisci l'indirizzo IP di un host consentito</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
+      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
+      <translation>&lt;p&gt;L'indirizzo &lt;b&gt;{0}&lt;/b&gt; non è un indirizzo IP v4 o v6 valido. Uscita...&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
-      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
-      <translation>&lt;p&gt;L'indirizzo &lt;b&gt;{0}&lt;/b&gt; non è un indirizzo IP v4 o v6 valido. Uscita...&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
       <source>Edit allowed host</source>
       <translation>Modifica host permessi</translation>
     </message>
@@ -12047,42 +12075,42 @@
   <context>
     <name>DownloadManager</name>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="111" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="113" />
       <source>Open</source>
       <translation>Apri</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="117" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="119" />
       <source>Cancel</source>
       <translation>Cancella</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="122" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="124" />
       <source>Open Containing Folder</source>
       <translation>Apri la cartella di destinazione</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="125" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="127" />
       <source>Go to Download Page</source>
       <translation>Vai alla pagina dei download</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="126" />
-      <source>Copy Download Link</source>
-      <translation>Copia il link per il download</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/Download/DownloadManager.py" line="128" />
+      <source>Copy Download Link</source>
+      <translation>Copia il link per il download</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="130" />
       <source>Select All</source>
       <translation>Seleziona tutti</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="137" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="139" />
       <source>Remove From List</source>
       <translation>Rimuovi dalla lista</translation>
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="172" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="174" />
       <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
       <translation>
@@ -12093,34 +12121,34 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="264" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="266" />
       <source>Suspicuous URL detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="265" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="267" />
       <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="500" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="502" />
       <source>Downloads finished</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="501" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="503" />
       <source>All files have been downloaded.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/Download/DownloadManager.ui" line="0" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="586" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="509" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="588" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="511" />
       <source>Download Manager</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="619" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="621" />
       <source>{0}% of %n file(s) ({1}) {2}</source>
       <translation type="unfinished">
         <numerusform />
@@ -12128,7 +12156,7 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="627" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="629" />
       <source>{0}% - Download Manager</source>
       <translation type="unfinished" />
     </message>
@@ -12372,7 +12400,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3335" />
+      <location filename="../QScintilla/Editor.py" line="3334" />
       <location filename="../QScintilla/Editor.py" line="428" />
       <location filename="../QScintilla/Editor.py" line="413" />
       <source>Open File</source>
@@ -12444,7 +12472,7 @@
       <translation>Annulla commenta</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9154" />
+      <location filename="../QScintilla/Editor.py" line="9152" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12717,7 +12745,7 @@
       <translation type="unfinished">Spelling</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8272" />
+      <location filename="../QScintilla/Editor.py" line="8270" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>Controllo sillabazione...</translation>
@@ -12778,7 +12806,7 @@
       <translation>Modifica Breakpoint...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5932" />
+      <location filename="../QScintilla/Editor.py" line="5929" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>Abilita breakpoint</translation>
@@ -12970,398 +12998,398 @@
       <translation>Stampa annullata</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3277" />
+      <location filename="../QScintilla/Editor.py" line="3276" />
       <source>File Modified</source>
       <translation>File modificato</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3278" />
+      <location filename="../QScintilla/Editor.py" line="3277" />
       <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="3336" />
+      <location filename="../QScintilla/Editor.py" line="3335" />
       <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="3511" />
+      <location filename="../QScintilla/Editor.py" line="3492" />
+      <location filename="../QScintilla/Editor.py" line="3454" />
+      <source>Save File</source>
+      <translation>Salva file</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="3455" />
+      <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="3512" />
-      <location filename="../QScintilla/Editor.py" line="3493" />
-      <location filename="../QScintilla/Editor.py" line="3455" />
-      <source>Save File</source>
-      <translation>Salva file</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3456" />
-      <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="3513" />
       <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="3649" />
+      <location filename="../QScintilla/Editor.py" line="3646" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3650" />
+      <location filename="../QScintilla/Editor.py" line="3647" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5106" />
+      <location filename="../QScintilla/Editor.py" line="5103" />
       <source>Autocompletion</source>
       <translation>Autocompletamento</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5107" />
+      <location filename="../QScintilla/Editor.py" line="5104" />
       <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="5235" />
+      <location filename="../QScintilla/Editor.py" line="5232" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5236" />
+      <location filename="../QScintilla/Editor.py" line="5233" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5528" />
+      <location filename="../QScintilla/Editor.py" line="5525" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5529" />
+      <location filename="../QScintilla/Editor.py" line="5526" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5936" />
+      <location filename="../QScintilla/Editor.py" line="5933" />
       <source>Disable breakpoint</source>
       <translation>Disabilita breakpoint</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6315" />
+      <location filename="../QScintilla/Editor.py" line="6312" />
       <source>Code Coverage</source>
       <translation>Analisi codice</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6316" />
+      <location filename="../QScintilla/Editor.py" line="6313" />
       <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="6391" />
-      <location filename="../QScintilla/Editor.py" line="6383" />
+      <location filename="../QScintilla/Editor.py" line="6388" />
+      <location filename="../QScintilla/Editor.py" line="6380" />
       <source>Show Code Coverage Annotations</source>
       <translation>Mostra le annotazioni dell'analisi del codice</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6384" />
+      <location filename="../QScintilla/Editor.py" line="6381" />
       <source>All lines have been covered.</source>
       <translation>Tutte le linee sono state analizzate.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6392" />
+      <location filename="../QScintilla/Editor.py" line="6389" />
       <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="6496" />
+      <location filename="../QScintilla/Editor.py" line="6493" />
       <source>Profile Data</source>
       <translation>Profilazione dati</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6497" />
+      <location filename="../QScintilla/Editor.py" line="6494" />
       <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="6658" />
-      <location filename="../QScintilla/Editor.py" line="6652" />
+      <location filename="../QScintilla/Editor.py" line="6655" />
+      <location filename="../QScintilla/Editor.py" line="6649" />
       <source>Syntax Error</source>
       <translation>Errore di sintassi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6659" />
+      <location filename="../QScintilla/Editor.py" line="6656" />
       <source>No syntax error message available.</source>
       <translation>Nessun messaggio degli errori di sintassi disponibile.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
-      <location filename="../QScintilla/Editor.py" line="6864" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
+      <location filename="../QScintilla/Editor.py" line="6863" />
       <source>Warning</source>
       <translation>Attenzione</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
       <source>No warning messages available.</source>
       <translation>Nessun messaggio di attenzione disponibile.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6934" />
+      <location filename="../QScintilla/Editor.py" line="6933" />
       <source>Style: {0}</source>
       <translation>Stile: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6937" />
+      <location filename="../QScintilla/Editor.py" line="6936" />
       <source>Warning: {0}</source>
       <translation>Attenzione: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6944" />
+      <location filename="../QScintilla/Editor.py" line="6943" />
       <source>Error: {0}</source>
       <translation>Errore: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Macro Name</source>
       <translation>Nome Macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Select a macro name:</source>
       <translation>Seleziona un nome per la macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7077" />
+      <location filename="../QScintilla/Editor.py" line="7076" />
       <source>Load macro file</source>
       <translation>Carica un file di macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7123" />
-      <location filename="../QScintilla/Editor.py" line="7079" />
+      <location filename="../QScintilla/Editor.py" line="7122" />
+      <location filename="../QScintilla/Editor.py" line="7078" />
       <source>Macro files (*.macro)</source>
       <translation>File Macro (*.macro)</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7100" />
+      <location filename="../QScintilla/Editor.py" line="7090" />
+      <source>Error loading macro</source>
+      <translation>Errore nel caricamento della macro</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7091" />
+      <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="7101" />
-      <location filename="../QScintilla/Editor.py" line="7091" />
-      <source>Error loading macro</source>
-      <translation>Errore nel caricamento della macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7092" />
-      <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="7102" />
       <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="7121" />
+      <location filename="../QScintilla/Editor.py" line="7120" />
       <source>Save macro file</source>
       <translation>Salva un file di macro</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7138" />
+      <source>Save macro</source>
+      <translation>Salva macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7139" />
-      <source>Save macro</source>
-      <translation>Salva macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7140" />
       <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="7154" />
+      <source>Error saving macro</source>
+      <translation>Errore nel salvataggio della macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7155" />
-      <source>Error saving macro</source>
-      <translation>Errore nel salvataggio della macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7156" />
       <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="7168" />
+      <source>Start Macro Recording</source>
+      <translation>Avvia registrazione della macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7169" />
-      <source>Start Macro Recording</source>
-      <translation>Avvia registrazione della macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7170" />
       <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="7195" />
+      <source>Macro Recording</source>
+      <translation>Registrazione Macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7196" />
-      <source>Macro Recording</source>
-      <translation>Registrazione Macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation>Inserisci un nome per la macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7348" />
+      <location filename="../QScintilla/Editor.py" line="7346" />
       <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="7354" />
+      <location filename="../QScintilla/Editor.py" line="7352" />
       <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="7361" />
+      <location filename="../QScintilla/Editor.py" line="7359" />
       <source>File changed</source>
       <translation>File modificato</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7411" />
+      <location filename="../QScintilla/Editor.py" line="7409" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7716" />
+      <location filename="../QScintilla/Editor.py" line="7714" />
       <source>Drop Error</source>
       <translation>Errore Drop</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7717" />
+      <location filename="../QScintilla/Editor.py" line="7715" />
       <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="7735" />
+      <source>Resources</source>
+      <translation>Risorse</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7737" />
-      <source>Resources</source>
-      <translation>Risorse</translation>
+      <source>Add file...</source>
+      <translation>Aggiungi file...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7738" />
+      <source>Add files...</source>
+      <translation>Aggiungi files...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="7739" />
-      <source>Add file...</source>
-      <translation>Aggiungi file...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7740" />
-      <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="7741" />
-      <source>Add aliased file...</source>
-      <translation>Aggiungi file sinonimo...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>Aggiungi una risorsa localizzata...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7746" />
+      <location filename="../QScintilla/Editor.py" line="7744" />
       <source>Add resource frame</source>
       <translation>Aggiungi riquadro delle risorse</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7765" />
+      <location filename="../QScintilla/Editor.py" line="7763" />
       <source>Add file resource</source>
       <translation>Aggiungi un file risorse</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7777" />
       <source>Add file resources</source>
       <translation>Aggiundi dei file risorse</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7797" />
+      <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7795" />
       <source>Add aliased file resource</source>
       <translation>Aggiungi file sinonimo delle risorse</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7804" />
+      <location filename="../QScintilla/Editor.py" line="7802" />
       <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="7879" />
+      <location filename="../QScintilla/Editor.py" line="7877" />
       <source>Package Diagram</source>
       <translation>Diagrammi del package</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7880" />
+      <location filename="../QScintilla/Editor.py" line="7878" />
       <source>Include class attributes?</source>
       <translation>Includi gli attributi della classe ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7900" />
+      <location filename="../QScintilla/Editor.py" line="7898" />
       <source>Imports Diagram</source>
       <translation>Importa diagrammi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7901" />
+      <location filename="../QScintilla/Editor.py" line="7899" />
       <source>Include imports from external modules?</source>
       <translation>Includi gli import dai moduli esterni ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7920" />
+      <location filename="../QScintilla/Editor.py" line="7918" />
       <source>Application Diagram</source>
       <translation>Diagrammi dell'applicazione</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7921" />
+      <location filename="../QScintilla/Editor.py" line="7919" />
       <source>Include module names?</source>
       <translation>Includi i nomi dei moduli ?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="8274" />
+      <source>Add to dictionary</source>
+      <translation>Aggiungi al dizionario</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8276" />
-      <source>Add to dictionary</source>
-      <translation>Aggiungi al dizionario</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>Ignora tutto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8696" />
+      <location filename="../QScintilla/Editor.py" line="8694" />
       <source>Sort Lines</source>
       <translation>Righe ordinate</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8697" />
+      <location filename="../QScintilla/Editor.py" line="8695" />
       <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="8790" />
+      <location filename="../QScintilla/Editor.py" line="8788" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8791" />
+      <location filename="../QScintilla/Editor.py" line="8789" />
       <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="8887" />
+      <location filename="../QScintilla/Editor.py" line="8885" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8893" />
+      <location filename="../QScintilla/Editor.py" line="8891" />
       <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="8961" />
+      <location filename="../QScintilla/Editor.py" line="8959" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8962" />
+      <location filename="../QScintilla/Editor.py" line="8960" />
       <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>
@@ -14980,7 +15008,7 @@
   <context>
     <name>EditorHighlightersPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="144" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="145" />
       <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="51" />
       <source>Alternative</source>
       <translation>Alternativo</translation>
@@ -20861,8 +20889,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1589" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1573" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1591" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1575" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="196" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -20873,7 +20901,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1674" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1676" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="203" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -20924,8 +20952,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1673" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1632" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1634" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="363" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
@@ -21036,17 +21064,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1574" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1576" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1588" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1590" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1633" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1635" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -21663,27 +21691,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="72" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="67" />
       <source>{0} wants to use desktop notifications.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="98" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="92" />
       <source>Remember</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="100" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="94" />
       <source>Allow</source>
       <translation type="unfinished">Consenti</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="101" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="95" />
       <source>Deny</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="126" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="120" />
       <source>{0} wants to use an unknown feature.</source>
       <translation type="unfinished" />
     </message>
@@ -21900,7 +21928,7 @@
       <translation>&amp;Visualizza errore</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="486" />
+      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="487" />
       <source>Error loading feed</source>
       <translation>Errore nel caricare il Feed</translation>
     </message>
@@ -23153,7 +23181,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1643" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="213" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -23174,158 +23202,158 @@
       <translation type="unfinished">Il repository del progetto non può essere creato.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="281" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="283" />
       <source>Creating Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="296" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="298" />
       <source>Adding files to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="305" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
       <source>Initial commit to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="333" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="335" />
       <source>Cloning project from a Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="428" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="429" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="485" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="546" />
       <source>Switch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="545" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="547" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="575" />
       <source>Synchronizing with the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="619" />
       <source>Adding files/directories to the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="691" />
       <source>Removing files/directories from the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="754" />
       <source>Renaming {0}</source>
       <translation type="unfinished">Rinomino {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="876" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="929" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="918" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="919" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="930" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="936" />
       <source>Reverting changes</source>
       <translation type="unfinished">Annullamento modifiche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="988" />
       <source>Merging</source>
       <translation type="unfinished">Merge</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1012" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1016" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1228" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1232" />
       <source>Git Command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1330" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1336" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1334" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Origini&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1340" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Origini&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1346" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1352" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1357" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1356" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1362" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1361" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1367" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1366" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1372" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1371" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1377" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1383" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -23335,459 +23363,459 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1458" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. 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="../Plugins/VcsPlugins/vcsGit/git.py" line="1517" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1500" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1506" />
       <source>Git Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1507" />
       <source>&lt;p&gt;Copying the directory &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="../Plugins/VcsPlugins/vcsGit/git.py" line="1518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
       <source>&lt;p&gt;Copying the file &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="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2726" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1645" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1707" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1694" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1683" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1713" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1689" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1708" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1714" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1760" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1766" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1796" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1802" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1835" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1841" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1869" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1894" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1924" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1951" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1957" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1954" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1960" />
       <source>Apply patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2034" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2040" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2284" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2326" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2347" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2348" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2376" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2378" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2395" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2430" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2459" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2525" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2546" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished">Sottocomando Bisect ({0}) non valido.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2828" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2672" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2725" />
       <source>Process Generation Error</source>
       <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2771" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2754" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2736" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2738" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2755" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2772" />
       <source>&lt;p&gt;The 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="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2791" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2819" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2793" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2817" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3161" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2991" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3047" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3048" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3183" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3240" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3271" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3294" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3318" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3396" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3598" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3436" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3599" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3559" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3510" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3437" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3509" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3469" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3483" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3558" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3547" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3548" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3573" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3609" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3610" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3620" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3647" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3707" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished">Visualizzazione combinata della impostazioni di configurazione</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3729" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3798" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3804" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3815" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3821" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3839" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3905" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3945" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4012" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
-      <source>All</source>
-      <translation type="unfinished">Tutti</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
-      <source>Submodule Path</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
+      <source>All</source>
+      <translation type="unfinished">Tutti</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4029" />
+      <source>Submodule Path</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4030" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4079" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4112" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4143" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4266" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -24200,12 +24228,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="213" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="214" />
       <source>Changed by skipped commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="215" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="216" />
       <source>Commit cannot be skipped</source>
       <translation type="unfinished" />
     </message>
@@ -25306,7 +25334,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1896" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1891" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="340" />
       <source>Branch</source>
       <translation type="unfinished">Branch</translation>
@@ -25327,9 +25355,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1957" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1868" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1952" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1840" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="356" />
       <source>Switch</source>
       <translation type="unfinished" />
@@ -25340,7 +25368,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1979" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="364" />
       <source>Show Short Log</source>
       <translation type="unfinished" />
@@ -25361,125 +25389,125 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="662" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="664" />
+      <source>Could not start the git executable.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="667" />
-      <source>Could not start the git executable.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="670" />
       <source>Git Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="799" />
       <source>{0} ({1}%)</source>
       <comment>action, confidence</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="869" />
       <source>Process Generation Error</source>
       <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="874" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="870" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1345" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1342" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1359" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1356" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1800" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1958" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1806" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1953" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1801" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished">Il progetto deve essere riletto. Farlo ora ?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1985" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1980" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841" />
       <source>Select a branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1935" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1897" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892" />
       <source>Select a default branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1934" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1929" />
       <source>Branch &amp; Switch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2159" />
       <source>Find Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2160" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished">'{0}' non è stato trovato.</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2209" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2204" />
       <source>Differences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2221" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2216" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2237" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2232" />
       <source>Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2262" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2257" />
       <source>There is no difference.</source>
       <translation type="unfinished">Non ci sono differenze.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2429" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2412" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2424" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2389" />
       <source>Save Diff</source>
       <translation type="unfinished">Salva Diff</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2391" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished">File Patch (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2408" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file  patch &lt;b&gt;{0}&lt;/b&gt; esiste già.Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2425" />
       <source>&lt;p&gt;The patch 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>
@@ -28884,7 +28912,7 @@
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="383" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="384" />
       <source>%n file(s) changed</source>
       <translation>
         <numerusform />
@@ -28892,7 +28920,7 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="386" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="387" />
       <source>%n line(s) inserted</source>
       <translation>
         <numerusform />
@@ -28900,7 +28928,7 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="390" />
       <source>%n line(s) deleted</source>
       <translation>
         <numerusform />
@@ -29064,7 +29092,7 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195" />
       <source>Commit</source>
       <translation type="unfinished">Commit</translation>
@@ -29095,7 +29123,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210" />
       <source>Add</source>
       <translation type="unfinished">Aggiungi</translation>
@@ -29126,7 +29154,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226" />
       <source>Differences</source>
       <translation type="unfinished" />
@@ -29147,7 +29175,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244" />
       <source>Revert</source>
       <translation type="unfinished">Inverti</translation>
@@ -29158,7 +29186,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253" />
       <source>Forget Missing</source>
       <translation type="unfinished" />
@@ -29169,7 +29197,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="837" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257" />
       <source>Restore Missing</source>
       <translation type="unfinished" />
@@ -29216,98 +29244,98 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="605" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="468" />
       <source>all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="676" />
       <source>There are no entries selected to be committed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="719" />
       <source>There are no unversioned entries available/selected.</source>
       <translation type="unfinished">Non ci sono elementi non sotto controllo disponibili/selezionati.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="741" />
-      <source>Stage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="742" />
+      <source>Stage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="743" />
       <source>There are no stageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="765" />
-      <source>Unstage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="766" />
+      <source>Unstage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="767" />
       <source>There are no unstageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="791" />
       <source>There are no missing entries available/selected.</source>
       <translation type="unfinished">Non ci sono elementi mancati disponibili/selezionati.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810" />
       <source>There are no uncommitted, unstaged changes available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="874" />
       <source>There are no uncommitted changes available/selected.</source>
       <translation type="unfinished">Non ci sono modifiche disponibili/selezionate da committare.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="923" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="899" />
-      <source>Working Tree to Staging Area</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
-      <source>Staging Area to HEAD Commit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="924" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
+      <source>Working Tree to Staging Area</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="901" />
+      <source>Staging Area to HEAD Commit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="925" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="902" />
       <source>Working Tree to HEAD Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="928" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="905" />
-      <source>Differences Side-by-Side</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="929" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="906" />
+      <source>Differences Side-by-Side</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="907" />
       <source>Select the compare method.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1239" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1240" />
       <source>Revert selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1241" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1242" />
       <source>Revert hunk</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1247" />
       <source>Are you sure you want to revert the selected changes?</source>
       <translation type="unfinished" />
     </message>
@@ -29964,12 +29992,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="336" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="337" />
       <source>current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="340" />
       <source>checked out in linked worktree</source>
       <translation type="unfinished" />
     </message>
@@ -30456,101 +30484,101 @@
       <translation type="unfinished">Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="516" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="533" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="552" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="535" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="553" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="576" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="577" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="578" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="612" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="595" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="597" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="614" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="634" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="636" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="642" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="669" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="723" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="699" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="701" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="725" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="750" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="762" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="752" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="763" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -30606,27 +30634,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="199" />
+      <location filename="../Globals/__init__.py" line="197" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="202" />
+      <location filename="../Globals/__init__.py" line="200" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="205" />
+      <location filename="../Globals/__init__.py" line="203" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="208" />
+      <location filename="../Globals/__init__.py" line="206" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="211" />
+      <location filename="../Globals/__init__.py" line="209" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -31425,37 +31453,37 @@
   <context>
     <name>HelpSearchWidget</name>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="166" />
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
       <source>Open Link</source>
       <translation>Apri collegamento</translation>
     </message>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="168" />
-      <source>Open Link in New Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
-      <source>Open Link in Background Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="171" />
-      <source>Open Link in New Tab</source>
-      <translation>Apri collegamento in una nuova scheda</translation>
+      <source>Open Link in New Page</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="172" />
-      <source>Open Link in Background Tab</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="173" />
-      <source>Open Link in New Window</source>
-      <translation type="unfinished" />
+      <source>Open Link in Background Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="174" />
+      <source>Open Link in New Tab</source>
+      <translation>Apri collegamento in una nuova scheda</translation>
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="175" />
+      <source>Open Link in Background Tab</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="176" />
+      <source>Open Link in New Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="178" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -31780,104 +31808,104 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="442" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="443" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished">Documentazione Python 3</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Documentazione Qt4 {5 ?}</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Documentazione Qt4 {6 ?}</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished">Documentazione Python 3</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">Documentazione PyQt4 {5 ?}</translation>
+      <source>Qt5 Documentation</source>
+      <translation type="unfinished">Documentazione Qt4 {5 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>PyQt6 Documentation</source>
-      <translation type="unfinished">Documentazione PyQt4 {6 ?}</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Documentazione Qt4 {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
+      <source>PyQt5 Documentation</source>
+      <translation type="unfinished">Documentazione PyQt4 {5 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
+      <source>PyQt6 Documentation</source>
+      <translation type="unfinished">Documentazione PyQt4 {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="506" />
-      <source>Open HTML File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <source>Open HTML File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
       <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="699" />
       <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="723" />
       <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="734" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="759" />
       <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="762" />
       <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="767" />
       <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="860" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="840" />
       <source>Clear History</source>
       <translation type="unfinished">Pulisci la history</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="968" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="970" />
       <source>Updating search index</source>
       <translation type="unfinished">Aggiornamento indice di ricerca</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1026" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1028" />
       <source>Filtered by: </source>
       <translation type="unfinished">Filtrato per:</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1062" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1057" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1064" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
       <source>Unfiltered</source>
       <translation type="unfinished">Non filtrato</translation>
     </message>
@@ -33291,446 +33319,446 @@
       <translation>Il repository del progetto non può essere creato.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="311" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="313" />
       <source>Creating Mercurial repository</source>
       <translation>Creazione repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="330" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="332" />
       <source>Initial commit to Mercurial repository</source>
       <translation>Commit iniziale nel repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="368" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="370" />
       <source>Cloning project from a Mercurial repository</source>
       <translation>Clonazione del progetto dal repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="468" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="470" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="469" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="471" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="531" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="533" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="623" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="625" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation>Sincronizzazione con il repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="653" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation>Aggiunta di file/directory al repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="708" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation>Rimozione di file/directory dal repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="754" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="756" />
       <source>Renaming {0}</source>
       <translation>Rinomino {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="879" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="881" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="927" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="916" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="917" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="928" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="934" />
       <source>Reverting changes</source>
       <translation>Annullamento modifiche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="977" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="979" />
       <source>Merging</source>
       <translation>Merge</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1017" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1007" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1009" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1008" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1010" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1020" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1021" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1023" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1044" />
       <source>Current branch tip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1216" />
       <source>Mercurial command</source>
       <translation>Comando Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1373" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1377" />
       <source>Copying {0}</source>
       <translation>Copia di {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1612" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1600" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1591" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1604" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1595" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1613" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1617" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2274" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2263" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2253" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1688" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2267" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2257" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1692" />
       <source>Apply changegroups</source>
       <translation>Applica changegroup</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1691" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1695" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation>Pulling da un repository Mercurial remoto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1733" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation>Pushing in un repository Mercurial remoto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1875" />
       <source>Marking as 'unresolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1877" />
       <source>Marking as 'resolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1895" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1899" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1922" />
       <source>Creating branch in the Mercurial repository</source>
       <translation>Creazione Branch nel repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1930" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
       <source>Showing current branch</source>
       <translation>Visualizzazione branch corrente</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2022" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2026" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation>Verifica dell'integrità del repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2035" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2039" />
       <source>Showing the combined configuration settings</source>
       <translation>Visualizzazione combinata della impostazioni di configurazione</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2050" />
       <source>Showing aliases for remote repositories</source>
       <translation>Visualizzazione degli alias per i repository remoti</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2061" />
       <source>Recovering from interrupted transaction</source>
       <translation>Recupero da una transazione interrotta</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2068" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2072" />
       <source>Identifying project directory</source>
       <translation>Identificazione directory del progetto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2114" />
       <source>Create .hgignore file</source>
       <translation>Crea il file .hgignore</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2111" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2115" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. 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="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2212" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2186" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2216" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2190" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2172" />
       <source>Create changegroup</source>
       <translation>Crea changegroup</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2170" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2174" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation>Mercurial Changegroup Files (*.hg)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2187" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2191" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file changegroup di Mercurial&lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Preview changegroup</source>
       <translation>Anteprima changegroup</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2255" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2259" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2232" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation>Mercurial Changegroup Files (*.hg);;All Files (*)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2264" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2268" />
       <source>Shall the working directory be updated?</source>
       <translation>Le directory di lavoro devono essere aggiornate ?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2300" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation>Sottocomando Bisect ({0}) non valido.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2320" />
       <source>Mercurial Bisect ({0})</source>
       <translation>Mercurial Bisect ({0})</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
       <source>Removing files from the Mercurial repository only</source>
       <translation>Rimozione di file dal solo repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2383" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2364" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2387" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2368" />
       <source>Backing out changeset</source>
       <translation>Ritiro changeset</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2365" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
       <source>No revision given. Aborting...</source>
       <translation>Nessuna revisione fornita. Termino...</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2403" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2398" />
+      <source>Rollback last transaction</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2399" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2394" />
-      <source>Rollback last transaction</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2465" />
       <source>Import Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2513" />
       <source>Export Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2553" />
       <source>Change Phase</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2607" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2646" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2656" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2662" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2666" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2685" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2689" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2703" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2700" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2704" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2789" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2769" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2793" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2762" />
       <source>Add Sub-repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2828" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2759" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2832" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2774" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2846" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2790" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2850" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2794" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2827" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2813" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2849" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2831" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2817" />
       <source>Remove Sub-repositories</source>
       <translation type="unfinished">Rimuovi sotto-archivi</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2818" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3062" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2925" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3066" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2929" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2930" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3063" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3067" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3179" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3183" />
       <source>Mercurial Bookmark</source>
       <translation type="unfinished">Segnalibro Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3195" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3199" />
       <source>Delete Bookmark</source>
       <translation type="unfinished">Cancella segnalibro</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3200" />
       <source>Select the bookmark to be deleted:</source>
       <translation type="unfinished">Seleziona il segnalibro da cancellare:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3210" />
       <source>Delete Mercurial Bookmark</source>
       <translation type="unfinished">Cancella Segnalibro Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3235" />
       <source>Rename Mercurial Bookmark</source>
       <translation type="unfinished">Rinomina Segnalibro Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3268" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3272" />
       <source>Move Mercurial Bookmark</source>
       <translation type="unfinished">Sposta Segnalibro Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3341" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3345" />
       <source>Pull Bookmark</source>
       <translation type="unfinished">Estrai Segnalibro</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3342" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
       <source>Select the bookmark to be pulled:</source>
       <translation type="unfinished">Seleziona il segnalibro da estrarre:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3354" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3358" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation type="unfinished">Etrae segnalibro da un repository Mercurial remoto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3380" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3384" />
       <source>Push Bookmark</source>
       <translation type="unfinished">Inserisce Segnalibro</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3385" />
       <source>Select the bookmark to be push:</source>
       <translation type="unfinished">Seleziona il segnalibro da inserire:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3396" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3400" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation type="unfinished">Inserisce segnalibro in un repository Mercurial remoto</translation>
     </message>
@@ -34573,42 +34601,42 @@
   <context>
     <name>HgClient</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="91" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="98" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="140" />
-      <source>Did not receive the 'hello' message.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="142" />
-      <source>Received data on unexpected channel.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="147" />
+      <source>Did not receive the 'hello' message.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="149" />
+      <source>Received data on unexpected channel.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="154" />
       <source>Bad 'hello' message, expected 'capabilities: ' but got '{0}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="152" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="159" />
       <source>'capabilities' message did not contain any capability.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="168" />
       <source>Bad 'hello' message, expected 'encoding: ' but got '{0}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="166" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="173" />
       <source>'encoding' message did not contain any encoding.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="377" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="385" />
       <source>For message see output dialog.</source>
       <translation type="unfinished" />
     </message>
@@ -36022,7 +36050,7 @@
       <translation>Copia da</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2690" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2686" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="0" />
       <source>Differences</source>
       <translation type="unfinished" />
@@ -36153,7 +36181,7 @@
       <translation type="unfinished">Segnalibri</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2150" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2146" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
@@ -36210,8 +36238,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2244" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2240" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2223" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343" />
       <source>Switch</source>
       <translation type="unfinished" />
@@ -36242,8 +36270,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2362" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1562" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2358" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1558" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371" />
       <source>Pull Changes</source>
       <translation type="unfinished" />
@@ -36300,7 +36328,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2501" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="424" />
       <source>Apply Changegroup</source>
       <translation type="unfinished" />
@@ -36331,7 +36359,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2408" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2404" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="454" />
       <source>Strip Changesets</source>
       <translation type="unfinished" />
@@ -36352,117 +36380,117 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="889" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="866" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="886" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="837" />
       <source>Mercurial Error</source>
       <translation>Mercurial Error</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1210" />
       <source>{0} (large file)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1472" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1468" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1479" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1641" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1560" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1556" />
       <source>Pull Selected Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2409" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2363" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2245" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2151" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2498" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2405" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2359" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2147" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished">Il progetto deve essere riletto. Farlo ora ?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2224" />
       <source>Select bookmark to switch to (leave empty to use revision):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2273" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2269" />
       <source>Define Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2274" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2270" />
       <source>Enter bookmark name for changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2303" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2299" />
       <source>Move Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2300" />
       <source>Select the bookmark to be moved  to changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2637" />
       <source>Find Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2638" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished">'{0}' non è stato trovato.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2689" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2685" />
       <source>Generating differences ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2701" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2697" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2713" />
       <source>Diff to Parent {0}{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2740" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2736" />
       <source>There is no difference.</source>
       <translation type="unfinished">Non ci sono differenze.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2891" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2875" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2857" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2853" />
       <source>Save Diff</source>
       <translation type="unfinished">Salva Diff</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2859" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2855" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished">File Patch (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2876" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2872" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file  patch &lt;b&gt;{0}&lt;/b&gt; esiste già.Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2892" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2888" />
       <source>&lt;p&gt;The patch 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>
@@ -41351,22 +41379,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="85" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -46143,9 +46171,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <location filename="../Network/IRC/IrcWidget.py" line="266" />
       <location filename="../Network/IRC/IrcWidget.py" line="261" />
       <location filename="../Network/IRC/IrcWidget.py" line="254" />
@@ -46180,260 +46208,260 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <source>Server found,connecting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
       <source>Connected,logging in...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
       <source>Server disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="607" />
+      <source>Message Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="608" />
-      <source>Message Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="609" />
       <source>Unknown message received from server:&lt;br/&gt;{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1032" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1022" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1014" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1006" />
-      <location filename="../Network/IRC/IrcWidget.py" line="651" />
-      <location filename="../Network/IRC/IrcWidget.py" line="643" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1030" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1020" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1012" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1004" />
+      <location filename="../Network/IRC/IrcWidget.py" line="650" />
+      <location filename="../Network/IRC/IrcWidget.py" line="642" />
       <source>CTCP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="644" />
+      <location filename="../Network/IRC/IrcWidget.py" line="643" />
       <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="652" />
+      <location filename="../Network/IRC/IrcWidget.py" line="651" />
       <source>Received unknown CTCP-{0} response from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="678" />
+      <location filename="../Network/IRC/IrcWidget.py" line="677" />
       <source>Notice</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="688" />
+      <location filename="../Network/IRC/IrcWidget.py" line="687" />
       <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="692" />
+      <location filename="../Network/IRC/IrcWidget.py" line="691" />
       <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="696" />
+      <location filename="../Network/IRC/IrcWidget.py" line="695" />
       <source>Mode</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="704" />
+      <location filename="../Network/IRC/IrcWidget.py" line="703" />
       <source>You have left channel {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="716" />
+      <location filename="../Network/IRC/IrcWidget.py" line="715" />
       <source>You are now known as {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="722" />
+      <location filename="../Network/IRC/IrcWidget.py" line="721" />
       <source>User {0} is now known as {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="728" />
+      <location filename="../Network/IRC/IrcWidget.py" line="727" />
       <source>Received PONG from {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="733" />
+      <location filename="../Network/IRC/IrcWidget.py" line="732" />
       <source>Server Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="767" />
+      <location filename="../Network/IRC/IrcWidget.py" line="765" />
       <source>Error</source>
       <translation type="unfinished">Errore</translation>
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="780" />
+      <source>Welcome</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="782" />
-      <source>Welcome</source>
+      <source>Support</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="784" />
-      <source>Support</source>
+      <source>User</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="786" />
-      <source>User</source>
+      <source>MOTD</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="788" />
-      <source>MOTD</source>
+      <source>Away</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="790" />
-      <source>Away</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="792" />
       <source>Info ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="794" />
+      <source>Message of the day</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="796" />
-      <source>Message of the day</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="798" />
       <source>End of message of the day</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="801" />
+      <location filename="../Network/IRC/IrcWidget.py" line="799" />
       <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="806" />
+      <location filename="../Network/IRC/IrcWidget.py" line="804" />
       <source>Current users on {0}: {1}, max. {2}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="811" />
+      <location filename="../Network/IRC/IrcWidget.py" line="809" />
       <source>Current users on the network: {0}, max. {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="813" />
+      <source>You are no longer marked as being away.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="815" />
-      <source>You are no longer marked as being away.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="817" />
       <source>You have been marked as being away.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="947" />
-      <location filename="../Network/IRC/IrcWidget.py" line="931" />
-      <location filename="../Network/IRC/IrcWidget.py" line="880" />
+      <location filename="../Network/IRC/IrcWidget.py" line="945" />
+      <location filename="../Network/IRC/IrcWidget.py" line="929" />
+      <location filename="../Network/IRC/IrcWidget.py" line="878" />
       <source>SSL Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="881" />
+      <location filename="../Network/IRC/IrcWidget.py" line="879" />
       <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
-      <location filename="../Network/IRC/IrcWidget.py" line="910" />
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
-      <location filename="../Network/IRC/IrcWidget.py" line="897" />
-      <location filename="../Network/IRC/IrcWidget.py" line="889" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
+      <location filename="../Network/IRC/IrcWidget.py" line="908" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
+      <location filename="../Network/IRC/IrcWidget.py" line="895" />
+      <location filename="../Network/IRC/IrcWidget.py" line="887" />
       <source>Socket Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="890" />
+      <location filename="../Network/IRC/IrcWidget.py" line="888" />
       <source>The host was not found. Please check the host name and port settings.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="898" />
+      <location filename="../Network/IRC/IrcWidget.py" line="896" />
       <source>The connection was refused by the peer. Please check the host name and port settings.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
       <source>The SSL handshake failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="911" />
+      <location filename="../Network/IRC/IrcWidget.py" line="909" />
       <source>The following network error occurred:&lt;br/&gt;{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
       <source>A network error occurred.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="932" />
+      <location filename="../Network/IRC/IrcWidget.py" line="930" />
       <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 type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="948" />
+      <location filename="../Network/IRC/IrcWidget.py" line="946" />
       <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1007" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1005" />
       <source>Received Version request from {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1015" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1013" />
       <source>Received CTCP-PING request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1023" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1021" />
       <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1033" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1031" />
       <source>Received unknown CTCP-{0} request from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1049" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1047" />
       <source>{0} ({1})</source>
       <comment>channel name, users count</comment>
       <translation type="unfinished">{0} ({1})</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1071" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1069" />
       <source>Critical</source>
       <translation type="unfinished">Critico</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1072" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1070" />
       <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
       <source>The given nickname is already in use.</source>
       <translation type="unfinished" />
     </message>
@@ -47444,7 +47472,7 @@
       <translation>Seleziona il lexer alternativo da associare</translation>
     </message>
     <message>
-      <location filename="../Project/LexerAssociationDialog.py" line="131" />
+      <location filename="../Project/LexerAssociationDialog.py" line="132" />
       <location filename="../Project/LexerAssociationDialog.py" line="45" />
       <source>Alternative</source>
       <translation>Alternativo</translation>
@@ -49298,13 +49326,13 @@
       <translation>Copia il percorso nella Clipboard</translation>
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="485" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="487" />
       <source>Untitled {0}</source>
       <translation>Senza titolo {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="627" />
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="491" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="629" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="493" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
@@ -52689,317 +52717,317 @@
       <translation>&lt;b&gt;Pulisci&lt;/b&gt;&lt;p&gt;Cancellal tutto il testo dell'editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2862" />
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
       <source>About</source>
       <translation>About</translation>
     </message>
     <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
+      <source>&amp;About</source>
+      <translation>&amp;About</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2860" />
+      <source>Display information about this software</source>
+      <translation>Mostra informazioni su questo software</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2862" />
-      <source>&amp;About</source>
-      <translation>&amp;About</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2864" />
-      <source>Display information about this software</source>
-      <translation>Mostra informazioni su questo software</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <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;About&lt;/b&gt;&lt;p&gt;Mostra alcune informazioni su questo software.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About Qt</source>
       <translation>About Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About &amp;Qt</source>
       <translation>About &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2878" />
+      <location filename="../QScintilla/MiniEditor.py" line="2874" />
       <source>Display information about the Qt toolkit</source>
       <translation>Mostra le informazioni sulle librerie Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2881" />
+      <location filename="../QScintilla/MiniEditor.py" line="2877" />
       <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;About Qt&lt;/b&gt;&lt;p&gt;Mostra delle informazioni sulle librerie Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2890" />
+      <location filename="../QScintilla/MiniEditor.py" line="2886" />
       <source>What's This?</source>
       <translation>Cos'è questo ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <location filename="../QScintilla/MiniEditor.py" line="2888" />
       <source>&amp;What's This?</source>
       <translation>C&amp;os'è Questo ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2893" />
+      <location filename="../QScintilla/MiniEditor.py" line="2889" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2898" />
+      <location filename="../QScintilla/MiniEditor.py" line="2894" />
       <source>Context sensitive help</source>
       <translation>Help sensibile al contesto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2900" />
+      <location filename="../QScintilla/MiniEditor.py" line="2896" />
       <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 help sensibile al contesto&lt;/b&gt;&lt;p&gt;Nella modalità Cos'è qusto, il cursore del mouse mostra una finesta con un punto interrogativo, e puoi clickare sugli elementi dell'interfaccia per avere una breve descrizione di cosa fanno e come usarli. Nei dialoghi questa funzionalità può essere utilizzata usando il pulsante per l'help sensibile al contesto della barra del titolo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2918" />
+      <location filename="../QScintilla/MiniEditor.py" line="2914" />
       <source>Preferences</source>
       <translation type="unfinished">Preferenze</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2920" />
+      <location filename="../QScintilla/MiniEditor.py" line="2916" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished">&amp;Preferenze...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2926" />
+      <location filename="../QScintilla/MiniEditor.py" line="2922" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">Imposta la configurazione preferita</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2924" />
       <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="../QScintilla/MiniEditor.py" line="2942" />
+      <location filename="../QScintilla/MiniEditor.py" line="2938" />
       <source>&amp;File</source>
       <translation>&amp;File</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2950" />
       <source>&amp;Edit</source>
       <translation>&amp;Edita</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2964" />
+      <location filename="../QScintilla/MiniEditor.py" line="2960" />
       <source>&amp;Search</source>
       <translation type="unfinished">&amp;Ricerca</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2974" />
+      <location filename="../QScintilla/MiniEditor.py" line="2970" />
       <source>&amp;View</source>
       <translation type="unfinished">&amp;Visualizza</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2980" />
+      <location filename="../QScintilla/MiniEditor.py" line="2976" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished">Impos&amp;tazioni</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2985" />
+      <location filename="../QScintilla/MiniEditor.py" line="2981" />
       <source>&amp;Help</source>
       <translation>&amp;Help</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2997" />
+      <location filename="../QScintilla/MiniEditor.py" line="2993" />
       <source>File</source>
       <translation>File</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3009" />
+      <location filename="../QScintilla/MiniEditor.py" line="3005" />
       <source>Edit</source>
       <translation>Modifica</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3018" />
+      <location filename="../QScintilla/MiniEditor.py" line="3014" />
       <source>Search</source>
       <translation type="unfinished">Ricerca</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3024" />
+      <location filename="../QScintilla/MiniEditor.py" line="3020" />
       <source>View</source>
       <translation type="unfinished">Visualizza</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3030" />
+      <location filename="../QScintilla/MiniEditor.py" line="3026" />
       <source>Settings</source>
       <translation type="unfinished">Impostazioni</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3033" />
+      <location filename="../QScintilla/MiniEditor.py" line="3029" />
       <source>Help</source>
       <translation>Aiuto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3046" />
+      <location filename="../QScintilla/MiniEditor.py" line="3042" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3056" />
+      <location filename="../QScintilla/MiniEditor.py" line="3052" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Questa parte della barra di stato mostra se il file può essere scritto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3065" />
+      <location filename="../QScintilla/MiniEditor.py" line="3061" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the 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="../QScintilla/MiniEditor.py" line="3074" />
+      <location filename="../QScintilla/MiniEditor.py" line="3070" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the 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="../QScintilla/MiniEditor.py" line="3088" />
+      <location filename="../QScintilla/MiniEditor.py" line="3084" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3095" />
+      <location filename="../QScintilla/MiniEditor.py" line="3091" />
       <source>Ready</source>
       <translation>Pronto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <location filename="../QScintilla/MiniEditor.py" line="3166" />
       <source>eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3171" />
+      <location filename="../QScintilla/MiniEditor.py" line="3167" />
       <source>The document has unsaved changes.</source>
       <translation>Il documento ha delle modifiche non salvate.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="3194" />
       <source>Open File</source>
       <translation>Apri File</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3199" />
+      <location filename="../QScintilla/MiniEditor.py" line="3195" />
       <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/MiniEditor.py" line="3227" />
+      <location filename="../QScintilla/MiniEditor.py" line="3223" />
       <source>File loaded</source>
       <translation>File caricato</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <location filename="../QScintilla/MiniEditor.py" line="3304" />
       <source>Save File</source>
       <translation>Salva file</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3309" />
+      <location filename="../QScintilla/MiniEditor.py" line="3305" />
       <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/MiniEditor.py" line="3315" />
+      <location filename="../QScintilla/MiniEditor.py" line="3311" />
       <source>File saved</source>
       <translation>File salvato</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>[*] - {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>Mini Editor</source>
       <translation>Mini Editor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="3655" />
-      <location filename="../QScintilla/MiniEditor.py" line="3339" />
+      <location filename="../QScintilla/MiniEditor.py" line="3680" />
+      <location filename="../QScintilla/MiniEditor.py" line="3651" />
+      <location filename="../QScintilla/MiniEditor.py" line="3335" />
       <source>Untitled</source>
       <translation>Senza titolo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
       <source>{0}[*] - {1}</source>
       <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3650" />
+      <location filename="../QScintilla/MiniEditor.py" line="3646" />
       <source>Printing...</source>
       <translation>In stampa...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3666" />
+      <location filename="../QScintilla/MiniEditor.py" line="3662" />
       <source>Printing completed</source>
       <translation>Stampa completata</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3668" />
+      <location filename="../QScintilla/MiniEditor.py" line="3664" />
       <source>Error while printing</source>
       <translation>Errore durante la stampa</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3671" />
+      <location filename="../QScintilla/MiniEditor.py" line="3667" />
       <source>Printing aborted</source>
       <translation>Stampa interrota</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <location filename="../QScintilla/MiniEditor.py" line="3721" />
       <source>Select all</source>
       <translation>Seleziona tutti</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3726" />
+      <location filename="../QScintilla/MiniEditor.py" line="3722" />
       <source>Deselect all</source>
       <translation>Deseleziona tutti</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3739" />
+      <location filename="../QScintilla/MiniEditor.py" line="3735" />
       <source>Languages</source>
       <translation>Linguaggi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3742" />
+      <location filename="../QScintilla/MiniEditor.py" line="3738" />
       <source>No Language</source>
       <translation>Nessun linguaggio</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3764" />
+      <location filename="../QScintilla/MiniEditor.py" line="3760" />
       <source>Guessed</source>
       <translation>Indovinato</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3786" />
-      <location filename="../QScintilla/MiniEditor.py" line="3768" />
+      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Alternatives</source>
       <translation>Alternativo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3783" />
+      <location filename="../QScintilla/MiniEditor.py" line="3779" />
       <source>Alternatives ({0})</source>
       <translation>Alternative ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <location filename="../QScintilla/MiniEditor.py" line="3810" />
       <source>Pygments Lexer</source>
       <translation>Analizzatore lessicale Pygments</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3815" />
+      <location filename="../QScintilla/MiniEditor.py" line="3811" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Selezione l'analizzatore lessicale di Pygments da applicare.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4336" />
+      <location filename="../QScintilla/MiniEditor.py" line="4332" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4337" />
+      <location filename="../QScintilla/MiniEditor.py" line="4333" />
       <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>
@@ -53080,564 +53108,604 @@
   <context>
     <name>MiscellaneousChecker</name>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="15" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="16" />
       <source>coding magic comment not found</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="18" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="19" />
       <source>unknown encoding ({0}) found in coding magic comment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="21" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="23" />
       <source>copyright notice not present</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="24" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="26" />
       <source>copyright notice contains invalid author</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="27" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="30" />
       <source>"{0}" is a Python builtin and is being shadowed; consider renaming the variable</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="32" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="35" />
       <source>"{0}" is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="37" />
-      <source>unnecessary generator - rewrite as a list comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="41" />
+      <source>unnecessary generator - rewrite as a list comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="45" />
       <source>unnecessary generator - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="44" />
-      <source>unnecessary generator - rewrite as a dict comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="48" />
-      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
+      <source>unnecessary generator - rewrite as a dict comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="52" />
-      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="56" />
+      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="60" />
       <source>unnecessary {0} call - rewrite as a literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="59" />
-      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="63" />
-      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="67" />
+      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="71" />
       <source>unnecessary {0} call around {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="70" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="74" />
       <source>unnecessary {0} call within {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="73" />
-      <source>unnecessary subscript reversal of iterable within {0}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="77" />
+      <source>unnecessary subscript reversal of iterable within {0}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="81" />
       <source>unnecessary {0} literal - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="80" />
-      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="84" />
-      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
+      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="88" />
-      <source>unnecessary list call - remove the outer call to list()</source>
+      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="92" />
+      <source>unnecessary list call - remove the outer call to list()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="96" />
       <source>unnecessary {0} comprehension - rewrite using {0}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="95" />
-      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="99" />
-      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="103" />
+      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="108" />
       <source>sort keys - '{0}' should be before '{1}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="106" />
-      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="110" />
-      <source>use of 'datetime.datetime.today()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="115" />
-      <source>use of 'datetime.datetime.utcnow()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="120" />
-      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="125" />
-      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="129" />
-      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" />
-      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="112" />
+      <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="117" />
+      <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="122" />
+      <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="127" />
+      <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="131" />
+      <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" />
+      <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" />
-      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
+      <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="143" />
-      <source>use of 'datetime.date()' should be avoided.
-Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <source>multiple decorators were used to declare property '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="148" />
-      <source>use of 'datetime.date.today()' should be avoided.
-Use 'datetime.datetime.now(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="153" />
-      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="158" />
-      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="161" />
-      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="165" />
-      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="169" />
-      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="173" />
-      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="177" />
-      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="152" />
+      <source>use of 'datetime.datetime.today()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="157" />
+      <source>use of 'datetime.datetime.utcnow()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="162" />
+      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" />
+      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" />
+      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" />
+      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="181" />
-      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" />
-      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="188" />
-      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="193" />
-      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="198" />
-      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="202" />
-      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="206" />
-      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="210" />
-      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" />
-      <source>Python does not support the unary prefix increment</source>
+      <source>use of 'datetime.date()' should be avoided.
+Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" />
+      <source>use of 'datetime.date.today()' should be avoided.
+Use 'datetime.datetime.now(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" />
+      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="200" />
+      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" />
+      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="207" />
+      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="212" />
+      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="216" />
+      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="220" />
-      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="225" />
-      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="230" />
-      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="224" />
+      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" />
+      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="231" />
+      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" />
-      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
+      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" />
-      <source>do not call getattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="244" />
-      <source>do not call setattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="247" />
-      <source>do not call assert False since python -O removes these calls</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="251" />
-      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" />
-      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="262" />
-      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="267" />
-      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="272" />
-      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="276" />
-      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" />
+      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" />
+      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="254" />
+      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" />
+      <source>Python does not support the unary prefix increment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="264" />
+      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="269" />
+      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="274" />
+      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="280" />
+      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="285" />
-      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="290" />
-      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="296" />
-      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <source>do not call getattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" />
+      <source>do not call setattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" />
+      <source>do not call assert False since python -O removes these calls</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" />
+      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="301" />
-      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="306" />
-      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" />
-      <source>Function definition does not bind loop variable '{0}'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" />
-      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="322" />
-      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="327" />
-      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
+      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" />
+      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" />
+      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="329" />
+      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" />
-      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" />
-      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="347" />
-      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="352" />
-      <source>Except handlers should only be names of exception classes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="356" />
-      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" />
-      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" />
-      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="372" />
-      <source>unncessary f-string</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" />
-      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" />
-      <source>found {0} formatter</source>
+      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="340" />
+      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="345" />
+      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="350" />
+      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="355" />
+      <source>Function definition does not bind loop variable '{0}'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="359" />
+      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" />
+      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" />
+      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" />
-      <source>format string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="381" />
-      <source>docstring does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="384" />
-      <source>other string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" />
-      <source>format call uses too large index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="390" />
-      <source>format call uses missing keyword ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="393" />
-      <source>format call uses keyword arguments but no named entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="397" />
-      <source>format call uses variable arguments but no numbered entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="401" />
-      <source>format call uses implicit and explicit indexes together</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="405" />
-      <source>format call provides unused index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" />
-      <source>format call provides unused keyword ({0})</source>
+      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" />
+      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="391" />
+      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" />
+      <source>Except handlers should only be names of exception classes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="400" />
+      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="406" />
+      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" />
-      <source>logging statement uses string.format()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="414" />
-      <source>logging statement uses '%'</source>
+      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="417" />
-      <source>logging statement uses '+'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" />
-      <source>logging statement uses f-string</source>
+      <source>unncessary f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="418" />
+      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="423" />
-      <source>logging statement uses 'warn' instead of 'warning'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="426" />
-      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <source>found {0} formatter</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" />
+      <source>format string does contain unindexed parameters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="427" />
+      <source>docstring does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="430" />
-      <source>expected these __future__ imports: {0}; but got none</source>
+      <source>other string does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" />
-      <source>gettext import with alias _ found: {0}</source>
+      <source>format call uses too large index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="436" />
-      <source>print statement found</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" />
-      <source>one element tuple found</source>
+      <source>format call uses missing keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" />
+      <source>format call uses keyword arguments but no named entries</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="440" />
-      <source>mutable default argument of type {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="446" />
-      <source>mutable default argument of function call '{0}'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" />
-      <source>None should not be added at any return if function has no return value except None</source>
+      <source>format call uses variable arguments but no numbered entries</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="447" />
+      <source>format call uses implicit and explicit indexes together</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="451" />
+      <source>format call provides unused index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" />
-      <source>an explicit value at every return should be added if function has a return value except None</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="459" />
-      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <source>format call provides unused keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" />
+      <source>logging statement uses string.format()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="461" />
+      <source>logging statement uses '%'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="464" />
-      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="469" />
-      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <source>logging statement uses '+'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" />
+      <source>logging statement uses f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="470" />
+      <source>logging statement uses 'warn' instead of 'warning'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="474" />
+      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="478" />
+      <source>expected these __future__ imports: {0}; but got none</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="482" />
+      <source>gettext import with alias _ found: {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="486" />
+      <source>print statement found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="488" />
+      <source>one element tuple found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="495" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="492" />
+      <source>mutable default argument of type {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="498" />
+      <source>mutable default argument of function call '{0}'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="502" />
+      <source>None should not be added at any return if function has no return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="507" />
+      <source>an explicit value at every return should be added if function has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="512" />
+      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" />
+      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="523" />
+      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="529" />
       <source>commented code lines should be removed</source>
       <translation type="unfinished" />
     </message>
@@ -56869,103 +56937,103 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="193" />
+      <location filename="../PipInterface/Pip.py" line="195" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="216" />
+      <location filename="../PipInterface/Pip.py" line="220" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="217" />
+      <location filename="../PipInterface/Pip.py" line="221" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="257" />
+      <location filename="../PipInterface/Pip.py" line="261" />
       <source>Install PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="304" />
+      <location filename="../PipInterface/Pip.py" line="308" />
       <source>Repair PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="395" />
+      <location filename="../PipInterface/Pip.py" line="399" />
       <source>Upgrade Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="441" />
+      <location filename="../PipInterface/Pip.py" line="445" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="471" />
+      <location filename="../PipInterface/Pip.py" line="475" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="492" />
+      <location filename="../PipInterface/Pip.py" line="496" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="549" />
-      <location filename="../PipInterface/Pip.py" line="521" />
-      <location filename="../PipInterface/Pip.py" line="512" />
+      <location filename="../PipInterface/Pip.py" line="553" />
+      <location filename="../PipInterface/Pip.py" line="525" />
+      <location filename="../PipInterface/Pip.py" line="516" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="550" />
-      <location filename="../PipInterface/Pip.py" line="513" />
+      <location filename="../PipInterface/Pip.py" line="554" />
+      <location filename="../PipInterface/Pip.py" line="517" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="559" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="912" />
+      <location filename="../PipInterface/Pip.py" line="916" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="938" />
-      <location filename="../PipInterface/Pip.py" line="929" />
+      <location filename="../PipInterface/Pip.py" line="942" />
+      <location filename="../PipInterface/Pip.py" line="933" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="930" />
+      <location filename="../PipInterface/Pip.py" line="934" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="962" />
-      <location filename="../PipInterface/Pip.py" line="955" />
+      <location filename="../PipInterface/Pip.py" line="966" />
+      <location filename="../PipInterface/Pip.py" line="959" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="956" />
+      <location filename="../PipInterface/Pip.py" line="960" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="987" />
-      <location filename="../PipInterface/Pip.py" line="979" />
+      <location filename="../PipInterface/Pip.py" line="991" />
+      <location filename="../PipInterface/Pip.py" line="983" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="980" />
+      <location filename="../PipInterface/Pip.py" line="984" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -56988,12 +57056,12 @@
       <translation type="unfinished">Errori</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="153" />
+      <location filename="../PipInterface/PipDialog.py" line="154" />
       <source>Process Generation Error</source>
       <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="154" />
+      <location filename="../PipInterface/PipDialog.py" line="155" />
       <source>The process {0} could not be started.</source>
       <translation type="unfinished" />
     </message>
@@ -57858,30 +57926,30 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="434" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="435" />
       <source>Getting installed packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="448" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="449" />
       <source>Getting outdated packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1202" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1022" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1009" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="973" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
       <source>Search PyPI</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="975" />
       <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../PipInterface/PipPackagesWidget.py" line="989" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="990" />
       <source>%n package(s) found.</source>
       <translation type="unfinished">
         <numerusform />
@@ -57889,195 +57957,203 @@
       </translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="996" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="997" />
       <source>Showing first {0} packages found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1015" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1016" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1011" />
       <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1024" />
       <source>&lt;p&gt;There were no more results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1204" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1222" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1223" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1224" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1225" />
       <source>Install Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1227" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1228" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1230" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1231" />
       <source>Repair Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1237" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1238" />
       <source>Install</source>
       <translation type="unfinished">Installa</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1402" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1239" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1403" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1240" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1242" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1243" />
       <source>Install Local Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1245" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1246" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1252" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1253" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1254" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1255" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1257" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1258" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1260" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1261" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1264" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1265" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1271" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1272" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1273" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1274" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1276" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1277" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1279" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1280" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1282" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1283" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1299" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1300" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1303" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1304" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1307" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1308" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1311" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1312" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1318" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1319" />
       <source>Edit User Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1321" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1322" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1326" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1327" />
       <source>Configure...</source>
       <translation type="unfinished">Configura...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1545" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1532" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1521" />
-      <source>Edit Configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1546" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1533" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1522" />
+      <source>Edit Configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1547" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1534" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1523" />
       <source>No valid configuration path determined. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1714" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1736" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished">{0} {1}</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1735" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1757" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1760" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1862" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1843" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1890" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1865" />
       <source>unknown</source>
       <translation type="unfinished">sconosciuto</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1887" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
   </context>
   <context>
+    <name>PipPackagesWindow</name>
+    <message>
+      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <source>Manage Packages</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>PipPage</name>
     <message>
       <location filename="../Preferences/ConfigurationPages/PipPage.py" line="31" />
@@ -59474,7 +59550,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="471" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -61110,8 +61186,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6671" />
-      <location filename="../Project/Project.py" line="6642" />
+      <location filename="../Project/Project.py" line="6668" />
+      <location filename="../Project/Project.py" line="6639" />
       <location filename="../Project/Project.py" line="6593" />
       <location filename="../Project/Project.py" line="4800" />
       <source>Execute Make</source>
@@ -61133,7 +61209,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6648" />
+      <location filename="../Project/Project.py" line="6645" />
       <location filename="../Project/Project.py" line="4819" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
@@ -61653,22 +61729,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6643" />
+      <location filename="../Project/Project.py" line="6640" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6651" />
+      <location filename="../Project/Project.py" line="6648" />
       <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="6656" />
+      <location filename="../Project/Project.py" line="6653" />
       <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="6672" />
+      <location filename="../Project/Project.py" line="6669" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
@@ -64568,7 +64644,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="424" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="434" />
       <location filename="../DataViews/PyCoverageDialog.py" line="69" />
       <source>LCOV Report</source>
       <translation type="unfinished" />
@@ -64597,12 +64673,12 @@
       </translation>
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="425" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="435" />
       <source>Enter the path of the output file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="429" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="439" />
       <source>LCOV Files (*.lcov);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -64879,7 +64955,7 @@
       <translation>Flussi %v/%m</translation>
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="361" />
+      <location filename="../DataViews/PyProfileDialog.py" line="371" />
       <location filename="../DataViews/PyProfileDialog.py" line="91" />
       <source>Exclude Python Library</source>
       <translation>Escludi libreria Python</translation>
@@ -64930,7 +65006,7 @@
       <translation>&lt;p&gt;I dati di profilazione non possono essere letti dal file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="357" />
+      <location filename="../DataViews/PyProfileDialog.py" line="367" />
       <source>Include Python Library</source>
       <translation>Includi libreria Python</translation>
     </message>
@@ -66304,38 +66380,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="213" />
+      <location filename="../UI/PythonAstViewer.py" line="214" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="223" />
+      <location filename="../UI/PythonAstViewer.py" line="224" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="229" />
+      <location filename="../UI/PythonAstViewer.py" line="230" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="247" />
+      <location filename="../UI/PythonAstViewer.py" line="248" />
       <source>Module</source>
       <translation type="unfinished">Modulo</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="279" />
+      <location filename="../UI/PythonAstViewer.py" line="280" />
       <source>{0}: {1}</source>
       <translation type="unfinished">{0}: {1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="296" />
-      <location filename="../UI/PythonAstViewer.py" line="286" />
+      <location filename="../UI/PythonAstViewer.py" line="297" />
+      <location filename="../UI/PythonAstViewer.py" line="287" />
       <source>{0},{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="303" />
+      <location filename="../UI/PythonAstViewer.py" line="304" />
       <source>{0}  -  {1}</source>
       <translation type="unfinished" />
     </message>
@@ -68902,7 +68978,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="716" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="714" />
       <source>Initializing new queue repository</source>
       <translation>Inizializza una nuova coda del repository</translation>
     </message>
@@ -69880,50 +69956,82 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1341" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1555" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
       <source>Active</source>
       <translation type="unfinished">Attivo</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1345" />
-      <source>Status</source>
-      <translation type="unfinished">Stato</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1349" />
-      <source>Hostname</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1350" />
-      <source>IPv4 Address</source>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1343" />
+      <source>Name</source>
+      <translation type="unfinished">Nome</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1568" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1344" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1347" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Public</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>MTU</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>{0} Bytes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1556" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1559" />
+      <source>Status</source>
+      <translation type="unfinished">Stato</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1563" />
+      <source>Hostname</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1564" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1565" />
       <source>Netmask</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1352" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1566" />
       <source>Gateway</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1353" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1567" />
       <source>DNS</source>
       <translation type="unfinished" />
     </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1354" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
   </context>
   <context>
     <name>RccCompilerOptionsDialog</name>
@@ -71002,7 +71110,7 @@
       <translation>Match case</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SearchWidget.py" line="98" />
+      <location filename="../WebBrowser/SearchWidget.py" line="100" />
       <source>Expression was not found.</source>
       <translation>Espressione non trovata.</translation>
     </message>
@@ -72386,46 +72494,46 @@
       <translation>Configura...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2063" />
-      <location filename="../QScintilla/Shell.py" line="1845" />
+      <location filename="../QScintilla/Shell.py" line="2059" />
+      <location filename="../QScintilla/Shell.py" line="1841" />
       <location filename="../QScintilla/Shell.py" line="408" />
       <source>Project</source>
       <translation type="unfinished">Progetto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="810" />
+      <location filename="../QScintilla/Shell.py" line="806" />
       <source>Select History</source>
       <translation>Selezione cronologia</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="811" />
+      <location filename="../QScintilla/Shell.py" line="807" />
       <source>Select the history entry to execute (most recent shown last).</source>
       <translation>Seleziona l'elemento dalla cronologia da esegurie (i più recenti sono gli ultimi).</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="876" />
+      <location filename="../QScintilla/Shell.py" line="872" />
       <source>Passive Debug Mode</source>
       <translation>Passive Debug Mode</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="877" />
+      <location filename="../QScintilla/Shell.py" line="873" />
       <source>
 Not connected</source>
       <translation>
 Non connesso</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="880" />
+      <location filename="../QScintilla/Shell.py" line="876" />
       <source>No.</source>
       <translation>No.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="882" />
+      <location filename="../QScintilla/Shell.py" line="878" />
       <source>{0} on {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="929" />
+      <location filename="../QScintilla/Shell.py" line="925" />
       <source>Exception "{0}"
 {1}
 File: {2}, Line: {3}
@@ -72433,88 +72541,88 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="938" />
+      <location filename="../QScintilla/Shell.py" line="934" />
       <source>Exception "{0}"
 {1}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="958" />
+      <location filename="../QScintilla/Shell.py" line="954" />
       <source>Unspecified syntax error.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="961" />
+      <location filename="../QScintilla/Shell.py" line="957" />
       <source>Syntax error "{1}" in file {0} at line {2}, character {3}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="985" />
+      <location filename="../QScintilla/Shell.py" line="981" />
       <source>Signal "{0}" generated in file {1} at line {2}.
 Function: {3}({4})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1067" />
+      <location filename="../QScintilla/Shell.py" line="1063" />
       <source>StdOut: {0}</source>
       <translation>StdOut: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1075" />
+      <location filename="../QScintilla/Shell.py" line="1071" />
       <source>StdErr: {0}</source>
       <translation>StdErr: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1101" />
+      <location filename="../QScintilla/Shell.py" line="1097" />
       <source>&lt;{0}&gt; {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1888" />
+      <location filename="../QScintilla/Shell.py" line="1884" />
       <source>Available Virtual Environments:
 {0}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1931" />
-      <location filename="../QScintilla/Shell.py" line="1895" />
+      <location filename="../QScintilla/Shell.py" line="1927" />
+      <location filename="../QScintilla/Shell.py" line="1891" />
       <source>Current Virtual Environment: '{0}'
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2203" />
+      <location filename="../QScintilla/Shell.py" line="2199" />
       <source>Drop Error</source>
       <translation>Drop Error</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2204" />
+      <location filename="../QScintilla/Shell.py" line="2200" />
       <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="2446" />
-      <location filename="../QScintilla/Shell.py" line="2431" />
-      <location filename="../QScintilla/Shell.py" line="2412" />
+      <location filename="../QScintilla/Shell.py" line="2442" />
+      <location filename="../QScintilla/Shell.py" line="2427" />
+      <location filename="../QScintilla/Shell.py" line="2408" />
       <source>Save Shell Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2414" />
+      <location filename="../QScintilla/Shell.py" line="2410" />
       <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="2432" />
+      <location filename="../QScintilla/Shell.py" line="2428" />
       <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="2447" />
+      <location filename="../QScintilla/Shell.py" line="2443" />
       <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>
@@ -72759,335 +72867,335 @@
   <context>
     <name>ShellWindow</name>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1275" />
-      <location filename="../QScintilla/ShellWindow.py" line="54" />
+      <location filename="../QScintilla/ShellWindow.py" line="1279" />
+      <location filename="../QScintilla/ShellWindow.py" line="62" />
       <source>eric Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="220" />
-      <source>Quit</source>
-      <translation type="unfinished">Esci</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="222" />
-      <source>&amp;Quit</source>
-      <translation type="unfinished">&amp;Esci</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="223" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished">Ctrl+Q</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="228" />
-      <source>Quit the Shell</source>
-      <translation type="unfinished">Esci dall'IDE</translation>
+      <source>Quit</source>
+      <translation type="unfinished">Esci</translation>
     </message>
     <message>
       <location filename="../QScintilla/ShellWindow.py" line="230" />
+      <source>&amp;Quit</source>
+      <translation type="unfinished">&amp;Esci</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="231" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished">Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="236" />
+      <source>Quit the Shell</source>
+      <translation type="unfinished">Esci dall'IDE</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="238" />
       <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="237" />
-      <source>New Window</source>
-      <translation type="unfinished">Nuova finestra</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="239" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished">Nuova &amp;Finestra</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="240" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="245" />
-      <source>Open a new Shell window</source>
-      <translation type="unfinished" />
+      <source>New Window</source>
+      <translation type="unfinished">Nuova finestra</translation>
     </message>
     <message>
       <location filename="../QScintilla/ShellWindow.py" line="247" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished">Nuova &amp;Finestra</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="248" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="253" />
+      <source>Open a new Shell window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="255" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="258" />
-      <location filename="../QScintilla/ShellWindow.py" line="256" />
-      <source>Restart</source>
-      <translation type="unfinished">Riavvio</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="264" />
-      <source>Restart the shell</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="266" />
+      <location filename="../QScintilla/ShellWindow.py" line="264" />
+      <source>Restart</source>
+      <translation type="unfinished">Riavvio</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="272" />
+      <source>Restart the shell</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="274" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="278" />
-      <location filename="../QScintilla/ShellWindow.py" line="276" />
+      <location filename="../QScintilla/ShellWindow.py" line="286" />
+      <location filename="../QScintilla/ShellWindow.py" line="284" />
       <source>Restart and Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="285" />
+      <location filename="../QScintilla/ShellWindow.py" line="293" />
       <source>Clear the window and restart the shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="288" />
+      <location filename="../QScintilla/ShellWindow.py" line="296" />
       <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="298" />
+      <location filename="../QScintilla/ShellWindow.py" line="306" />
       <source>Save Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="300" />
+      <location filename="../QScintilla/ShellWindow.py" line="308" />
       <source>Save Contents...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="309" />
+      <location filename="../QScintilla/ShellWindow.py" line="317" />
       <source>Save the current contents of the shell to a file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="312" />
+      <location filename="../QScintilla/ShellWindow.py" line="320" />
       <source>&lt;b&gt;Save Contents&lt;/b&gt;&lt;p&gt;Save the current contents of the shell to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="345" />
+      <location filename="../QScintilla/ShellWindow.py" line="353" />
       <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="../QScintilla/ShellWindow.py" line="367" />
+      <location filename="../QScintilla/ShellWindow.py" line="375" />
       <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Copia&lt;/b&gt;&lt;p&gt;Copia il testo selezionato nella clipboard.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="389" />
+      <location filename="../QScintilla/ShellWindow.py" line="397" />
       <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="411" />
+      <location filename="../QScintilla/ShellWindow.py" line="419" />
       <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="709" />
-      <location filename="../QScintilla/ShellWindow.py" line="708" />
+      <location filename="../QScintilla/ShellWindow.py" line="713" />
+      <location filename="../QScintilla/ShellWindow.py" line="712" />
       <source>Move forward one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="721" />
-      <location filename="../QScintilla/ShellWindow.py" line="720" />
+      <location filename="../QScintilla/ShellWindow.py" line="725" />
+      <location filename="../QScintilla/ShellWindow.py" line="724" />
       <source>Move back one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1115" />
+      <location filename="../QScintilla/ShellWindow.py" line="1119" />
       <source>Show History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1117" />
+      <location filename="../QScintilla/ShellWindow.py" line="1121" />
       <source>&amp;Show History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1123" />
-      <source>Show the shell history in a dialog</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1127" />
+      <source>Show the shell history in a dialog</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1131" />
       <source>Clear History</source>
       <translation type="unfinished">Pulisci la history</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1129" />
+      <location filename="../QScintilla/ShellWindow.py" line="1133" />
       <source>&amp;Clear History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1135" />
-      <source>Clear the shell history</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1139" />
+      <source>Clear the shell history</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1143" />
       <source>Select History Entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1140" />
+      <location filename="../QScintilla/ShellWindow.py" line="1144" />
       <source>Select History &amp;Entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1147" />
+      <location filename="../QScintilla/ShellWindow.py" line="1151" />
       <source>Select an entry of the shell history</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
-      <source>About</source>
-      <translation type="unfinished">About</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
-      <source>&amp;About</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1158" />
-      <source>Display information about this software</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1160" />
+      <source>About</source>
+      <translation type="unfinished">About</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1160" />
+      <source>&amp;About</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1162" />
+      <source>Display information about this software</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1164" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Mostra alcune informazioni su questo software.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About &amp;Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1172" />
+      <location filename="../QScintilla/ShellWindow.py" line="1176" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1175" />
+      <location filename="../QScintilla/ShellWindow.py" line="1179" />
       <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="../QScintilla/ShellWindow.py" line="1184" />
+      <location filename="../QScintilla/ShellWindow.py" line="1188" />
       <source>What's This?</source>
       <translation type="unfinished">Cos'è questo ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1186" />
+      <location filename="../QScintilla/ShellWindow.py" line="1190" />
       <source>&amp;What's This?</source>
       <translation type="unfinished">C&amp;os'è Questo ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1187" />
+      <location filename="../QScintilla/ShellWindow.py" line="1191" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1192" />
+      <location filename="../QScintilla/ShellWindow.py" line="1196" />
       <source>Context sensitive help</source>
       <translation type="unfinished">Help sensibile al contesto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1194" />
+      <location filename="../QScintilla/ShellWindow.py" line="1198" />
       <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="../QScintilla/ShellWindow.py" line="1273" />
+      <location filename="../QScintilla/ShellWindow.py" line="1277" />
       <source>eric Shell [{0}]</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="1346" />
       <source>About eric Shell Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1343" />
+      <location filename="../QScintilla/ShellWindow.py" line="1347" />
       <source>The eric Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1370" />
+      <location filename="../QScintilla/ShellWindow.py" line="1374" />
       <source>&amp;File</source>
       <translation type="unfinished">&amp;File</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1381" />
+      <location filename="../QScintilla/ShellWindow.py" line="1385" />
       <source>&amp;Edit</source>
       <translation type="unfinished">&amp;Edita</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1392" />
+      <location filename="../QScintilla/ShellWindow.py" line="1396" />
       <source>&amp;View</source>
       <translation type="unfinished">&amp;Visualizza</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1399" />
+      <location filename="../QScintilla/ShellWindow.py" line="1403" />
       <source>Histor&amp;y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1406" />
+      <location filename="../QScintilla/ShellWindow.py" line="1410" />
       <source>&amp;Start</source>
       <translation type="unfinished">&amp;Avvia</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1412" />
+      <location filename="../QScintilla/ShellWindow.py" line="1416" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1445" />
+      <location filename="../QScintilla/ShellWindow.py" line="1449" />
       <source>File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1455" />
+      <location filename="../QScintilla/ShellWindow.py" line="1459" />
       <source>Edit</source>
       <translation type="unfinished">Modifica</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1461" />
+      <location filename="../QScintilla/ShellWindow.py" line="1465" />
       <source>Find</source>
       <translation type="unfinished">Trova</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1466" />
+      <location filename="../QScintilla/ShellWindow.py" line="1470" />
       <source>View</source>
       <translation type="unfinished">Visualizza</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1472" />
+      <location filename="../QScintilla/ShellWindow.py" line="1476" />
       <source>History</source>
       <translation type="unfinished">Cronologia</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1477" />
+      <location filename="../QScintilla/ShellWindow.py" line="1481" />
       <source>Help</source>
       <translation type="unfinished">Aiuto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1499" />
+      <location filename="../QScintilla/ShellWindow.py" line="1503" />
       <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -73445,24 +73553,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="363" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="345" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="324" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
       <source>Edit shortcuts</source>
       <translation>Scorciatoie editor</translation>
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="326" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; è già stata selezionata per l'azione &lt;b&gt;{1}&lt;/b&gt; . Rimuovi?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="347" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; nasconde l'azione &lt;b&gt;{1}&lt;/b&gt; . Rimuovi?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="365" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; è nascosta dall'azione &lt;b&gt;{1}&lt;/b&gt; . Rimuovi?&lt;/p&gt;</translation>
     </message>
@@ -76632,329 +76740,329 @@
       <translation>Il progetto non può essere checked out dal repository.&lt;br /&gt;Ripristino dei contenuti originali.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="310" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="327" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="312" />
       <source>Importing project into Subversion repository</source>
       <translation>Importazione del progetto nel repository Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="328" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="330" />
       <source>Imported revision {0}.
 </source>
       <translation>importata revisione {0}.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="362" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="364" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="367" />
       <source>Subversion Checkout</source>
       <translation>Subversion Checkout</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="420" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="433" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="422" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="368" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation>Il tag deve essere un tag normale (tags) o un tag branch (branch). Selezionarlo dalla lista.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="389" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="388" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="391" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="390" />
       <source>Checking project out of Subversion repository</source>
       <translation>Checking del progetto dal repository subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="419" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="432" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="421" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="434" />
       <source>Subversion Export</source>
       <translation>Subversion Export</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="443" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="445" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="456" />
       <source>Exporting project from Subversion repository</source>
       <translation>Esportazione del progetto dal repository Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="514" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="535" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="516" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="537" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="515" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="517" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="538" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="578" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="580" />
       <source>Commiting changes to Subversion repository</source>
       <translation>Convalida delle modifiche nel repository Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="614" />
       <source>Committed revision {0}.</source>
       <translation>Committata la revisione {0}.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="638" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="684" />
       <source>Synchronizing with the Subversion repository</source>
       <translation>Sincronizzazione con il repository Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="735" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="793" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation>Aggiunta di file/directory al repository subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="898" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="900" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation>Aggiunta di alberi di directory al repository subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="859" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="937" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="939" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation>Rimozione di file/directory al repository subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="918" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="920" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="998" />
       <source>Moving {0}</source>
       <translation>Spostamento di {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1177" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1148" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1027" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="998" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1292" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1124" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1094" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1179" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1029" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1294" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1265" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1126" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1096" />
       <source>Subversion Error</source>
       <translation>Subversion Error</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1095" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1001" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1097" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation>L'URL del repository del progetto non può essere recuperato dalla copia di lavoro. L'operazione di etichettatura verrà interrotta</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1028" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1125" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1030" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1127" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation>L'URL del repository del progetto a un formato non valido. L'operazione di etichettatura verrà interrotta</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1062" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1161" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1147" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1149" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation>Tag di{0} nel repository subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1324" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1172" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1326" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1174" />
       <source>Revision {0}.
 </source>
       <translation>Revisione {0}.
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1106" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1095" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1197" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1108" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1097" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1096" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1198" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1200" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1107" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1109" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1211" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1113" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1115" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1219" />
       <source>Reverting changes</source>
       <translation>Annullamento modifiche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1149" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1264" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1151" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1266" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation>L'URL del repository del progetto non può essere recuperato dalla copia di lavoro. L'operazione di switch verrà interrotta</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1178" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1293" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1180" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1295" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation>L'URL del repository del progetto ha un formato non valido. L'operazione di switch verrà interrotta</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1207" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1318" />
       <source>Switching to {0}</source>
       <translation>Switch a {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1416" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1275" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1418" />
       <source>Merging {0}</source>
       <translation>Merge di {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1543" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1723" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1544" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1725" />
       <source>Cleaning up {0}</source>
       <translation>Pulizia di {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1573" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1763" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1765" />
       <source>Subversion command</source>
       <translation>comando Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1744" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1883" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1747" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1887" />
       <source>Resolving conficts</source>
       <translation>Risoluzione conflitti</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1924" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1928" />
       <source>Copying {0}</source>
       <translation>copia di {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1844" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1823" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2000" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1847" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1987" />
       <source>Subversion Set Property</source>
       <translation>Subversion Set Property</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1870" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2045" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1988" />
       <source>You have to supply a property name. Aborting.</source>
       <translation>Devi fornire un nome per la proprietà. Interrompo.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2023" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2027" />
       <source>Property set.</source>
       <translation>Proprietà impostata.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1887" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1858" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2061" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2044" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1890" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1872" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2048" />
       <source>Subversion Delete Property</source>
       <translation>Subversion Delete Property</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2079" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2083" />
       <source>Property deleted.</source>
       <translation>Proprietà cancellata.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2114" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2102" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2093" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2294" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2105" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2096" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2310" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2298" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2289" />
       <source>Subversion Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2115" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2307" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2118" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2311" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2348" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2352" />
       <source>Subversion Lock</source>
       <translation>Lock Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2349" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2353" />
       <source>Enter lock comment</source>
       <translation>Inserico commento del lock</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2165" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2370" />
       <source>Locking in the Subversion repository</source>
       <translation>Blocco nel repository Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2192" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2195" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2411" />
       <source>Unlocking in the Subversion repository</source>
       <translation>Sblocco del repository Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2217" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2458" />
       <source>Relocating</source>
       <translation>Movimentazione</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2235" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2479" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2238" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2483" />
       <source>Repository Browser</source>
       <translation>Visualizzatore del Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2236" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2480" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2239" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2484" />
       <source>Enter the repository URL.</source>
       <translation>Inserisci l'URL del repository.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2269" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2505" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2309" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2272" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2509" />
       <source>Remove from changelist</source>
       <translation>Rimuovi dalla changelist</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2285" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2544" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2533" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2548" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2537" />
       <source>Add to changelist</source>
       <translation>Aggiungi alla changelist</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2534" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2289" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2538" />
       <source>Enter name of the changelist:</source>
       <translation>Inserisci il nome della changelist:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2373" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2598" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2602" />
       <source>Upgrade</source>
       <translation type="unfinished" />
     </message>
@@ -77135,7 +77243,7 @@
       <translation>Il processo svn è terminato con codice di uscita {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2052" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="181" />
       <source>The svn process did not finish within 30s.</source>
       <translation>Il processo svn non è finito entro i 30s.</translation>
@@ -77146,12 +77254,12 @@
       <translation>Non posso avviare l'eseguibile svn.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1862" />
       <source>Enter property name</source>
       <translation>Inserisci nome proprietà</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2051" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2054" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
@@ -77784,27 +77892,27 @@
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="208" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="284" />
       <source>There is no difference.</source>
       <translation>Non ci sono differenze.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="223" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="342" />
       <source>&lt;Start&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="225" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="343" />
       <source>&lt;End&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="410" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="444" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="426" />
@@ -77812,19 +77920,19 @@
       <translation>Salva Diff</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="378" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="428" />
       <source>Patch Files (*.diff)</source>
       <translation>File Patch (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="396" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="445" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file  patch &lt;b&gt;{0}&lt;/b&gt; esiste già.Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="412" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="461" />
       <source>&lt;p&gt;The patch 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>
@@ -78080,7 +78188,7 @@
       <translation>Seleziona il campo su cui filtrare</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="566" />
@@ -78090,7 +78198,7 @@
       <translation>Revisione</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="674" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="563" />
@@ -80105,7 +80213,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="654" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.ui" line="0" />
@@ -80329,8 +80437,8 @@
       <translation>Aggiungi alla Changelist</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1057" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="129" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="915" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="894" />
@@ -80339,7 +80447,7 @@
       <translation>Rimuovi dalla Changelist</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="134" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="818" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="134" />
@@ -80347,7 +80455,7 @@
       <translation>Lock</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="136" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="837" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="136" />
@@ -80431,7 +80539,7 @@
       <translation>si</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="491" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="562" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="491" />
@@ -80439,34 +80547,34 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="798" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="655" />
       <source>There are no entries selected to be committed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
-      <source>Add</source>
-      <translation>Aggiungi</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
+      <source>Add</source>
+      <translation>Aggiungi</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="840" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="697" />
       <source>There are no unversioned entries available/selected.</source>
       <translation>Non ci sono elementi non sotto controllo disponibili/selezionati.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="888" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="862" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="720" />
       <source>Revert</source>
       <translation>Inverti</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="934" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="912" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="864" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="791" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="769" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="721" />
@@ -80474,41 +80582,41 @@
       <translation>Non ci sono modifiche disponibili/selezionate da committare.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="747" />
       <source>There are no missing entries available/selected.</source>
       <translation type="unfinished">Non ci sono elementi mancati disponibili/selezionati.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="768" />
       <source>Differences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="939" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="932" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="797" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="790" />
-      <source>Side-by-Side Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="790" />
+      <source>Side-by-Side Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="941" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="798" />
       <source>Only one file with uncommitted changes must be selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="819" />
       <source>There are no unlocked files available/selected.</source>
       <translation>Non ci sono file sbloccati disponibili/selezionati.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="981" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="876" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="857" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="838" />
@@ -80516,25 +80624,25 @@
       <translation>Non ci sono file bloccati disponibili/selezionati.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="998" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="856" />
       <source>Break Lock</source>
       <translation>Spezza lock</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1017" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="875" />
       <source>Steal Lock</source>
       <translation>Ruba lock</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1038" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="895" />
       <source>There are no files available/selected not belonging to a changelist.</source>
       <translation>Non ci sono file disponibili/selezionati che non appartengono ad una changelist.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1059" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="916" />
       <source>There are no files available/selected belonging to a changelist.</source>
       <translation>Non ci sono file disponibili/selezionati che appartengono ad una changelist.</translation>
@@ -80662,7 +80770,7 @@
   <context>
     <name>SvnStatusMonitorThread</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="141" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="143" />
       <source>Subversion status checked successfully (using pysvn)</source>
       <translation>Controllo stato subversion eseguito con successo (usando pysvn)</translation>
     </message>
@@ -82268,7 +82376,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="187" />
+      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="188" />
       <source>&lt;font color="#FF0000"&gt;&lt;b&gt;Error:&lt;/b&gt; {0}&lt;/font&gt;</source>
       <translation type="unfinished">&lt;font color="#FF0000"&gt;&lt;b&gt;Errore:&lt;/b&gt; {0}&lt;/font&gt;</translation>
     </message>
@@ -83297,7 +83405,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="565" />
+      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="563" />
       <source>Show Tab Manager</source>
       <translation type="unfinished" />
     </message>
@@ -83863,47 +83971,47 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="743" />
+      <location filename="../Tasks/TaskViewer.py" line="744" />
       <source>Activate task filter</source>
       <translation>Attiva i filtri sui task</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="744" />
+      <location filename="../Tasks/TaskViewer.py" line="745" />
       <source>The task filter doesn't have any active filters. Do you want to configure the filter settings?</source>
       <translation>Il filtro sui task non ha nessun filtro attivo. Vuoi configurare i filtri ?</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="778" />
-      <source>Scan Filter Patterns</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="779" />
+      <source>Scan Filter Patterns</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="780" />
       <source>Enter filename patterns of files to be excluded separated by a comma:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="821" />
-      <source>Extracting project tasks...</source>
-      <translation>Estrazione dei task del progetto...</translation>
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="822" />
+      <source>Extracting project tasks...</source>
+      <translation>Estrazione dei task del progetto...</translation>
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="823" />
       <source>Abort</source>
       <translation>Termina</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="825" />
+      <location filename="../Tasks/TaskViewer.py" line="826" />
       <source>%v/%m Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="829" />
+      <location filename="../Tasks/TaskViewer.py" line="830" />
       <source>Tasks</source>
       <translation type="unfinished">Task</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="836" />
+      <location filename="../Tasks/TaskViewer.py" line="837" />
       <source>Extracting project tasks...
 {0}</source>
       <translation>Estrazione dei task del progetto...
@@ -84046,7 +84154,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="316" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="318" />
       <location filename="../MicroPython/Devices/TeensyDevices.py" line="154" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -84087,17 +84195,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="317" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="319" />
       <source>&lt;p&gt;Teensy 4.0 and Teensy 4.1 are flashed using the 'Teensy Loader' application. Make sure you downloaded the MicroPython or CircuitPython .hex file.&lt;/p&gt;&lt;p&gt;See &lt;a href="{0}"&gt;the PJRC Teensy web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="339" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="341" />
       <source>Start 'Teensy Loader'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="340" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="342" />
       <source>&lt;p&gt;The 'Teensy Loader' application &lt;b&gt;teensy&lt;/b&gt; could not be started. Ensure it is in the application search path or start it manually.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -84327,78 +84435,78 @@
       <translation>Configura...</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="531" />
+      <location filename="../Templates/TemplateViewer.py" line="533" />
       <source>Remove Template</source>
       <translation>Rimuovi template</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="532" />
+      <location filename="../Templates/TemplateViewer.py" line="534" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Vuoi veramente rimuovere &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="560" />
-      <source>Import Templates</source>
-      <translation>Importa template</translation>
-    </message>
-    <message>
       <location filename="../Templates/TemplateViewer.py" line="562" />
+      <source>Import Templates</source>
+      <translation>Importa template</translation>
+    </message>
+    <message>
+      <location filename="../Templates/TemplateViewer.py" line="564" />
       <source>Templates Files (*.ecj);;XML Templates Files (*.e4c);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="595" />
-      <location filename="../Templates/TemplateViewer.py" line="579" />
+      <location filename="../Templates/TemplateViewer.py" line="597" />
+      <location filename="../Templates/TemplateViewer.py" line="581" />
       <source>Export Templates</source>
       <translation>Esporta template</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="581" />
+      <location filename="../Templates/TemplateViewer.py" line="583" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="596" />
+      <location filename="../Templates/TemplateViewer.py" line="598" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="614" />
+      <location filename="../Templates/TemplateViewer.py" line="616" />
       <source>Reload Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="615" />
+      <location filename="../Templates/TemplateViewer.py" line="617" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
       <source>Template Help</source>
       <translation>Help template</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="883" />
+      <location filename="../Templates/TemplateViewer.py" line="885" />
       <source>Edit Template Group</source>
       <translation>Modifica gruppo template</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="884" />
+      <location filename="../Templates/TemplateViewer.py" line="886" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Un gruppo di template con il nome &lt;b&gt;{0}&lt;/b&gt; esite già.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1005" />
+      <location filename="../Templates/TemplateViewer.py" line="1007" />
       <source>Read Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1006" />
+      <location filename="../Templates/TemplateViewer.py" line="1008" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file template &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
@@ -87257,99 +87365,99 @@
   <context>
     <name>UMLGraphicsView</name>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="90" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="94" />
       <source>Delete shapes</source>
       <translation>Cancella forme</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="96" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="100" />
       <source>Increase width by {0} points</source>
       <translation>Aumenta larghezza di {0} punti</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="103" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="107" />
       <source>Increase height by {0} points</source>
       <translation>Aumenta altezza di {0} punti</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="110" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="114" />
       <source>Decrease width by {0} points</source>
       <translation>Diminuisci larghezza di {0} punti</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="117" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="121" />
       <source>Decrease height by {0} points</source>
       <translation>Diminuisci altezza di {0} punti</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="123" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="127" />
       <source>Set size</source>
       <translation>Imposta dimensioni</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="128" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="132" />
       <source>Re-Scan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="133" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="137" />
       <source>Re-Layout</source>
       <translation>Re-Layout</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="138" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="142" />
       <source>Align Left</source>
       <translation>Allinea a sinistra</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="145" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="149" />
       <source>Align Center Horizontal</source>
       <translation>Allineamento orizzontare centrato</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="152" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="156" />
       <source>Align Right</source>
       <translation>Allinea a destra</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="158" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="162" />
       <source>Align Top</source>
       <translation>Allinea in alto</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="165" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="169" />
       <source>Align Center Vertical</source>
       <translation>Allineamento verticale centrato</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="172" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="176" />
       <source>Align Bottom</source>
       <translation>Allinea in basso</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="235" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="240" />
       <source>Graphics</source>
       <translation>Grafica</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="395" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="382" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="365" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="400" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="387" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="370" />
       <source>Save Diagram</source>
       <translation>Salva diagramma</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="367" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="372" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="383" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="388" />
       <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="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="401" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;/p&gt;</translation>
     </message>
@@ -88075,7 +88183,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7688" />
+      <location filename="../UI/UserInterface.py" line="7687" />
       <location filename="../UI/UserInterface.py" line="1934" />
       <location filename="../UI/UserInterface.py" line="1927" />
       <source>Load session</source>
@@ -89362,8 +89470,8 @@
       <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="7373" />
-      <location filename="../UI/UserInterface.py" line="7354" />
+      <location filename="../UI/UserInterface.py" line="7372" />
+      <location filename="../UI/UserInterface.py" line="7353" />
       <location filename="../UI/UserInterface.py" line="3358" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Esporta scorciatoie da tastiera</translation>
@@ -89384,7 +89492,7 @@
       <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="7392" />
+      <location filename="../UI/UserInterface.py" line="7391" />
       <location filename="../UI/UserInterface.py" line="3377" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importa scorciatoie da tastiera</translation>
@@ -90100,185 +90208,185 @@
       <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="6609" />
+      <location filename="../UI/UserInterface.py" line="6610" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Il processo '{0}' è terminato.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6896" />
-      <location filename="../UI/UserInterface.py" line="6834" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6716" />
-      <location filename="../UI/UserInterface.py" line="6652" />
-      <source>Documentation Missing</source>
-      <translation>Documentazione mancante</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6897" />
       <location filename="../UI/UserInterface.py" line="6835" />
       <location filename="../UI/UserInterface.py" line="6791" />
       <location filename="../UI/UserInterface.py" line="6717" />
       <location filename="../UI/UserInterface.py" line="6653" />
+      <source>Documentation Missing</source>
+      <translation>Documentazione mancante</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6898" />
+      <location filename="../UI/UserInterface.py" line="6836" />
+      <location filename="../UI/UserInterface.py" line="6792" />
+      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6654" />
       <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="6878" />
-      <location filename="../UI/UserInterface.py" line="6760" />
-      <source>Documentation</source>
-      <translation>Documentazione</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6761" />
-      <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="6879" />
+      <location filename="../UI/UserInterface.py" line="6761" />
+      <source>Documentation</source>
+      <translation>Documentazione</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6762" />
+      <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="6880" />
       <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="7056" />
+      <location filename="../UI/UserInterface.py" line="6993" />
+      <source>Start Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6994" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7057" />
-      <location filename="../UI/UserInterface.py" line="6994" />
-      <source>Start Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6995" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7058" />
       <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="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7374" />
+      <location filename="../UI/UserInterface.py" line="7373" />
       <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="7394" />
+      <location filename="../UI/UserInterface.py" line="7393" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7576" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7577" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7578" />
       <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file task &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
+      <location filename="../UI/UserInterface.py" line="7620" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7649" />
-      <location filename="../UI/UserInterface.py" line="7622" />
-      <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="7648" />
+      <location filename="../UI/UserInterface.py" line="7621" />
+      <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="7647" />
       <source>Read session</source>
       <translation>Leggi sessione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7665" />
+      <location filename="../UI/UserInterface.py" line="7664" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7667" />
+      <location filename="../UI/UserInterface.py" line="7666" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7690" />
+      <location filename="../UI/UserInterface.py" line="7689" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7735" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7736" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7737" />
       <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="8106" />
+      <source>Drop Error</source>
+      <translation>Errore Drop</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8107" />
-      <source>Drop Error</source>
-      <translation>Errore Drop</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8108" />
       <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="8288" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8289" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8290" />
       <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="8346" />
+      <location filename="../UI/UserInterface.py" line="8333" />
+      <source>First time usage</source>
+      <translation>Primo avvio</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8334" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8347" />
-      <location filename="../UI/UserInterface.py" line="8334" />
-      <source>First time usage</source>
-      <translation>Primo avvio</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8335" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8348" />
       <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="8371" />
+      <location filename="../UI/UserInterface.py" line="8370" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished">Seleziona cartella di lavoro</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8530" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8531" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8532" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -90363,7 +90471,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="989" />
+      <location filename="../Utilities/__init__.py" line="991" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Puoi usare i codici % come segnaposti nella stringa. I codici supportati sono: &lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;colonna del cursore nell'editor attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory dell'editor attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;nome file dell'editor corrente&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;directory home dell'utente attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;linea del cursore dell'editor attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;percorso del progetto attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;testo selezionato dell'editor attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username dell'utente attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;Segno percentuale&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -91475,663 +91583,663 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="681" />
-      <location filename="../QScintilla/ShellWindow.py" line="302" />
+      <location filename="../QScintilla/ShellWindow.py" line="310" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation>Ctrl+S</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1032" />
-      <location filename="../QScintilla/ShellWindow.py" line="329" />
+      <location filename="../QScintilla/ShellWindow.py" line="337" />
       <source>Cut</source>
       <translation>Taglia</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1034" />
-      <location filename="../QScintilla/ShellWindow.py" line="331" />
+      <location filename="../QScintilla/ShellWindow.py" line="339" />
       <source>Cu&amp;t</source>
       <translation>&amp;Taglia</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1036" />
-      <location filename="../QScintilla/ShellWindow.py" line="333" />
+      <location filename="../QScintilla/ShellWindow.py" line="341" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation>Ctrl+X</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1039" />
-      <location filename="../QScintilla/ShellWindow.py" line="336" />
+      <location filename="../QScintilla/ShellWindow.py" line="344" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation>Shift+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1045" />
-      <location filename="../QScintilla/ShellWindow.py" line="342" />
+      <location filename="../QScintilla/ShellWindow.py" line="350" />
       <source>Cut the selection</source>
       <translation>Taglia la selezione</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1059" />
-      <location filename="../QScintilla/ShellWindow.py" line="351" />
+      <location filename="../QScintilla/ShellWindow.py" line="359" />
       <source>Copy</source>
       <translation>Copia</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1061" />
-      <location filename="../QScintilla/ShellWindow.py" line="353" />
+      <location filename="../QScintilla/ShellWindow.py" line="361" />
       <source>&amp;Copy</source>
       <translation>&amp;Copia</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1063" />
-      <location filename="../QScintilla/ShellWindow.py" line="355" />
+      <location filename="../QScintilla/ShellWindow.py" line="363" />
       <source>Ctrl+C</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+C</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1066" />
-      <location filename="../QScintilla/ShellWindow.py" line="358" />
+      <location filename="../QScintilla/ShellWindow.py" line="366" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1072" />
-      <location filename="../QScintilla/ShellWindow.py" line="364" />
+      <location filename="../QScintilla/ShellWindow.py" line="372" />
       <source>Copy the selection</source>
       <translation>Copia la selezione</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1086" />
-      <location filename="../QScintilla/ShellWindow.py" line="373" />
+      <location filename="../QScintilla/ShellWindow.py" line="381" />
       <source>Paste</source>
       <translation>Incolla</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1088" />
-      <location filename="../QScintilla/ShellWindow.py" line="375" />
+      <location filename="../QScintilla/ShellWindow.py" line="383" />
       <source>&amp;Paste</source>
       <translation>&amp;Incolla</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1090" />
-      <location filename="../QScintilla/ShellWindow.py" line="377" />
+      <location filename="../QScintilla/ShellWindow.py" line="385" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation>Ctrl+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1093" />
-      <location filename="../QScintilla/ShellWindow.py" line="380" />
+      <location filename="../QScintilla/ShellWindow.py" line="388" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation>Shift+Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1099" />
-      <location filename="../QScintilla/ShellWindow.py" line="386" />
+      <location filename="../QScintilla/ShellWindow.py" line="394" />
       <source>Paste the last cut/copied text</source>
       <translation>Incolla l'ultimo testo tagliato/copiato</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1115" />
       <location filename="../ViewManager/ViewManager.py" line="1113" />
-      <location filename="../QScintilla/ShellWindow.py" line="400" />
-      <location filename="../QScintilla/ShellWindow.py" line="398" />
+      <location filename="../QScintilla/ShellWindow.py" line="408" />
+      <location filename="../QScintilla/ShellWindow.py" line="406" />
       <source>Clear</source>
       <translation>Pulisci</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1117" />
-      <location filename="../QScintilla/ShellWindow.py" line="402" />
+      <location filename="../QScintilla/ShellWindow.py" line="410" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation>Alt+Shift+C</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1124" />
-      <location filename="../QScintilla/ShellWindow.py" line="409" />
+      <location filename="../QScintilla/ShellWindow.py" line="417" />
       <source>Clear all text</source>
       <translation>Pulisci tutto il testo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
-      <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/ShellWindow.py" line="435" />
-      <location filename="../QScintilla/ShellWindow.py" line="434" />
+      <location filename="../QScintilla/MiniEditor.py" line="1681" />
+      <location filename="../QScintilla/MiniEditor.py" line="1680" />
+      <location filename="../QScintilla/ShellWindow.py" line="439" />
+      <location filename="../QScintilla/ShellWindow.py" line="438" />
       <source>Delete current line</source>
       <translation>Cancella riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1686" />
-      <location filename="../QScintilla/ShellWindow.py" line="436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1682" />
+      <location filename="../QScintilla/ShellWindow.py" line="440" />
       <source>Ctrl+Shift+L</source>
       <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
-      <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/ShellWindow.py" line="447" />
-      <location filename="../QScintilla/ShellWindow.py" line="446" />
+      <location filename="../QScintilla/MiniEditor.py" line="1203" />
+      <location filename="../QScintilla/MiniEditor.py" line="1202" />
+      <location filename="../QScintilla/ShellWindow.py" line="451" />
+      <location filename="../QScintilla/ShellWindow.py" line="450" />
       <source>Indent one level</source>
       <translation>Indenta un livello</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1208" />
-      <location filename="../QScintilla/ShellWindow.py" line="448" />
+      <location filename="../QScintilla/MiniEditor.py" line="1204" />
+      <location filename="../QScintilla/ShellWindow.py" line="452" />
       <source>Tab</source>
       <translation>Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
-      <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/ShellWindow.py" line="459" />
-      <location filename="../QScintilla/ShellWindow.py" line="458" />
+      <location filename="../QScintilla/MiniEditor.py" line="1669" />
+      <location filename="../QScintilla/MiniEditor.py" line="1668" />
+      <location filename="../QScintilla/ShellWindow.py" line="463" />
+      <location filename="../QScintilla/ShellWindow.py" line="462" />
       <source>Insert new line</source>
       <translation>Inserisci riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
-      <location filename="../QScintilla/ShellWindow.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1670" />
+      <location filename="../QScintilla/ShellWindow.py" line="464" />
       <source>Return</source>
       <translation>Return</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1675" />
-      <location filename="../QScintilla/ShellWindow.py" line="461" />
+      <location filename="../QScintilla/MiniEditor.py" line="1671" />
+      <location filename="../QScintilla/ShellWindow.py" line="465" />
       <source>Enter</source>
       <translation>Enter</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
-      <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/ShellWindow.py" line="471" />
-      <location filename="../QScintilla/ShellWindow.py" line="470" />
+      <location filename="../QScintilla/MiniEditor.py" line="1555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1554" />
+      <location filename="../QScintilla/ShellWindow.py" line="475" />
+      <location filename="../QScintilla/ShellWindow.py" line="474" />
       <source>Delete previous character</source>
       <translation>Cancella caratteri precedenti</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1560" />
-      <location filename="../QScintilla/ShellWindow.py" line="472" />
+      <location filename="../QScintilla/MiniEditor.py" line="1556" />
+      <location filename="../QScintilla/ShellWindow.py" line="476" />
       <source>Backspace</source>
       <translation>Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1567" />
-      <location filename="../QScintilla/ShellWindow.py" line="479" />
+      <location filename="../QScintilla/MiniEditor.py" line="1563" />
+      <location filename="../QScintilla/ShellWindow.py" line="483" />
       <source>Meta+H</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1572" />
-      <location filename="../QScintilla/ShellWindow.py" line="484" />
+      <location filename="../QScintilla/MiniEditor.py" line="1568" />
+      <location filename="../QScintilla/ShellWindow.py" line="488" />
       <source>Shift+Backspace</source>
       <translation>Shift+Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
-      <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/ShellWindow.py" line="493" />
-      <location filename="../QScintilla/ShellWindow.py" line="492" />
+      <location filename="../QScintilla/MiniEditor.py" line="1593" />
+      <location filename="../QScintilla/MiniEditor.py" line="1592" />
+      <location filename="../QScintilla/ShellWindow.py" line="497" />
+      <location filename="../QScintilla/ShellWindow.py" line="496" />
       <source>Delete current character</source>
       <translation>Cancella il carattere corrente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1598" />
-      <location filename="../QScintilla/ShellWindow.py" line="494" />
+      <location filename="../QScintilla/MiniEditor.py" line="1594" />
+      <location filename="../QScintilla/ShellWindow.py" line="498" />
       <source>Del</source>
       <translation>Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1605" />
-      <location filename="../QScintilla/ShellWindow.py" line="501" />
+      <location filename="../QScintilla/MiniEditor.py" line="1601" />
+      <location filename="../QScintilla/ShellWindow.py" line="505" />
       <source>Meta+D</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
-      <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/ShellWindow.py" line="509" />
-      <location filename="../QScintilla/ShellWindow.py" line="508" />
+      <location filename="../QScintilla/MiniEditor.py" line="1609" />
+      <location filename="../QScintilla/MiniEditor.py" line="1608" />
+      <location filename="../QScintilla/ShellWindow.py" line="513" />
+      <location filename="../QScintilla/ShellWindow.py" line="512" />
       <source>Delete word to left</source>
       <translation>Cancella parola a sinistra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1614" />
-      <location filename="../QScintilla/ShellWindow.py" line="510" />
+      <location filename="../QScintilla/MiniEditor.py" line="1610" />
+      <location filename="../QScintilla/ShellWindow.py" line="514" />
       <source>Ctrl+Backspace</source>
       <translation>Ctrl+Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
-      <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/ShellWindow.py" line="521" />
-      <location filename="../QScintilla/ShellWindow.py" line="520" />
+      <location filename="../QScintilla/MiniEditor.py" line="1621" />
+      <location filename="../QScintilla/MiniEditor.py" line="1620" />
+      <location filename="../QScintilla/ShellWindow.py" line="525" />
+      <location filename="../QScintilla/ShellWindow.py" line="524" />
       <source>Delete word to right</source>
       <translation>Cancella parola a destra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1626" />
-      <location filename="../QScintilla/ShellWindow.py" line="522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1622" />
+      <location filename="../QScintilla/ShellWindow.py" line="526" />
       <source>Ctrl+Del</source>
       <translation>Ctrl+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
-      <location filename="../QScintilla/MiniEditor.py" line="1637" />
-      <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/ShellWindow.py" line="533" />
-      <location filename="../QScintilla/ShellWindow.py" line="532" />
+      <location filename="../QScintilla/MiniEditor.py" line="1633" />
+      <location filename="../QScintilla/MiniEditor.py" line="1632" />
+      <location filename="../QScintilla/ShellWindow.py" line="537" />
+      <location filename="../QScintilla/ShellWindow.py" line="536" />
       <source>Delete line to left</source>
       <translation>Cancella riga a sinistra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1639" />
-      <location filename="../QScintilla/ShellWindow.py" line="535" />
+      <location filename="../QScintilla/MiniEditor.py" line="1635" />
+      <location filename="../QScintilla/ShellWindow.py" line="539" />
       <source>Ctrl+Shift+Backspace</source>
       <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
-      <location filename="../QScintilla/MiniEditor.py" line="1651" />
-      <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/ShellWindow.py" line="547" />
-      <location filename="../QScintilla/ShellWindow.py" line="546" />
+      <location filename="../QScintilla/MiniEditor.py" line="1647" />
+      <location filename="../QScintilla/MiniEditor.py" line="1646" />
+      <location filename="../QScintilla/ShellWindow.py" line="551" />
+      <location filename="../QScintilla/ShellWindow.py" line="550" />
       <source>Delete line to right</source>
       <translation>Cancella riga a destra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1659" />
-      <location filename="../QScintilla/ShellWindow.py" line="555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1655" />
+      <location filename="../QScintilla/ShellWindow.py" line="559" />
       <source>Meta+K</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1664" />
-      <location filename="../QScintilla/ShellWindow.py" line="560" />
+      <location filename="../QScintilla/MiniEditor.py" line="1660" />
+      <location filename="../QScintilla/ShellWindow.py" line="564" />
       <source>Ctrl+Shift+Del</source>
       <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
-      <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/ShellWindow.py" line="569" />
-      <location filename="../QScintilla/ShellWindow.py" line="568" />
+      <location filename="../QScintilla/MiniEditor.py" line="891" />
+      <location filename="../QScintilla/MiniEditor.py" line="890" />
+      <location filename="../QScintilla/ShellWindow.py" line="573" />
+      <location filename="../QScintilla/ShellWindow.py" line="572" />
       <source>Move left one character</source>
       <translation>Muovi a sinistra di 1 carattere</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="896" />
-      <location filename="../QScintilla/ShellWindow.py" line="570" />
+      <location filename="../QScintilla/MiniEditor.py" line="892" />
+      <location filename="../QScintilla/ShellWindow.py" line="574" />
       <source>Left</source>
       <translation>Sinistra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="904" />
-      <location filename="../QScintilla/ShellWindow.py" line="578" />
+      <location filename="../QScintilla/MiniEditor.py" line="900" />
+      <location filename="../QScintilla/ShellWindow.py" line="582" />
       <source>Meta+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
-      <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/ShellWindow.py" line="585" />
-      <location filename="../QScintilla/ShellWindow.py" line="584" />
+      <location filename="../QScintilla/MiniEditor.py" line="907" />
+      <location filename="../QScintilla/MiniEditor.py" line="906" />
+      <location filename="../QScintilla/ShellWindow.py" line="589" />
+      <location filename="../QScintilla/ShellWindow.py" line="588" />
       <source>Move right one character</source>
       <translation>Muovi a destra di 1 carattere</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="912" />
-      <location filename="../QScintilla/ShellWindow.py" line="586" />
+      <location filename="../QScintilla/MiniEditor.py" line="908" />
+      <location filename="../QScintilla/ShellWindow.py" line="590" />
       <source>Right</source>
       <translation>Destra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="919" />
-      <location filename="../QScintilla/ShellWindow.py" line="593" />
+      <location filename="../QScintilla/MiniEditor.py" line="915" />
+      <location filename="../QScintilla/ShellWindow.py" line="597" />
       <source>Meta+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="991" />
-      <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/ShellWindow.py" line="601" />
-      <location filename="../QScintilla/ShellWindow.py" line="600" />
+      <location filename="../QScintilla/MiniEditor.py" line="987" />
+      <location filename="../QScintilla/MiniEditor.py" line="986" />
+      <location filename="../QScintilla/ShellWindow.py" line="605" />
+      <location filename="../QScintilla/ShellWindow.py" line="604" />
       <source>Move left one word</source>
       <translation>Muovi a sinistra una parola</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="999" />
-      <location filename="../QScintilla/MiniEditor.py" line="967" />
-      <location filename="../QScintilla/ShellWindow.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="995" />
+      <location filename="../QScintilla/MiniEditor.py" line="963" />
+      <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Alt+Left</source>
       <translation>Alt+Sinistra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1059" />
-      <location filename="../QScintilla/MiniEditor.py" line="1003" />
-      <location filename="../QScintilla/ShellWindow.py" line="613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1055" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/ShellWindow.py" line="617" />
       <source>Ctrl+Left</source>
       <translation>Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
-      <location filename="../QScintilla/MiniEditor.py" line="1011" />
-      <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/ShellWindow.py" line="621" />
-      <location filename="../QScintilla/ShellWindow.py" line="620" />
+      <location filename="../QScintilla/MiniEditor.py" line="1007" />
+      <location filename="../QScintilla/MiniEditor.py" line="1006" />
+      <location filename="../QScintilla/ShellWindow.py" line="625" />
+      <location filename="../QScintilla/ShellWindow.py" line="624" />
       <source>Move right one word</source>
       <translation>Muovi a destra una parola</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="1023" />
-      <location filename="../QScintilla/ShellWindow.py" line="629" />
+      <location filename="../QScintilla/MiniEditor.py" line="1809" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/ShellWindow.py" line="633" />
       <source>Ctrl+Right</source>
       <translation>Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1033" />
-      <location filename="../QScintilla/MiniEditor.py" line="1030" />
-      <location filename="../QScintilla/ShellWindow.py" line="639" />
-      <location filename="../QScintilla/ShellWindow.py" line="636" />
+      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1026" />
+      <location filename="../QScintilla/ShellWindow.py" line="643" />
+      <location filename="../QScintilla/ShellWindow.py" line="640" />
       <source>Move to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2074" />
-      <location filename="../QScintilla/MiniEditor.py" line="1043" />
-      <location filename="../QScintilla/ShellWindow.py" line="649" />
+      <location filename="../QScintilla/MiniEditor.py" line="2070" />
+      <location filename="../QScintilla/MiniEditor.py" line="1039" />
+      <location filename="../QScintilla/ShellWindow.py" line="653" />
       <source>Home</source>
       <translation>Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
-      <location filename="../QScintilla/MiniEditor.py" line="1071" />
-      <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/ShellWindow.py" line="657" />
-      <location filename="../QScintilla/ShellWindow.py" line="656" />
+      <location filename="../QScintilla/MiniEditor.py" line="1067" />
+      <location filename="../QScintilla/MiniEditor.py" line="1066" />
+      <location filename="../QScintilla/ShellWindow.py" line="661" />
+      <location filename="../QScintilla/ShellWindow.py" line="660" />
       <source>Move to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1079" />
-      <location filename="../QScintilla/ShellWindow.py" line="665" />
+      <location filename="../QScintilla/MiniEditor.py" line="1075" />
+      <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>Meta+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1083" />
-      <location filename="../QScintilla/ShellWindow.py" line="669" />
+      <location filename="../QScintilla/MiniEditor.py" line="2087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
+      <location filename="../QScintilla/ShellWindow.py" line="673" />
       <source>End</source>
       <translation>Fine</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
-      <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/ShellWindow.py" line="677" />
-      <location filename="../QScintilla/ShellWindow.py" line="676" />
+      <location filename="../QScintilla/MiniEditor.py" line="923" />
+      <location filename="../QScintilla/MiniEditor.py" line="922" />
+      <location filename="../QScintilla/ShellWindow.py" line="681" />
+      <location filename="../QScintilla/ShellWindow.py" line="680" />
       <source>Move up one line</source>
       <translation>Muovi in alto di una riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="928" />
-      <location filename="../QScintilla/ShellWindow.py" line="678" />
+      <location filename="../QScintilla/MiniEditor.py" line="924" />
+      <location filename="../QScintilla/ShellWindow.py" line="682" />
       <source>Up</source>
       <translation>Su</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="935" />
-      <location filename="../QScintilla/ShellWindow.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="689" />
       <source>Meta+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
-      <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/ShellWindow.py" line="693" />
-      <location filename="../QScintilla/ShellWindow.py" line="692" />
+      <location filename="../QScintilla/MiniEditor.py" line="939" />
+      <location filename="../QScintilla/MiniEditor.py" line="938" />
+      <location filename="../QScintilla/ShellWindow.py" line="697" />
+      <location filename="../QScintilla/ShellWindow.py" line="696" />
       <source>Move down one line</source>
       <translation>Muovi in basso di una riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="944" />
-      <location filename="../QScintilla/ShellWindow.py" line="694" />
+      <location filename="../QScintilla/MiniEditor.py" line="940" />
+      <location filename="../QScintilla/ShellWindow.py" line="698" />
       <source>Down</source>
       <translation>Giù</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="951" />
-      <location filename="../QScintilla/ShellWindow.py" line="701" />
+      <location filename="../QScintilla/MiniEditor.py" line="947" />
+      <location filename="../QScintilla/ShellWindow.py" line="705" />
       <source>Meta+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1195" />
-      <location filename="../QScintilla/MiniEditor.py" line="1092" />
-      <location filename="../QScintilla/ShellWindow.py" line="710" />
+      <location filename="../QScintilla/MiniEditor.py" line="1191" />
+      <location filename="../QScintilla/MiniEditor.py" line="1088" />
+      <location filename="../QScintilla/ShellWindow.py" line="714" />
       <source>Ctrl+Down</source>
       <translation>Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1175" />
-      <location filename="../QScintilla/MiniEditor.py" line="1104" />
-      <location filename="../QScintilla/ShellWindow.py" line="722" />
+      <location filename="../QScintilla/MiniEditor.py" line="1171" />
+      <location filename="../QScintilla/MiniEditor.py" line="1100" />
+      <location filename="../QScintilla/ShellWindow.py" line="726" />
       <source>Ctrl+Up</source>
       <translation>Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
-      <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/ShellWindow.py" line="733" />
-      <location filename="../QScintilla/ShellWindow.py" line="732" />
+      <location filename="../QScintilla/MiniEditor.py" line="1135" />
+      <location filename="../QScintilla/MiniEditor.py" line="1134" />
+      <location filename="../QScintilla/ShellWindow.py" line="737" />
+      <location filename="../QScintilla/ShellWindow.py" line="736" />
       <source>Move up one page</source>
       <translation>Muovi in alto di una pagina</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1140" />
-      <location filename="../QScintilla/ShellWindow.py" line="734" />
+      <location filename="../QScintilla/MiniEditor.py" line="1136" />
+      <location filename="../QScintilla/ShellWindow.py" line="738" />
       <source>PgUp</source>
       <translation>PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/ShellWindow.py" line="745" />
-      <location filename="../QScintilla/ShellWindow.py" line="744" />
+      <location filename="../QScintilla/MiniEditor.py" line="1147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1146" />
+      <location filename="../QScintilla/ShellWindow.py" line="749" />
+      <location filename="../QScintilla/ShellWindow.py" line="748" />
       <source>Move down one page</source>
       <translation>Muovi in basso di una pagina</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1152" />
-      <location filename="../QScintilla/ShellWindow.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="1148" />
+      <location filename="../QScintilla/ShellWindow.py" line="750" />
       <source>PgDown</source>
       <translation>PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1159" />
-      <location filename="../QScintilla/ShellWindow.py" line="753" />
+      <location filename="../QScintilla/MiniEditor.py" line="1155" />
+      <location filename="../QScintilla/ShellWindow.py" line="757" />
       <source>Meta+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
-      <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/ShellWindow.py" line="761" />
-      <location filename="../QScintilla/ShellWindow.py" line="760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1855" />
+      <location filename="../QScintilla/MiniEditor.py" line="1854" />
+      <location filename="../QScintilla/ShellWindow.py" line="765" />
+      <location filename="../QScintilla/ShellWindow.py" line="764" />
       <source>Escape</source>
       <translation>Escape</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1860" />
-      <location filename="../QScintilla/ShellWindow.py" line="762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1856" />
+      <location filename="../QScintilla/ShellWindow.py" line="766" />
       <source>Esc</source>
       <translation>Esc</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1233" />
-      <location filename="../QScintilla/MiniEditor.py" line="1230" />
-      <location filename="../QScintilla/ShellWindow.py" line="775" />
-      <location filename="../QScintilla/ShellWindow.py" line="772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1226" />
+      <location filename="../QScintilla/ShellWindow.py" line="779" />
+      <location filename="../QScintilla/ShellWindow.py" line="776" />
       <source>Extend selection left one character</source>
       <translation>Estendi la selezione a sinistra di un carattere</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1236" />
-      <location filename="../QScintilla/ShellWindow.py" line="778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1232" />
+      <location filename="../QScintilla/ShellWindow.py" line="782" />
       <source>Shift+Left</source>
       <translation>Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1243" />
-      <location filename="../QScintilla/ShellWindow.py" line="785" />
+      <location filename="../QScintilla/MiniEditor.py" line="1239" />
+      <location filename="../QScintilla/ShellWindow.py" line="789" />
       <source>Meta+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1253" />
-      <location filename="../QScintilla/MiniEditor.py" line="1250" />
-      <location filename="../QScintilla/ShellWindow.py" line="795" />
-      <location filename="../QScintilla/ShellWindow.py" line="792" />
+      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1246" />
+      <location filename="../QScintilla/ShellWindow.py" line="799" />
+      <location filename="../QScintilla/ShellWindow.py" line="796" />
       <source>Extend selection right one character</source>
       <translation>Estendi la selezione a destra di un carattere</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1256" />
-      <location filename="../QScintilla/ShellWindow.py" line="798" />
+      <location filename="../QScintilla/MiniEditor.py" line="1252" />
+      <location filename="../QScintilla/ShellWindow.py" line="802" />
       <source>Shift+Right</source>
       <translation>Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1263" />
-      <location filename="../QScintilla/ShellWindow.py" line="805" />
+      <location filename="../QScintilla/MiniEditor.py" line="1259" />
+      <location filename="../QScintilla/ShellWindow.py" line="809" />
       <source>Meta+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
-      <location filename="../QScintilla/MiniEditor.py" line="1347" />
-      <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/ShellWindow.py" line="813" />
-      <location filename="../QScintilla/ShellWindow.py" line="812" />
+      <location filename="../QScintilla/MiniEditor.py" line="1343" />
+      <location filename="../QScintilla/MiniEditor.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="817" />
+      <location filename="../QScintilla/ShellWindow.py" line="816" />
       <source>Extend selection left one word</source>
       <translation>Estendi la selezione a sinistra di una parola</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1356" />
-      <location filename="../QScintilla/MiniEditor.py" line="1316" />
-      <location filename="../QScintilla/ShellWindow.py" line="822" />
+      <location filename="../QScintilla/MiniEditor.py" line="1352" />
+      <location filename="../QScintilla/MiniEditor.py" line="1312" />
+      <location filename="../QScintilla/ShellWindow.py" line="826" />
       <source>Alt+Shift+Left</source>
       <translation>Alt+Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2277" />
-      <location filename="../QScintilla/MiniEditor.py" line="1362" />
-      <location filename="../QScintilla/ShellWindow.py" line="828" />
+      <location filename="../QScintilla/MiniEditor.py" line="2273" />
+      <location filename="../QScintilla/MiniEditor.py" line="1358" />
+      <location filename="../QScintilla/ShellWindow.py" line="832" />
       <source>Ctrl+Shift+Left</source>
       <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1373" />
-      <location filename="../QScintilla/MiniEditor.py" line="1370" />
-      <location filename="../QScintilla/ShellWindow.py" line="839" />
-      <location filename="../QScintilla/ShellWindow.py" line="836" />
+      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1366" />
+      <location filename="../QScintilla/ShellWindow.py" line="843" />
+      <location filename="../QScintilla/ShellWindow.py" line="840" />
       <source>Extend selection right one word</source>
       <translation>Estendi la selezione a destra di una parola</translation>
     </message>
@@ -92139,60 +92247,60 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1384" />
-      <location filename="../QScintilla/MiniEditor.py" line="1338" />
-      <location filename="../QScintilla/ShellWindow.py" line="850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1380" />
+      <location filename="../QScintilla/MiniEditor.py" line="1334" />
+      <location filename="../QScintilla/ShellWindow.py" line="854" />
       <source>Alt+Shift+Right</source>
       <translation>Alt+Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1838" />
-      <location filename="../QScintilla/MiniEditor.py" line="1390" />
-      <location filename="../QScintilla/ShellWindow.py" line="856" />
+      <location filename="../QScintilla/MiniEditor.py" line="1834" />
+      <location filename="../QScintilla/MiniEditor.py" line="1386" />
+      <location filename="../QScintilla/ShellWindow.py" line="860" />
       <source>Ctrl+Shift+Right</source>
       <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1402" />
       <location filename="../QScintilla/MiniEditor.py" line="1398" />
+      <location filename="../QScintilla/MiniEditor.py" line="1394" />
+      <location filename="../QScintilla/ShellWindow.py" line="872" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
-      <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1413" />
-      <location filename="../QScintilla/ShellWindow.py" line="879" />
+      <location filename="../QScintilla/MiniEditor.py" line="1409" />
+      <location filename="../QScintilla/ShellWindow.py" line="883" />
       <source>Shift+Home</source>
       <translation>Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1423" />
-      <location filename="../QScintilla/MiniEditor.py" line="1420" />
-      <location filename="../QScintilla/ShellWindow.py" line="889" />
-      <location filename="../QScintilla/ShellWindow.py" line="886" />
+      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1416" />
+      <location filename="../QScintilla/ShellWindow.py" line="893" />
+      <location filename="../QScintilla/ShellWindow.py" line="890" />
       <source>Extend selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1433" />
-      <location filename="../QScintilla/ShellWindow.py" line="899" />
+      <location filename="../QScintilla/MiniEditor.py" line="1429" />
+      <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Meta+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1437" />
-      <location filename="../QScintilla/ShellWindow.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
+      <location filename="../QScintilla/ShellWindow.py" line="907" />
       <source>Shift+End</source>
       <translation>Shift+End</translation>
     </message>
@@ -92200,255 +92308,255 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2533" />
-      <location filename="../QScintilla/ShellWindow.py" line="917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2529" />
+      <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Search</source>
       <translation>Ricerca</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2535" />
-      <location filename="../QScintilla/ShellWindow.py" line="919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2531" />
+      <location filename="../QScintilla/ShellWindow.py" line="923" />
       <source>&amp;Search...</source>
       <translation>&amp;Ricerca...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2537" />
-      <location filename="../QScintilla/ShellWindow.py" line="921" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
+      <location filename="../QScintilla/ShellWindow.py" line="925" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
       <translation>Ctrl+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2544" />
-      <location filename="../QScintilla/ShellWindow.py" line="928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2540" />
+      <location filename="../QScintilla/ShellWindow.py" line="932" />
       <source>Search for a text</source>
       <translation>Cerca per un testo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="935" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2559" />
-      <location filename="../QScintilla/ShellWindow.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="2555" />
+      <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>Search next</source>
       <translation>Cerca seguente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2561" />
-      <location filename="../QScintilla/ShellWindow.py" line="945" />
+      <location filename="../QScintilla/MiniEditor.py" line="2557" />
+      <location filename="../QScintilla/ShellWindow.py" line="949" />
       <source>Search &amp;next</source>
       <translation>Cerca segue&amp;nte</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2563" />
-      <location filename="../QScintilla/ShellWindow.py" line="947" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
+      <location filename="../QScintilla/ShellWindow.py" line="951" />
       <source>F3</source>
       <comment>Search|Search next</comment>
       <translation>F3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2570" />
-      <location filename="../QScintilla/ShellWindow.py" line="954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2566" />
+      <location filename="../QScintilla/ShellWindow.py" line="958" />
       <source>Search next occurrence of text</source>
       <translation>Cerca prossima ricorrenza del testo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="957" />
+      <location filename="../QScintilla/ShellWindow.py" line="961" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2585" />
-      <location filename="../QScintilla/ShellWindow.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="2581" />
+      <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Search previous</source>
       <translation>Cerca precedente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2587" />
-      <location filename="../QScintilla/ShellWindow.py" line="973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2583" />
+      <location filename="../QScintilla/ShellWindow.py" line="977" />
       <source>Search &amp;previous</source>
       <translation>Cerca &amp;precedente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2589" />
-      <location filename="../QScintilla/ShellWindow.py" line="975" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
+      <location filename="../QScintilla/ShellWindow.py" line="979" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
       <translation>Shift+F3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2598" />
-      <location filename="../QScintilla/ShellWindow.py" line="984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2594" />
+      <location filename="../QScintilla/ShellWindow.py" line="988" />
       <source>Search previous occurrence of text</source>
       <translation>Cerca la precedente  ricorrenza del testo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="989" />
+      <location filename="../QScintilla/ShellWindow.py" line="993" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2758" />
-      <location filename="../QScintilla/ShellWindow.py" line="1010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2754" />
+      <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Zoom in</source>
       <translation>Ingrandisci</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2760" />
-      <location filename="../QScintilla/ShellWindow.py" line="1012" />
+      <location filename="../QScintilla/MiniEditor.py" line="2756" />
+      <location filename="../QScintilla/ShellWindow.py" line="1016" />
       <source>Zoom &amp;in</source>
       <translation>Ingrand&amp;isci</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2762" />
-      <location filename="../QScintilla/ShellWindow.py" line="1014" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
+      <location filename="../QScintilla/ShellWindow.py" line="1018" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
       <translation>Ctrl++</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2765" />
-      <location filename="../QScintilla/ShellWindow.py" line="1017" />
+      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/ShellWindow.py" line="1021" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2771" />
-      <location filename="../QScintilla/ShellWindow.py" line="1023" />
+      <location filename="../QScintilla/MiniEditor.py" line="2767" />
+      <location filename="../QScintilla/ShellWindow.py" line="1027" />
       <source>Zoom in on the text</source>
       <translation>Ingrandisci nel testo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2774" />
-      <location filename="../QScintilla/ShellWindow.py" line="1026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/ShellWindow.py" line="1030" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ingrandisci&lt;/b&gt;&lt;p&gt;Ingrandisci nel testo. Questo aumenta le dimensioni del testo.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2784" />
-      <location filename="../QScintilla/ShellWindow.py" line="1036" />
+      <location filename="../QScintilla/MiniEditor.py" line="2780" />
+      <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Zoom out</source>
       <translation>Riduci</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2786" />
-      <location filename="../QScintilla/ShellWindow.py" line="1038" />
+      <location filename="../QScintilla/MiniEditor.py" line="2782" />
+      <location filename="../QScintilla/ShellWindow.py" line="1042" />
       <source>Zoom &amp;out</source>
       <translation>Rid&amp;uci</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2788" />
-      <location filename="../QScintilla/ShellWindow.py" line="1040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
+      <location filename="../QScintilla/ShellWindow.py" line="1044" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
       <translation>Ctrl+-</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2791" />
-      <location filename="../QScintilla/ShellWindow.py" line="1043" />
+      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/ShellWindow.py" line="1047" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2797" />
-      <location filename="../QScintilla/ShellWindow.py" line="1049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2793" />
+      <location filename="../QScintilla/ShellWindow.py" line="1053" />
       <source>Zoom out on the text</source>
       <translation>Riduci il testo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2800" />
-      <location filename="../QScintilla/ShellWindow.py" line="1052" />
+      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/ShellWindow.py" line="1056" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Riduci&lt;/b&gt;&lt;p&gt;Riduci nel testo. Questo diminuisce le dimensioni del testo.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2810" />
-      <location filename="../QScintilla/ShellWindow.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="2806" />
+      <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Zoom reset</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2812" />
-      <location filename="../QScintilla/ShellWindow.py" line="1064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2808" />
+      <location filename="../QScintilla/ShellWindow.py" line="1068" />
       <source>Zoom &amp;reset</source>
       <translation type="unfinished">&amp;Reset zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2814" />
-      <location filename="../QScintilla/ShellWindow.py" line="1066" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
+      <location filename="../QScintilla/ShellWindow.py" line="1070" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
       <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2821" />
-      <location filename="../QScintilla/ShellWindow.py" line="1073" />
+      <location filename="../QScintilla/MiniEditor.py" line="2817" />
+      <location filename="../QScintilla/ShellWindow.py" line="1077" />
       <source>Reset the zoom of the text</source>
       <translation type="unfinished">Resetta lo zoom del testo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2824" />
-      <location filename="../QScintilla/ShellWindow.py" line="1076" />
+      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/ShellWindow.py" line="1080" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Reset zoom&lt;/b&gt;&lt;p&gt;Reset dello zoom del testo. Imposta il fattore di zoom al 100%.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2835" />
-      <location filename="../QScintilla/ShellWindow.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="2831" />
+      <location filename="../QScintilla/ShellWindow.py" line="1091" />
       <source>Zoom</source>
       <translation>Zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2837" />
-      <location filename="../QScintilla/ShellWindow.py" line="1089" />
+      <location filename="../QScintilla/MiniEditor.py" line="2833" />
+      <location filename="../QScintilla/ShellWindow.py" line="1093" />
       <source>&amp;Zoom</source>
       <translation>&amp;Zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2844" />
-      <location filename="../QScintilla/ShellWindow.py" line="1096" />
+      <location filename="../QScintilla/MiniEditor.py" line="2840" />
+      <location filename="../QScintilla/ShellWindow.py" line="1100" />
       <source>Zoom the text</source>
       <translation>Ingrandisci il testo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2847" />
-      <location filename="../QScintilla/ShellWindow.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/ShellWindow.py" line="1103" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zoom&lt;/b&gt;&lt;o&gt;Zoom del testo. Apre un dialogo dove inserire la dimensione voluta.&lt;/p&gt;</translation>
     </message>
@@ -92462,977 +92570,977 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
-      <location filename="../QScintilla/MiniEditor.py" line="959" />
-      <location filename="../QScintilla/MiniEditor.py" line="958" />
+      <location filename="../QScintilla/MiniEditor.py" line="955" />
+      <location filename="../QScintilla/MiniEditor.py" line="954" />
       <source>Move left one word part</source>
       <translation>Muovi a sinistra di una parte di parola</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
-      <location filename="../QScintilla/MiniEditor.py" line="975" />
-      <location filename="../QScintilla/MiniEditor.py" line="974" />
+      <location filename="../QScintilla/MiniEditor.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="970" />
       <source>Move right one word part</source>
       <translation>Muovi a destra di una parte di parola</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2129" />
-      <location filename="../QScintilla/MiniEditor.py" line="1019" />
-      <location filename="../QScintilla/MiniEditor.py" line="983" />
+      <location filename="../QScintilla/MiniEditor.py" line="2125" />
+      <location filename="../QScintilla/MiniEditor.py" line="1015" />
+      <location filename="../QScintilla/MiniEditor.py" line="979" />
       <source>Alt+Right</source>
       <translation>Alt+Destra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
-      <location filename="../QScintilla/MiniEditor.py" line="1051" />
-      <location filename="../QScintilla/MiniEditor.py" line="1050" />
+      <location filename="../QScintilla/MiniEditor.py" line="1047" />
+      <location filename="../QScintilla/MiniEditor.py" line="1046" />
       <source>Move to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1063" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
       <source>Alt+Home</source>
       <translation>Alt+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1090" />
+      <location filename="../QScintilla/MiniEditor.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1086" />
       <source>Scroll view down one line</source>
       <translation>Scrolla la vista in basso di una riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
-      <location filename="../QScintilla/MiniEditor.py" line="1102" />
+      <location filename="../QScintilla/MiniEditor.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="1098" />
       <source>Scroll view up one line</source>
       <translation>Scrolla la vista in alto di una riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
-      <location filename="../QScintilla/MiniEditor.py" line="1114" />
+      <location filename="../QScintilla/MiniEditor.py" line="1111" />
+      <location filename="../QScintilla/MiniEditor.py" line="1110" />
       <source>Move up one paragraph</source>
       <translation>Muovi in alto di un paragrafo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1116" />
+      <location filename="../QScintilla/MiniEditor.py" line="1112" />
       <source>Alt+Up</source>
       <translation>Alt+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
-      <location filename="../QScintilla/MiniEditor.py" line="1126" />
+      <location filename="../QScintilla/MiniEditor.py" line="1123" />
+      <location filename="../QScintilla/MiniEditor.py" line="1122" />
       <source>Move down one paragraph</source>
       <translation>Muovi in basso di un paragrafo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1128" />
+      <location filename="../QScintilla/MiniEditor.py" line="1124" />
       <source>Alt+Down</source>
       <translation>Alt+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
-      <location filename="../QScintilla/MiniEditor.py" line="1167" />
-      <location filename="../QScintilla/MiniEditor.py" line="1166" />
+      <location filename="../QScintilla/MiniEditor.py" line="1163" />
+      <location filename="../QScintilla/MiniEditor.py" line="1162" />
       <source>Move to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1179" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
       <source>Ctrl+Home</source>
       <translation>Ctrl+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
-      <location filename="../QScintilla/MiniEditor.py" line="1187" />
-      <location filename="../QScintilla/MiniEditor.py" line="1186" />
+      <location filename="../QScintilla/MiniEditor.py" line="1183" />
+      <location filename="../QScintilla/MiniEditor.py" line="1182" />
       <source>Move to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1199" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
       <source>Ctrl+End</source>
       <translation>Ctrl+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
-      <location filename="../QScintilla/MiniEditor.py" line="1218" />
+      <location filename="../QScintilla/MiniEditor.py" line="1215" />
+      <location filename="../QScintilla/MiniEditor.py" line="1214" />
       <source>Unindent one level</source>
       <translation>Deindenta di un livello</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1220" />
+      <location filename="../QScintilla/MiniEditor.py" line="1216" />
       <source>Shift+Tab</source>
       <translation>Shift+Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
-      <location filename="../QScintilla/MiniEditor.py" line="1270" />
+      <location filename="../QScintilla/MiniEditor.py" line="1267" />
+      <location filename="../QScintilla/MiniEditor.py" line="1266" />
       <source>Extend selection up one line</source>
       <translation>Estendi selezione in alto di una riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1272" />
+      <location filename="../QScintilla/MiniEditor.py" line="1268" />
       <source>Shift+Up</source>
       <translation>Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1279" />
+      <location filename="../QScintilla/MiniEditor.py" line="1275" />
       <source>Meta+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
-      <location filename="../QScintilla/MiniEditor.py" line="1286" />
+      <location filename="../QScintilla/MiniEditor.py" line="1283" />
+      <location filename="../QScintilla/MiniEditor.py" line="1282" />
       <source>Extend selection down one line</source>
       <translation>Estendi selezione in basso di una riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1288" />
+      <location filename="../QScintilla/MiniEditor.py" line="1284" />
       <source>Shift+Down</source>
       <translation>Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1291" />
       <source>Meta+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1305" />
-      <location filename="../QScintilla/MiniEditor.py" line="1302" />
+      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1298" />
       <source>Extend selection left one word part</source>
       <translation>Estendi la selezione a sinistra di una parte di parola</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1327" />
-      <location filename="../QScintilla/MiniEditor.py" line="1324" />
+      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1320" />
       <source>Extend selection right one word part</source>
       <translation>Estendi la selezione a destra di una parte di parola</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1447" />
-      <location filename="../QScintilla/MiniEditor.py" line="1444" />
+      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1440" />
       <source>Extend selection up one paragraph</source>
       <translation>Estendi selezione in alto di un paragrafo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1450" />
+      <location filename="../QScintilla/MiniEditor.py" line="1446" />
       <source>Alt+Shift+Up</source>
       <translation>Alt+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1463" />
-      <location filename="../QScintilla/MiniEditor.py" line="1460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1456" />
       <source>Extend selection down one paragraph</source>
       <translation>Estendi selezione in basso di un paragrafo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1466" />
+      <location filename="../QScintilla/MiniEditor.py" line="1462" />
       <source>Alt+Shift+Down</source>
       <translation>Alt+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
-      <location filename="../QScintilla/MiniEditor.py" line="1476" />
+      <location filename="../QScintilla/MiniEditor.py" line="1473" />
+      <location filename="../QScintilla/MiniEditor.py" line="1472" />
       <source>Extend selection up one page</source>
       <translation>Estendi selezione in alto di una pagina</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1478" />
+      <location filename="../QScintilla/MiniEditor.py" line="1474" />
       <source>Shift+PgUp</source>
       <translation>Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
-      <location filename="../QScintilla/MiniEditor.py" line="1488" />
+      <location filename="../QScintilla/MiniEditor.py" line="1485" />
+      <location filename="../QScintilla/MiniEditor.py" line="1484" />
       <source>Extend selection down one page</source>
       <translation>Estendi selezione in basso di una pagina</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1490" />
+      <location filename="../QScintilla/MiniEditor.py" line="1486" />
       <source>Shift+PgDown</source>
       <translation>Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1497" />
+      <location filename="../QScintilla/MiniEditor.py" line="1493" />
       <source>Meta+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1507" />
-      <location filename="../QScintilla/MiniEditor.py" line="1504" />
+      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1500" />
       <source>Extend selection to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1517" />
+      <location filename="../QScintilla/MiniEditor.py" line="1513" />
       <source>Ctrl+Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1518" />
       <source>Ctrl+Shift+Home</source>
       <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1533" />
-      <location filename="../QScintilla/MiniEditor.py" line="1530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1526" />
       <source>Extend selection to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1544" />
+      <location filename="../QScintilla/MiniEditor.py" line="1540" />
       <source>Ctrl+Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1550" />
+      <location filename="../QScintilla/MiniEditor.py" line="1546" />
       <source>Ctrl+Shift+End</source>
       <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1583" />
-      <location filename="../QScintilla/MiniEditor.py" line="1580" />
+      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1576" />
       <source>Delete previous character if not at start of line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
-      <location filename="../QScintilla/MiniEditor.py" line="1696" />
+      <location filename="../QScintilla/MiniEditor.py" line="1693" />
+      <location filename="../QScintilla/MiniEditor.py" line="1692" />
       <source>Duplicate current line</source>
       <translation>Duplica riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1698" />
+      <location filename="../QScintilla/MiniEditor.py" line="1694" />
       <source>Ctrl+D</source>
       <translation>Ctrl+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1711" />
-      <location filename="../QScintilla/MiniEditor.py" line="1708" />
+      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1704" />
       <source>Swap current and previous lines</source>
       <translation>Scambia la riga con quella precedente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1714" />
+      <location filename="../QScintilla/MiniEditor.py" line="1710" />
       <source>Ctrl+T</source>
       <translation>Ctrl+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
-      <location filename="../QScintilla/MiniEditor.py" line="1724" />
+      <location filename="../QScintilla/MiniEditor.py" line="1721" />
+      <location filename="../QScintilla/MiniEditor.py" line="1720" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1726" />
+      <location filename="../QScintilla/MiniEditor.py" line="1722" />
       <source>Meta+Alt+R</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
-      <location filename="../QScintilla/MiniEditor.py" line="1736" />
+      <location filename="../QScintilla/MiniEditor.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="1732" />
       <source>Cut current line</source>
       <translation>Taglia riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1738" />
+      <location filename="../QScintilla/MiniEditor.py" line="1734" />
       <source>Alt+Shift+L</source>
       <translation>Alt+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="1748" />
+      <location filename="../QScintilla/MiniEditor.py" line="1745" />
+      <location filename="../QScintilla/MiniEditor.py" line="1744" />
       <source>Copy current line</source>
       <translation>Copia riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1750" />
+      <location filename="../QScintilla/MiniEditor.py" line="1746" />
       <source>Ctrl+Shift+T</source>
       <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
-      <location filename="../QScintilla/MiniEditor.py" line="1760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1757" />
+      <location filename="../QScintilla/MiniEditor.py" line="1756" />
       <source>Toggle insert/overtype</source>
       <translation>Scambia inserisci/sovrascrivi</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1758" />
       <source>Ins</source>
       <translation>Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1775" />
-      <location filename="../QScintilla/MiniEditor.py" line="1772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1768" />
       <source>Convert selection to lower case</source>
       <translation>Converti selezione in minuscolo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1774" />
       <source>Alt+Shift+U</source>
       <translation>Alt+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1791" />
-      <location filename="../QScintilla/MiniEditor.py" line="1788" />
+      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1784" />
       <source>Convert selection to upper case</source>
       <translation>Converti selezione in maiuscolo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1794" />
+      <location filename="../QScintilla/MiniEditor.py" line="1790" />
       <source>Ctrl+Shift+U</source>
       <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
-      <location filename="../QScintilla/MiniEditor.py" line="1805" />
-      <location filename="../QScintilla/MiniEditor.py" line="1804" />
+      <location filename="../QScintilla/MiniEditor.py" line="1801" />
+      <location filename="../QScintilla/MiniEditor.py" line="1800" />
       <source>Move to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1817" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
       <source>Alt+End</source>
       <translation>Alt+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1827" />
-      <location filename="../QScintilla/MiniEditor.py" line="1824" />
+      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1820" />
       <source>Extend selection to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
-      <location filename="../QScintilla/MiniEditor.py" line="1847" />
-      <location filename="../QScintilla/MiniEditor.py" line="1846" />
+      <location filename="../QScintilla/MiniEditor.py" line="1843" />
+      <location filename="../QScintilla/MiniEditor.py" line="1842" />
       <source>Formfeed</source>
       <translation>Formfeed</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1873" />
-      <location filename="../QScintilla/MiniEditor.py" line="1870" />
+      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1866" />
       <source>Extend rectangular selection down one line</source>
       <translation>Estendi selezione rettagolare in basso di una riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1876" />
+      <location filename="../QScintilla/MiniEditor.py" line="1872" />
       <source>Alt+Ctrl+Down</source>
       <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1884" />
+      <location filename="../QScintilla/MiniEditor.py" line="1880" />
       <source>Meta+Alt+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1895" />
-      <location filename="../QScintilla/MiniEditor.py" line="1892" />
+      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1888" />
       <source>Extend rectangular selection up one line</source>
       <translation>Estendi selezione rettagolare in alto di una riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1898" />
+      <location filename="../QScintilla/MiniEditor.py" line="1894" />
       <source>Alt+Ctrl+Up</source>
       <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1906" />
+      <location filename="../QScintilla/MiniEditor.py" line="1902" />
       <source>Meta+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1917" />
-      <location filename="../QScintilla/MiniEditor.py" line="1914" />
+      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1910" />
       <source>Extend rectangular selection left one character</source>
       <translation>Estendi selezione rettagolare a sinistra di un carattere</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1920" />
+      <location filename="../QScintilla/MiniEditor.py" line="1916" />
       <source>Alt+Ctrl+Left</source>
       <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1928" />
+      <location filename="../QScintilla/MiniEditor.py" line="1924" />
       <source>Meta+Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1939" />
-      <location filename="../QScintilla/MiniEditor.py" line="1936" />
+      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1932" />
       <source>Extend rectangular selection right one character</source>
       <translation>Estendi selezione rettagolare a destra di un carattere</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1942" />
+      <location filename="../QScintilla/MiniEditor.py" line="1938" />
       <source>Alt+Ctrl+Right</source>
       <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1950" />
+      <location filename="../QScintilla/MiniEditor.py" line="1946" />
       <source>Meta+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1963" />
-      <location filename="../QScintilla/MiniEditor.py" line="1958" />
+      <location filename="../QScintilla/MiniEditor.py" line="1959" />
+      <location filename="../QScintilla/MiniEditor.py" line="1954" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1976" />
+      <location filename="../QScintilla/MiniEditor.py" line="1972" />
       <source>Alt+Shift+Home</source>
       <translation>Alt+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1987" />
-      <location filename="../QScintilla/MiniEditor.py" line="1984" />
+      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1980" />
       <source>Extend rectangular selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1998" />
+      <location filename="../QScintilla/MiniEditor.py" line="1994" />
       <source>Meta+Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2003" />
+      <location filename="../QScintilla/MiniEditor.py" line="1999" />
       <source>Alt+Shift+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2013" />
-      <location filename="../QScintilla/MiniEditor.py" line="2010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2006" />
       <source>Extend rectangular selection up one page</source>
       <translation>Estendi selezione rettagolare in alto di una pagina</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2016" />
+      <location filename="../QScintilla/MiniEditor.py" line="2012" />
       <source>Alt+Shift+PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2029" />
-      <location filename="../QScintilla/MiniEditor.py" line="2026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2022" />
       <source>Extend rectangular selection down one page</source>
       <translation>Estendi selezione rettagolare in basso di una pagina</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2032" />
+      <location filename="../QScintilla/MiniEditor.py" line="2028" />
       <source>Alt+Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2036" />
       <source>Meta+Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="2048" />
+      <location filename="../QScintilla/MiniEditor.py" line="2511" />
+      <location filename="../QScintilla/MiniEditor.py" line="2510" />
+      <location filename="../QScintilla/MiniEditor.py" line="2045" />
+      <location filename="../QScintilla/MiniEditor.py" line="2044" />
       <source>Duplicate current selection</source>
       <translation>Duplica la selezione corrente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2516" />
-      <location filename="../QScintilla/MiniEditor.py" line="2050" />
+      <location filename="../QScintilla/MiniEditor.py" line="2512" />
+      <location filename="../QScintilla/MiniEditor.py" line="2046" />
       <source>Ctrl+Shift+D</source>
       <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2064" />
-      <location filename="../QScintilla/MiniEditor.py" line="2061" />
+      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2057" />
       <source>Scroll to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
-      <location filename="../QScintilla/MiniEditor.py" line="2083" />
-      <location filename="../QScintilla/MiniEditor.py" line="2082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2079" />
+      <location filename="../QScintilla/MiniEditor.py" line="2078" />
       <source>Scroll to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2102" />
-      <location filename="../QScintilla/MiniEditor.py" line="2099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2095" />
       <source>Scroll vertically to center current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2112" />
+      <location filename="../QScintilla/MiniEditor.py" line="2108" />
       <source>Meta+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
-      <location filename="../QScintilla/MiniEditor.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2120" />
+      <location filename="../QScintilla/MiniEditor.py" line="2117" />
+      <location filename="../QScintilla/MiniEditor.py" line="2116" />
       <source>Move to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2140" />
-      <location filename="../QScintilla/MiniEditor.py" line="2137" />
+      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2133" />
       <source>Extend selection to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2163" />
-      <location filename="../QScintilla/MiniEditor.py" line="2160" />
+      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2156" />
       <source>Move to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2180" />
-      <location filename="../QScintilla/MiniEditor.py" line="2177" />
+      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2173" />
       <source>Extend selection to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2197" />
-      <location filename="../QScintilla/MiniEditor.py" line="2194" />
+      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2190" />
       <source>Move to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2207" />
+      <location filename="../QScintilla/MiniEditor.py" line="2203" />
       <source>Meta+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2218" />
-      <location filename="../QScintilla/MiniEditor.py" line="2215" />
+      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2211" />
       <source>Extend selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2229" />
+      <location filename="../QScintilla/MiniEditor.py" line="2225" />
       <source>Meta+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2242" />
       <location filename="../QScintilla/MiniEditor.py" line="2238" />
+      <location filename="../QScintilla/MiniEditor.py" line="2234" />
       <source>Extend rectangular selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2254" />
+      <location filename="../QScintilla/MiniEditor.py" line="2250" />
       <source>Meta+Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2266" />
-      <location filename="../QScintilla/MiniEditor.py" line="2263" />
+      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2259" />
       <source>Extend selection to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2289" />
-      <location filename="../QScintilla/MiniEditor.py" line="2286" />
+      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2282" />
       <source>Move to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2307" />
       <location filename="../QScintilla/MiniEditor.py" line="2303" />
+      <location filename="../QScintilla/MiniEditor.py" line="2299" />
       <source>Extend selection to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2326" />
       <location filename="../QScintilla/MiniEditor.py" line="2322" />
+      <location filename="../QScintilla/MiniEditor.py" line="2318" />
       <source>Move to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2346" />
-      <location filename="../QScintilla/MiniEditor.py" line="2341" />
+      <location filename="../QScintilla/MiniEditor.py" line="2342" />
+      <location filename="../QScintilla/MiniEditor.py" line="2337" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2365" />
-      <location filename="../QScintilla/MiniEditor.py" line="2362" />
+      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2358" />
       <source>Move to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2382" />
-      <location filename="../QScintilla/MiniEditor.py" line="2379" />
+      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2375" />
       <source>Extend selection to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
-      <location filename="../QScintilla/MiniEditor.py" line="2397" />
-      <location filename="../QScintilla/MiniEditor.py" line="2396" />
+      <location filename="../QScintilla/MiniEditor.py" line="2393" />
+      <location filename="../QScintilla/MiniEditor.py" line="2392" />
       <source>Stuttered move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2412" />
-      <location filename="../QScintilla/MiniEditor.py" line="2409" />
+      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2405" />
       <source>Stuttered extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2429" />
-      <location filename="../QScintilla/MiniEditor.py" line="2426" />
+      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2422" />
       <source>Stuttered move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2446" />
-      <location filename="../QScintilla/MiniEditor.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2439" />
       <source>Stuttered extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2463" />
-      <location filename="../QScintilla/MiniEditor.py" line="2460" />
+      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2456" />
       <source>Delete right to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2473" />
+      <location filename="../QScintilla/MiniEditor.py" line="2469" />
       <source>Alt+Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2484" />
-      <location filename="../QScintilla/MiniEditor.py" line="2481" />
+      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2477" />
       <source>Move selected lines up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2501" />
-      <location filename="../QScintilla/MiniEditor.py" line="2498" />
+      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2494" />
       <source>Move selected lines down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2547" />
+      <location filename="../QScintilla/MiniEditor.py" line="2543" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cerca&lt;/b&gt;&lt;p&gt;Cerca per del testo nell'editor corrente. Viene mostrato in dialogo per inserire il testo cercato e le opzioni per la ricerca.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2573" />
+      <location filename="../QScintilla/MiniEditor.py" line="2569" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Trova successivo&lt;/b&gt;&lt;p&gt;Trova la prossima occorrenza di testo nell'editor corrente. Il testo inserito precedentemente e opzioni verranno riutilizzate.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2603" />
+      <location filename="../QScintilla/MiniEditor.py" line="2599" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Trova precedente&lt;/b&gt;&lt;p&gt;Trova la precedente occorrenza di testo nell'editor corrente. Il testo inserito precedentemente e opzioni verranno riutilizzate.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2617" />
-      <location filename="../QScintilla/MiniEditor.py" line="2615" />
+      <location filename="../QScintilla/MiniEditor.py" line="2613" />
+      <location filename="../QScintilla/MiniEditor.py" line="2611" />
       <source>Clear search markers</source>
       <translation>Pulisci marcatori di ricerca</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2619" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation>Ctrl+3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2628" />
+      <location filename="../QScintilla/MiniEditor.py" line="2624" />
       <source>Clear all displayed search markers</source>
       <translation>Pulisci tutti i marcatori di ricerca mostrati</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2633" />
+      <location filename="../QScintilla/MiniEditor.py" line="2629" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Pulisci marcatori di ricerca&lt;/b&gt;&lt;p&gt;Pulisci tutti i marcatori di ricerca mostrati.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2639" />
       <source>Replace</source>
       <translation>Rimpiazza</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2644" />
+      <location filename="../QScintilla/MiniEditor.py" line="2640" />
       <source>&amp;Replace...</source>
       <translation>&amp;Rimpiazza...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2646" />
+      <location filename="../QScintilla/MiniEditor.py" line="2642" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation>Ctrl+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2653" />
+      <location filename="../QScintilla/MiniEditor.py" line="2649" />
       <source>Replace some text</source>
       <translation>Sostituisci del testo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2656" />
+      <location filename="../QScintilla/MiniEditor.py" line="2652" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Sostituisci&lt;/b&gt;&lt;p&gt;Cerca per del testo nell'editor corrente e lo sostituisce. Viene mostrato in dialogo per inserire il testo cercato, il testo sostituto e le opzioni per la ricerca e la sostituzione.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2670" />
-      <location filename="../QScintilla/MiniEditor.py" line="2668" />
+      <location filename="../QScintilla/MiniEditor.py" line="2666" />
+      <location filename="../QScintilla/MiniEditor.py" line="2664" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2672" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2681" />
+      <location filename="../QScintilla/MiniEditor.py" line="2677" />
       <source>Replace the found text and search the next occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2686" />
+      <location filename="../QScintilla/MiniEditor.py" line="2682" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2702" />
-      <location filename="../QScintilla/MiniEditor.py" line="2700" />
+      <location filename="../QScintilla/MiniEditor.py" line="2698" />
+      <location filename="../QScintilla/MiniEditor.py" line="2696" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2704" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2713" />
+      <location filename="../QScintilla/MiniEditor.py" line="2709" />
       <source>Replace the found text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2716" />
+      <location filename="../QScintilla/MiniEditor.py" line="2712" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2729" />
-      <location filename="../QScintilla/MiniEditor.py" line="2727" />
+      <location filename="../QScintilla/MiniEditor.py" line="2725" />
+      <location filename="../QScintilla/MiniEditor.py" line="2723" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2731" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2740" />
+      <location filename="../QScintilla/MiniEditor.py" line="2736" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2743" />
+      <location filename="../QScintilla/MiniEditor.py" line="2739" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -95370,29 +95478,29 @@
       <translation>&amp;Modifica...</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7350" />
-      <location filename="../ViewManager/ViewManager.py" line="7336" />
-      <location filename="../ViewManager/ViewManager.py" line="7304" />
+      <location filename="../ViewManager/ViewManager.py" line="7349" />
+      <location filename="../ViewManager/ViewManager.py" line="7335" />
+      <location filename="../ViewManager/ViewManager.py" line="7303" />
       <source>Edit Spelling Dictionary</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7307" />
+      <location filename="../ViewManager/ViewManager.py" line="7306" />
       <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="7323" />
+      <location filename="../ViewManager/ViewManager.py" line="7322" />
       <source>Editing {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7339" />
+      <location filename="../ViewManager/ViewManager.py" line="7338" />
       <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="7353" />
+      <location filename="../ViewManager/ViewManager.py" line="7352" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation type="unfinished" />
     </message>
@@ -96453,7 +96561,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="135" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="136" />
       <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="96" />
       <source>Failed
 
@@ -96461,46 +96569,46 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="144" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="145" />
       <source>
 pyvenv finished.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="159" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="160" />
       <source>No suitable pyvenv program could be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="222" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="223" />
       <source>
 Writing log file '{0}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="226" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="227" />
       <source>Output:
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="231" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="232" />
       <source>Errors:
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="235" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="236" />
       <source>The logfile '{0}' could not be written.
 Reason: {1}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="239" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="240" />
       <source>Done.
 </source>
       <translation type="unfinished" />
@@ -98692,32 +98800,32 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2312" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2341" />
       <source>Quota Request</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2313" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2342" />
       <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="2389" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2385" />
       <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="2397" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2393" />
       <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="2402" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2398" />
       <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="2409" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2405" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -101707,28 +101815,28 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="143" />
       <source>No current editor</source>
       <translation type="unfinished">Nessun editor corrente</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="145" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
       <source>Please open or create a file first.</source>
       <translation type="unfinished">Per favore prima apri o crea un file.</translation>
     </message>
     <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="182" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="166" />
+      <source>Create Package</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
+      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;p&gt;La directory del package &lt;b&gt;{0}&lt;/b&gt; non può essere creata. Esco...&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Plugins/PluginWizardEricPlugin.py" line="183" />
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
-      <source>Create Package</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="168" />
-      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;p&gt;La directory del package &lt;b&gt;{0}&lt;/b&gt; non può essere creata. Esco...&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="184" />
       <source>&lt;p&gt;The package file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file del package &lt;b&gt;{0}&lt;/b&gt; non può essere creato. Esco...&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -102000,32 +102108,32 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1270" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1274" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Origine #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1801" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1282" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&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;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1807" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1284" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1811" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1288" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&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;Segnalibri&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1814" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1291" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1295" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&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;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1297" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1301" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
@@ -102034,7 +102142,7 @@
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1320" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -102051,36 +102159,36 @@
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1775" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1779" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1782" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1786" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1793" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1794" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1798" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&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;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1825" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&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;Origini&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1831" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -102763,17 +102871,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1814" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
       <source>unknown</source>
       <translation>sconosciuto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1822" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Informazioni Repository&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revisione corrente&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revisione Committata&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Data della commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Ora della commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Ultimo autore&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1667" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1670" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Informazioni Repository&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revisione corrente &lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revisione committata&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Data della commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Ora della commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Ultimo autore&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_pt.ts	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/i18n/eric7_pt.ts	Sun Jul 02 17:39:33 2023 +0200
@@ -1333,6 +1333,16 @@
       <source>type annotation is too long ({0} &gt; {1})</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="76" />
+      <source>'typing.Union' is deprecated, use '|' instead (see PEP 604)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="80" />
+      <source>'typing.{0}' is deprecated, use '{1}' instead (see PEP 585)</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>ApplicationDiagramBuilder</name>
@@ -1766,42 +1776,42 @@
       <translation>{0} sem configurar.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
+      <location filename="../Utilities/BackgroundService.py" line="217" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="219" />
+      <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>Restart background client?</source>
+      <translation>Reiniciar cliente de fundo?</translation>
+    </message>
+    <message>
       <location filename="../Utilities/BackgroundService.py" line="232" />
-      <source>Restart background client?</source>
-      <translation>Reiniciar cliente de fundo?</translation>
-    </message>
-    <message>
-      <location filename="../Utilities/BackgroundService.py" line="233" />
       <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="262" />
+      <location filename="../Utilities/BackgroundService.py" line="261" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="497" />
+      <location filename="../Utilities/BackgroundService.py" line="502" />
       <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="506" />
+      <location filename="../Utilities/BackgroundService.py" line="511" />
       <source>Background client disconnected.</source>
       <translation>Cliente de fundo desconectado.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="507" />
+      <location filename="../Utilities/BackgroundService.py" line="512" />
       <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>
@@ -1864,22 +1874,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>Yes</source>
       <translation type="unfinished">Sim</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>No</source>
       <translation type="unfinished">Não</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>yes</source>
       <translation type="unfinished">sim</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>no</source>
       <translation type="unfinished">não</translation>
     </message>
@@ -2301,26 +2311,31 @@
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="97" />
-      <source>Complete {0}-bit Service UUID: {1}</source>
+      <source>Complete {0}-bit Service UUID: {1}{2}</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="99" />
-      <source>Incomplete {0}-bit Service UUID: {1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="110" />
-      <source>Manufacturer ID: 0x{0:x} ({1})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="114" />
+      <source>Incomplete {0}-bit Service UUID: {1}{2}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="107" />
+      <source> - {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="121" />
+      <source>Manufacturer ID: 0x{0:x} - {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="125" />
       <source>Manufacturer ID: 0x{0:x}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="123" />
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="134" />
       <source>Tx Power Level [dBm]: {0}</source>
       <translation type="unfinished" />
     </message>
@@ -2822,17 +2837,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="335" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
       <source>New Bookmark Folder</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="337" />
       <source>Enter title for new bookmark folder:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="343" />
       <source>New Folder</source>
       <translation>Diretório Novo</translation>
     </message>
@@ -2936,22 +2951,22 @@
       <translation>Menú de Marcadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="543" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="541" />
       <source>Remove Bookmark</source>
       <translation>Retirar Marcador</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="585" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="583" />
       <source>Insert Bookmark</source>
       <translation>Inserir Marcador</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="626" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="624" />
       <source>Name Change</source>
       <translation>Alterar Nome</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="630" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="628" />
       <source>Address Change</source>
       <translation>Alterar Endereço</translation>
     </message>
@@ -2988,22 +3003,22 @@
       <translation>Erro ao gravar marcadores para &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="399" />
       <source>Export Bookmarks</source>
       <translation>Exportar Marcadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="403" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
       <source>XBEL bookmarks (*.xbel);;XBEL bookmarks (*.xml);;HTML Bookmarks (*.html)</source>
       <translation>Marcadores XBEL (*.xbel);;Marcadores XBEL (*.xml);;Marcadores HTML (*.html)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="429" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="427" />
       <source>Exporting Bookmarks</source>
       <translation>A exportar Marcadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="430" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="428" />
       <source>Error exporting bookmarks to &lt;b&gt;{0}&lt;/b&gt;.</source>
       <translation>Erro ao exportar marcadores para &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
@@ -3261,231 +3276,231 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="238" />
+      <location filename="../UI/Browser.py" line="239" />
       <source>Show Hidden Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="244" />
+      <location filename="../UI/Browser.py" line="245" />
       <source>New</source>
       <translation type="unfinished">Novo</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="246" />
+      <location filename="../UI/Browser.py" line="247" />
       <source>Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="249" />
+      <location filename="../UI/Browser.py" line="250" />
       <source>File</source>
       <translation type="unfinished">Ficheiro</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="323" />
-      <location filename="../UI/Browser.py" line="285" />
-      <location filename="../UI/Browser.py" line="255" />
+      <location filename="../UI/Browser.py" line="324" />
+      <location filename="../UI/Browser.py" line="286" />
+      <location filename="../UI/Browser.py" line="256" />
       <source>Open</source>
       <translation>Abrir</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="258" />
+      <location filename="../UI/Browser.py" line="259" />
       <source>Run Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="622" />
-      <location filename="../UI/Browser.py" line="614" />
-      <location filename="../UI/Browser.py" line="604" />
-      <location filename="../UI/Browser.py" line="595" />
-      <location filename="../UI/Browser.py" line="305" />
-      <location filename="../UI/Browser.py" line="262" />
-      <source>Show Mime-Type</source>
-      <translation>Mostrar Tipos MIME</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="266" />
-      <source>Refresh Source File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="361" />
-      <location filename="../UI/Browser.py" line="309" />
-      <location filename="../UI/Browser.py" line="271" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Copiar Rota à Área de Transferência</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="369" />
-      <location filename="../UI/Browser.py" line="329" />
-      <location filename="../UI/Browser.py" line="317" />
-      <location filename="../UI/Browser.py" line="279" />
-      <source>Delete</source>
-      <translation type="unfinished">Apagar</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="288" />
-      <source>Open in Hex Editor</source>
-      <translation>Abrir com Editor Hexadecimal</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="292" />
-      <source>Open in Icon Editor</source>
-      <translation>Abrir no Editor de Ícones</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="296" />
-      <source>Open in Editor</source>
-      <translation type="unfinished">Abrir no Editor</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="300" />
-      <source>Open in PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="388" />
-      <location filename="../UI/Browser.py" line="379" />
-      <location filename="../UI/Browser.py" line="335" />
-      <source>New toplevel directory...</source>
-      <translation>Diretório de nível superior novo...</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="339" />
-      <source>Add as toplevel directory</source>
-      <translation>Adicionar como diretório de nível superior</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="343" />
-      <source>Remove from toplevel</source>
-      <translation>Retirar do nível superior</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="348" />
-      <source>Refresh directory</source>
-      <translation>Atualizar diretório</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="353" />
-      <source>Find in this directory</source>
-      <translation>Encontrar neste diretório</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="357" />
-      <source>Find &amp;&amp; Replace in this directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="373" />
-      <source>Goto</source>
-      <translation>Ir a</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="491" />
-      <source>Line {0}</source>
-      <translation>Linha {0}</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="596" />
-      <source>The mime type of the file could not be determined.</source>
-      <translation>O tipo MIME do ficheiro não pôde ser identificado.</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="615" />
-      <location filename="../UI/Browser.py" line="605" />
-      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
-      <translation>O ficheiro tem o tipo MIME &lt;b&gt;{0}&lt;/b&gt;.</translation>
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="623" />
+      <location filename="../UI/Browser.py" line="615" />
+      <location filename="../UI/Browser.py" line="605" />
+      <location filename="../UI/Browser.py" line="596" />
+      <location filename="../UI/Browser.py" line="306" />
+      <location filename="../UI/Browser.py" line="263" />
+      <source>Show Mime-Type</source>
+      <translation>Mostrar Tipos MIME</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="267" />
+      <source>Refresh Source File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="362" />
+      <location filename="../UI/Browser.py" line="310" />
+      <location filename="../UI/Browser.py" line="272" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Copiar Rota à Área de Transferência</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="370" />
+      <location filename="../UI/Browser.py" line="330" />
+      <location filename="../UI/Browser.py" line="318" />
+      <location filename="../UI/Browser.py" line="280" />
+      <source>Delete</source>
+      <translation type="unfinished">Apagar</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="289" />
+      <source>Open in Hex Editor</source>
+      <translation>Abrir com Editor Hexadecimal</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="293" />
+      <source>Open in Icon Editor</source>
+      <translation>Abrir no Editor de Ícones</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="297" />
+      <source>Open in Editor</source>
+      <translation type="unfinished">Abrir no Editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="301" />
+      <source>Open in PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="389" />
+      <location filename="../UI/Browser.py" line="380" />
+      <location filename="../UI/Browser.py" line="336" />
+      <source>New toplevel directory...</source>
+      <translation>Diretório de nível superior novo...</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="340" />
+      <source>Add as toplevel directory</source>
+      <translation>Adicionar como diretório de nível superior</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="344" />
+      <source>Remove from toplevel</source>
+      <translation>Retirar do nível superior</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="349" />
+      <source>Refresh directory</source>
+      <translation>Atualizar diretório</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="354" />
+      <source>Find in this directory</source>
+      <translation>Encontrar neste diretório</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="358" />
+      <source>Find &amp;&amp; Replace in this directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="374" />
+      <source>Goto</source>
+      <translation>Ir a</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="492" />
+      <source>Line {0}</source>
+      <translation>Linha {0}</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="597" />
+      <source>The mime type of the file could not be determined.</source>
+      <translation>O tipo MIME do ficheiro não pôde ser identificado.</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="616" />
+      <location filename="../UI/Browser.py" line="606" />
+      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
+      <translation>O ficheiro tem o tipo MIME &lt;b&gt;{0}&lt;/b&gt;.</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="624" />
       <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
       <translation>O ficheiro tem o tipo MIME &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt;Deverá ser adicionado à lista de tipos MIME de texto?</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="731" />
+      <location filename="../UI/Browser.py" line="732" />
       <source>New toplevel directory</source>
       <translation>Diretório de nível superior novo</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="967" />
-      <location filename="../UI/Browser.py" line="955" />
-      <location filename="../UI/Browser.py" line="946" />
-      <source>New Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="947" />
-      <source>Name for new directory:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="994" />
-      <location filename="../UI/Browser.py" line="956" />
-      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="968" />
+      <location filename="../UI/Browser.py" line="956" />
+      <location filename="../UI/Browser.py" line="947" />
+      <source>New Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="948" />
+      <source>Name for new directory:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="995" />
+      <location filename="../UI/Browser.py" line="957" />
+      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="969" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1006" />
-      <location filename="../UI/Browser.py" line="993" />
-      <location filename="../UI/Browser.py" line="984" />
-      <source>New File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="985" />
-      <source>Name for new file:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1007" />
+      <location filename="../UI/Browser.py" line="994" />
+      <location filename="../UI/Browser.py" line="985" />
+      <source>New File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="986" />
+      <source>Name for new file:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1008" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1103" />
-      <location filename="../UI/Browser.py" line="1045" />
-      <location filename="../UI/Browser.py" line="1035" />
-      <source>Delete File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1036" />
-      <source>Do you really want to delete this file?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1104" />
       <location filename="../UI/Browser.py" line="1046" />
+      <location filename="../UI/Browser.py" line="1036" />
+      <source>Delete File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1037" />
+      <source>Do you really want to delete this file?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1105" />
+      <location filename="../UI/Browser.py" line="1047" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1071" />
-      <location filename="../UI/Browser.py" line="1061" />
-      <source>Delete Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1062" />
-      <source>Do you really want to delete this directory?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1072" />
+      <location filename="../UI/Browser.py" line="1062" />
+      <source>Delete Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1063" />
+      <source>Do you really want to delete this directory?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1073" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1092" />
-      <source>Delete Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1093" />
+      <source>Delete Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1094" />
       <source>Do you really want to delete these files?</source>
       <translation type="unfinished" />
     </message>
@@ -5134,27 +5149,27 @@
       <translation>Erro: {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1210" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1221" />
       <source>{0} (ignored)</source>
       <translation>{0} (ignorado)</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1285" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1296" />
       <source>No issues found.</source>
       <translation>Não se encontraram problemas.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1289" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1300" />
       <source>No files found (check your ignore list).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2891" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2935" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2892" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2936" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -5640,6 +5655,16 @@
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Exempted 'typing' symbols:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Enter deprecated symbols of the 'typing' module exempted from PEP-585 checking separated by space</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
       <source>Security</source>
       <translation type="unfinished">Segurança</translation>
     </message>
@@ -6544,7 +6569,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="174" />
+      <location filename="../Utilities/__init__.py" line="176" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>A codificação '{0}' é incorreta para o texto indicado.</translation>
     </message>
@@ -7666,375 +7691,378 @@
   <context>
     <name>ConfigurationWidget</name>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="174" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="175" />
       <source>Application</source>
       <translation>Aplicação</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="180" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="181" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="182" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="183" />
       <source>Cooperation</source>
       <translation>Colaboração</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="189" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="190" />
       <source>Diff</source>
       <translation type="unfinished">Diff</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="196" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="197" />
       <source>Email</source>
       <translation>Correio Eletrónico</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="203" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="204" />
       <source>Graphics</source>
       <translation>Gráficos</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="865" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="210" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="866" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="211" />
       <source>Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="946" />
       <location filename="../Preferences/ConfigurationDialog.py" line="914" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="882" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="851" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="754" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="639" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="217" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="883" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="852" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="755" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="640" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="218" />
       <source>Icons</source>
       <translation>Ícones</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="223" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="224" />
       <source>IRC</source>
       <translation />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="225" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="226" />
       <source>Log-Viewer</source>
       <translation>Visor de Registos</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="232" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="233" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="239" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="240" />
       <source>MIME-Types</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="768" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="246" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="769" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="247" />
       <source>Network</source>
       <translation>Rede</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="253" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="254" />
       <source>Notifications</source>
       <translation>Notificações</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="896" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="260" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="897" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="261" />
       <source>PDF Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="267" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="928" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="268" />
       <source>Python Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="274" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="275" />
       <source>Plugin Manager</source>
       <translation>Gestor de Plugins</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="775" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="653" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="281" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="776" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="654" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="282" />
       <source>Printer</source>
       <translation>Impressora</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="288" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="289" />
       <source>Python</source>
       <translation />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="294" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="295" />
       <source>Qt</source>
       <translation>Qt</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="782" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="296" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="783" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="297" />
       <source>Security</source>
       <translation>Segurança</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="303" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="304" />
       <source>Shell</source>
       <translation>Shell</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="309" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="310" />
       <source>Tasks</source>
       <translation>Tarefas</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="311" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="312" />
       <source>Templates</source>
       <translation>Modelos</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="834" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="318" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="835" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="319" />
       <source>Tray Starter</source>
       <translation>Iniciador de Bandeja de Sistema</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="325" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="326" />
       <source>Version Control Systems</source>
       <translation>Sistemas de Control de Versão</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="332" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="333" />
       <source>Debugger</source>
       <translation>Depurador</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="667" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="374" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="339" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="668" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="375" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="340" />
       <source>General</source>
       <translation>Geral</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="346" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="347" />
       <source>Python3</source>
       <translation />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="660" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="353" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="661" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="354" />
       <source>Editor</source>
       <translation />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="360" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="361" />
       <source>APIs</source>
       <translation />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="367" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="368" />
       <source>Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="674" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="381" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="675" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="382" />
       <source>Filehandling</source>
       <translation>Tratamento de Ficheiros</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="681" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="388" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="682" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="389" />
       <source>Searching</source>
       <translation>Pesquisa</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="817" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="688" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="617" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="395" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="818" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="689" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="618" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="396" />
       <source>Spell checking</source>
       <translation>Verificação ortográfica</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="695" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="402" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="696" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="403" />
       <source>Style</source>
       <translation>Estilo</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="409" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="410" />
       <source>Code Checkers</source>
       <translation>Verificadores de Código</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="702" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="416" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="703" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="417" />
       <source>Typing</source>
       <translation>Digitação</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="423" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="424" />
       <source>Exporters</source>
       <translation>Exportadores</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="430" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="431" />
       <source>Autocompletion</source>
       <translation>Autocompletar</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="458" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="437" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="459" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="438" />
       <source>QScintilla</source>
       <translation />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="514" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="465" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="444" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="515" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="466" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="445" />
       <source>Jedi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="451" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="452" />
       <source>Calltips</source>
       <translation>Dicas</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="709" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="472" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="710" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="473" />
       <source>Highlighters</source>
       <translation>Realçadores</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="716" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="479" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="717" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="480" />
       <source>Filetype Associations</source>
       <translation>Associações de Tipos de Ficheiros</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="723" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="486" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="724" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="487" />
       <source>Styles</source>
       <translation>Estilos</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="730" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="493" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="731" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="494" />
       <source>Keywords</source>
       <translation>Palavras Chave</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="737" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="500" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="738" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="501" />
       <source>Properties</source>
       <translation>Propriedades</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="507" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="508" />
       <source>Mouse Click Handlers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="520" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="521" />
       <source>Help</source>
       <translation>Ajuda</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="789" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="522" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="790" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="523" />
       <source>Help Documentation</source>
       <translation>Documentação de Ajuda</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="529" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="530" />
       <source>Help Viewers</source>
       <translation>Visores de Ajuda</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="550" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="536" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="551" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="537" />
       <source>Project</source>
       <translation>Projeto</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="543" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="544" />
       <source>Project Viewer</source>
       <translation>Visor de Projeto</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="557" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="558" />
       <source>Multiproject</source>
       <translation>Multiprojeto</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="953" />
       <location filename="../Preferences/ConfigurationDialog.py" line="921" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="889" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="858" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="761" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="646" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="571" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="564" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="890" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="859" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="762" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="647" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="572" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="565" />
       <source>Interface</source>
       <translation />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="578" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="579" />
       <source>Viewmanager</source>
       <translation>Gestor de Vista</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="589" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="590" />
       <source>Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="796" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="596" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="797" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="597" />
       <source>Appearance</source>
       <translation>Aparência</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="803" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="603" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="804" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="604" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="810" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="610" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="811" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="611" />
       <source>VirusTotal Interface</source>
       <translation>Interface de VirusTotal</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1007" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1039" />
       <source>Enter search text...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1080" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1112" />
       <source>Preferences</source>
       <translation>Preferências</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1086" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1118" />
       <source>Please select an entry of the list 
 to display the configuration page.</source>
       <translation>Por favor selecione uma entrada da lista 
 para mostrar a página de configuração.</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1163" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1195" />
       <source>Configuration Page Error</source>
       <translation>Erro na Página de Configuração</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1164" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1196" />
       <source>&lt;p&gt;The configuration page &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;A página de configuração &lt;b&gt;{0}&lt;/b&gt; não pôde ser carregada.&lt;/p&gt;</translation>
     </message>
@@ -10528,26 +10556,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Add allowed host</source>
       <translation>Adicionar anfitrião permitido</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Introduzir a direção IP de um anfitrião permitido</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
+      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
+      <translation>&lt;p&gt;A direção &lt;b&gt;{0}&lt;/b&gt; não é um direção IP v4 ou IP v6 válida. A cancelar...&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
-      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
-      <translation>&lt;p&gt;A direção &lt;b&gt;{0}&lt;/b&gt; não é um direção IP v4 ou IP v6 válida. A cancelar...&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
       <source>Edit allowed host</source>
       <translation>Editar anfitrião permitido</translation>
     </message>
@@ -12067,42 +12095,42 @@
   <context>
     <name>DownloadManager</name>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="111" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="113" />
       <source>Open</source>
       <translation>Abrir</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="117" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="119" />
       <source>Cancel</source>
       <translation>Cancelar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="122" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="124" />
       <source>Open Containing Folder</source>
       <translation>Abrir o Diretório Contentor</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="125" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="127" />
       <source>Go to Download Page</source>
       <translation>Ir à página de Descargas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="126" />
-      <source>Copy Download Link</source>
-      <translation>Copia Vínculo de Descarga</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/Download/DownloadManager.py" line="128" />
+      <source>Copy Download Link</source>
+      <translation>Copia Vínculo de Descarga</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="130" />
       <source>Select All</source>
       <translation>Selecionar Tudo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="137" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="139" />
       <source>Remove From List</source>
       <translation>Retirar da Lista</translation>
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="172" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="174" />
       <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
       <translation>
@@ -12113,34 +12141,34 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="264" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="266" />
       <source>Suspicuous URL detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="265" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="267" />
       <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="500" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="502" />
       <source>Downloads finished</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="501" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="503" />
       <source>All files have been downloaded.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/Download/DownloadManager.ui" line="0" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="586" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="509" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="588" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="511" />
       <source>Download Manager</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="619" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="621" />
       <source>{0}% of %n file(s) ({1}) {2}</source>
       <translation type="unfinished">
         <numerusform />
@@ -12148,7 +12176,7 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="627" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="629" />
       <source>{0}% - Download Manager</source>
       <translation type="unfinished" />
     </message>
@@ -12392,7 +12420,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3335" />
+      <location filename="../QScintilla/Editor.py" line="3334" />
       <location filename="../QScintilla/Editor.py" line="428" />
       <location filename="../QScintilla/Editor.py" line="413" />
       <source>Open File</source>
@@ -12464,7 +12492,7 @@
       <translation>Descomentar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9154" />
+      <location filename="../QScintilla/Editor.py" line="9152" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12737,7 +12765,7 @@
       <translation type="unfinished">Verificação ortográfica</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8272" />
+      <location filename="../QScintilla/Editor.py" line="8270" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>Verificação ortográfica...</translation>
@@ -12798,7 +12826,7 @@
       <translation>Editar ponto de interrupção...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5932" />
+      <location filename="../QScintilla/Editor.py" line="5929" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>Habilitar pontos de interrupção</translation>
@@ -12990,398 +13018,398 @@
       <translation>Impressão cancelada</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3277" />
+      <location filename="../QScintilla/Editor.py" line="3276" />
       <source>File Modified</source>
       <translation>Ficheiro Modificado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3278" />
+      <location filename="../QScintilla/Editor.py" line="3277" />
       <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="3336" />
+      <location filename="../QScintilla/Editor.py" line="3335" />
       <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="3511" />
+      <location filename="../QScintilla/Editor.py" line="3492" />
+      <location filename="../QScintilla/Editor.py" line="3454" />
+      <source>Save File</source>
+      <translation>Gravar Ficheiro</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="3455" />
+      <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="3512" />
-      <location filename="../QScintilla/Editor.py" line="3493" />
-      <location filename="../QScintilla/Editor.py" line="3455" />
-      <source>Save File</source>
-      <translation>Gravar Ficheiro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3456" />
-      <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="3513" />
       <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="3649" />
+      <location filename="../QScintilla/Editor.py" line="3646" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3650" />
+      <location filename="../QScintilla/Editor.py" line="3647" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5106" />
+      <location filename="../QScintilla/Editor.py" line="5103" />
       <source>Autocompletion</source>
       <translation>Autocompletar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5107" />
+      <location filename="../QScintilla/Editor.py" line="5104" />
       <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="5235" />
+      <location filename="../QScintilla/Editor.py" line="5232" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5236" />
+      <location filename="../QScintilla/Editor.py" line="5233" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5528" />
+      <location filename="../QScintilla/Editor.py" line="5525" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5529" />
+      <location filename="../QScintilla/Editor.py" line="5526" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5936" />
+      <location filename="../QScintilla/Editor.py" line="5933" />
       <source>Disable breakpoint</source>
       <translation>Inabilitar ponto de interrupção</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6315" />
+      <location filename="../QScintilla/Editor.py" line="6312" />
       <source>Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6316" />
+      <location filename="../QScintilla/Editor.py" line="6313" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6391" />
-      <location filename="../QScintilla/Editor.py" line="6383" />
+      <location filename="../QScintilla/Editor.py" line="6388" />
+      <location filename="../QScintilla/Editor.py" line="6380" />
       <source>Show Code Coverage Annotations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6384" />
+      <location filename="../QScintilla/Editor.py" line="6381" />
       <source>All lines have been covered.</source>
       <translation>Foram cobertas as linhas todas.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6392" />
+      <location filename="../QScintilla/Editor.py" line="6389" />
       <source>There is no coverage file available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6496" />
+      <location filename="../QScintilla/Editor.py" line="6493" />
       <source>Profile Data</source>
       <translation>Dados de Perfil</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6497" />
+      <location filename="../QScintilla/Editor.py" line="6494" />
       <source>Please select a profile file</source>
       <translation>Escolha um ficheiro de perfil por favor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6658" />
-      <location filename="../QScintilla/Editor.py" line="6652" />
+      <location filename="../QScintilla/Editor.py" line="6655" />
+      <location filename="../QScintilla/Editor.py" line="6649" />
       <source>Syntax Error</source>
       <translation>Erro de Sintaxe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6659" />
+      <location filename="../QScintilla/Editor.py" line="6656" />
       <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="6870" />
-      <location filename="../QScintilla/Editor.py" line="6864" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
+      <location filename="../QScintilla/Editor.py" line="6863" />
       <source>Warning</source>
       <translation>Aviso</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
       <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="6934" />
+      <location filename="../QScintilla/Editor.py" line="6933" />
       <source>Style: {0}</source>
       <translation>Estilo: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6937" />
+      <location filename="../QScintilla/Editor.py" line="6936" />
       <source>Warning: {0}</source>
       <translation>Aviso: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6944" />
+      <location filename="../QScintilla/Editor.py" line="6943" />
       <source>Error: {0}</source>
       <translation>Erro: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Macro Name</source>
       <translation>Nome de Macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Select a macro name:</source>
       <translation>Selecionar um nome de macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7077" />
+      <location filename="../QScintilla/Editor.py" line="7076" />
       <source>Load macro file</source>
       <translation>Carregar ficheiro macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7123" />
-      <location filename="../QScintilla/Editor.py" line="7079" />
+      <location filename="../QScintilla/Editor.py" line="7122" />
+      <location filename="../QScintilla/Editor.py" line="7078" />
       <source>Macro files (*.macro)</source>
       <translation>Ficheiros Macro (*.macro)</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7100" />
+      <location filename="../QScintilla/Editor.py" line="7090" />
+      <source>Error loading macro</source>
+      <translation>Erro ao carregar macro</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7091" />
+      <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="7101" />
-      <location filename="../QScintilla/Editor.py" line="7091" />
-      <source>Error loading macro</source>
-      <translation>Erro ao carregar macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7092" />
-      <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="7102" />
       <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="7121" />
+      <location filename="../QScintilla/Editor.py" line="7120" />
       <source>Save macro file</source>
       <translation>Gravar ficheiro macro</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7138" />
+      <source>Save macro</source>
+      <translation>Gravar macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7139" />
-      <source>Save macro</source>
-      <translation>Gravar macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7140" />
       <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="7154" />
+      <source>Error saving macro</source>
+      <translation>Erro ao gravar macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7155" />
-      <source>Error saving macro</source>
-      <translation>Erro ao gravar macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7156" />
       <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="7168" />
+      <source>Start Macro Recording</source>
+      <translation>Iniciar Registo de Macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7169" />
-      <source>Start Macro Recording</source>
-      <translation>Iniciar Registo de Macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7170" />
       <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="7195" />
+      <source>Macro Recording</source>
+      <translation>Gravação de Macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7196" />
-      <source>Macro Recording</source>
-      <translation>Gravação de Macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation>Introduza o nome de macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7348" />
+      <location filename="../QScintilla/Editor.py" line="7346" />
       <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="7354" />
+      <location filename="../QScintilla/Editor.py" line="7352" />
       <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="7361" />
+      <location filename="../QScintilla/Editor.py" line="7359" />
       <source>File changed</source>
       <translation>Ficheiro alterado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7411" />
+      <location filename="../QScintilla/Editor.py" line="7409" />
       <source>{0} (ro)</source>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7716" />
+      <location filename="../QScintilla/Editor.py" line="7714" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7717" />
+      <location filename="../QScintilla/Editor.py" line="7715" />
       <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="7735" />
+      <source>Resources</source>
+      <translation>Recursos</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7737" />
-      <source>Resources</source>
-      <translation>Recursos</translation>
+      <source>Add file...</source>
+      <translation>Adicionar Ficheiro...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7738" />
+      <source>Add files...</source>
+      <translation>Adicionar Ficheiros...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="7739" />
-      <source>Add file...</source>
-      <translation>Adicionar Ficheiro...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7740" />
-      <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="7741" />
-      <source>Add aliased file...</source>
-      <translation>Adicionar ficheiro com pseudónimo...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>Adicionar recursos localizado...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7746" />
+      <location filename="../QScintilla/Editor.py" line="7744" />
       <source>Add resource frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7765" />
+      <location filename="../QScintilla/Editor.py" line="7763" />
       <source>Add file resource</source>
       <translation>Adicionar recurso de ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7777" />
       <source>Add file resources</source>
       <translation>Adicionar recursos de ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7797" />
+      <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7795" />
       <source>Add aliased file resource</source>
       <translation>Adicionar recurso de ficheiro com pseudónimo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7804" />
+      <location filename="../QScintilla/Editor.py" line="7802" />
       <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="7879" />
+      <location filename="../QScintilla/Editor.py" line="7877" />
       <source>Package Diagram</source>
       <translation>Diagrama do Pacote</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7880" />
+      <location filename="../QScintilla/Editor.py" line="7878" />
       <source>Include class attributes?</source>
       <translation>Incluir atributos de classes?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7900" />
+      <location filename="../QScintilla/Editor.py" line="7898" />
       <source>Imports Diagram</source>
       <translation>Diagrama de Imports</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7901" />
+      <location filename="../QScintilla/Editor.py" line="7899" />
       <source>Include imports from external modules?</source>
       <translation>Incluir imports de módulos externos?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7920" />
+      <location filename="../QScintilla/Editor.py" line="7918" />
       <source>Application Diagram</source>
       <translation>Diagrama da Aplicação</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7921" />
+      <location filename="../QScintilla/Editor.py" line="7919" />
       <source>Include module names?</source>
       <translation>Incluir nome dos módulos?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="8274" />
+      <source>Add to dictionary</source>
+      <translation>Adicionar dicionário</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8276" />
-      <source>Add to dictionary</source>
-      <translation>Adicionar dicionário</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>Ignorar Tudo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8696" />
+      <location filename="../QScintilla/Editor.py" line="8694" />
       <source>Sort Lines</source>
       <translation>Ordenar Linhas</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8697" />
+      <location filename="../QScintilla/Editor.py" line="8695" />
       <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="8790" />
+      <location filename="../QScintilla/Editor.py" line="8788" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8791" />
+      <location filename="../QScintilla/Editor.py" line="8789" />
       <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="8887" />
+      <location filename="../QScintilla/Editor.py" line="8885" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8893" />
+      <location filename="../QScintilla/Editor.py" line="8891" />
       <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="8961" />
+      <location filename="../QScintilla/Editor.py" line="8959" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8962" />
+      <location filename="../QScintilla/Editor.py" line="8960" />
       <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>
@@ -14999,7 +15027,7 @@
   <context>
     <name>EditorHighlightersPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="144" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="145" />
       <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="51" />
       <source>Alternative</source>
       <translation>Alternativa</translation>
@@ -20879,8 +20907,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1589" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1573" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1591" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1575" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="196" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -20891,7 +20919,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1674" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1676" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="203" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -20942,8 +20970,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1673" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1632" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1634" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="363" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
@@ -21054,17 +21082,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1574" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1576" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1588" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1590" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1633" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1635" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -21681,27 +21709,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="72" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="67" />
       <source>{0} wants to use desktop notifications.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="98" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="92" />
       <source>Remember</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="100" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="94" />
       <source>Allow</source>
       <translation type="unfinished">Permitir</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="101" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="95" />
       <source>Deny</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="126" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="120" />
       <source>{0} wants to use an unknown feature.</source>
       <translation type="unfinished" />
     </message>
@@ -21918,7 +21946,7 @@
       <translation>&amp;Mostrar dados do erro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="486" />
+      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="487" />
       <source>Error loading feed</source>
       <translation>Erro ao carregar fonte</translation>
     </message>
@@ -23171,7 +23199,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1643" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="213" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -23192,158 +23220,158 @@
       <translation type="unfinished">O repositorio do projeto não se pôde criar.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="281" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="283" />
       <source>Creating Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="296" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="298" />
       <source>Adding files to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="305" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
       <source>Initial commit to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="333" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="335" />
       <source>Cloning project from a Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="428" />
       <source>Commit Changes</source>
       <translation type="unfinished">Aplicar Alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="429" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="485" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="546" />
       <source>Switch</source>
       <translation type="unfinished">Mudar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="545" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="547" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="575" />
       <source>Synchronizing with the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="619" />
       <source>Adding files/directories to the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="691" />
       <source>Removing files/directories from the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="754" />
       <source>Renaming {0}</source>
       <translation type="unfinished">A renomear {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="876" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="929" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="918" />
       <source>Revert changes</source>
       <translation type="unfinished">Desfazer alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="919" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="930" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="936" />
       <source>Reverting changes</source>
       <translation type="unfinished">Desfazer alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="988" />
       <source>Merging</source>
       <translation type="unfinished">A mesclar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1012" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1016" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1228" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1232" />
       <source>Git Command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1330" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1336" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1334" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Pais&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1340" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiquetas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Pais&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1346" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiquetas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1352" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Ramos&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1357" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1356" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1362" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1361" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1367" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1366" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1372" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1371" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1377" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1383" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -23353,459 +23381,459 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1458" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. 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="../Plugins/VcsPlugins/vcsGit/git.py" line="1517" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1500" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1506" />
       <source>Git Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1507" />
       <source>&lt;p&gt;Copying the directory &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="../Plugins/VcsPlugins/vcsGit/git.py" line="1518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
       <source>&lt;p&gt;Copying the file &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="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2726" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1645" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1707" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1694" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1683" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1713" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1689" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1708" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1714" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não se pôde ler.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1760" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1766" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1796" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1802" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1835" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1841" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1869" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1894" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1924" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1951" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1957" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1954" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1960" />
       <source>Apply patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2034" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2040" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2284" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2326" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2347" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2348" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2376" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2378" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2395" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2430" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2459" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2525" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2546" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2828" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2672" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2725" />
       <source>Process Generation Error</source>
       <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2771" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2754" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2736" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2738" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2755" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2772" />
       <source>&lt;p&gt;The 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="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2791" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2819" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2793" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2817" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3161" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2991" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3047" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3048" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3183" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3240" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3271" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3294" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3318" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3396" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3598" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3436" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3599" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3559" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3510" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3437" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3509" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3469" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3483" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3558" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3547" />
       <source>Create Branch</source>
       <translation type="unfinished">Criar Ramo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3548" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3573" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3609" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3610" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3620" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3647" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3707" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished">A mostrar as definições de configuração combinadas</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3729" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3798" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3804" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3815" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3821" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3839" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3905" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3945" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4012" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
-      <source>All</source>
-      <translation type="unfinished">Tudo</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
-      <source>Submodule Path</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
+      <source>All</source>
+      <translation type="unfinished">Tudo</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4029" />
+      <source>Submodule Path</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4030" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4079" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4112" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4143" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4266" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -24218,12 +24246,12 @@
       <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="213" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="214" />
       <source>Changed by skipped commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="215" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="216" />
       <source>Commit cannot be skipped</source>
       <translation type="unfinished" />
     </message>
@@ -25325,7 +25353,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1896" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1891" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="340" />
       <source>Branch</source>
       <translation type="unfinished">Ramo</translation>
@@ -25346,9 +25374,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1957" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1868" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1952" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1840" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="356" />
       <source>Switch</source>
       <translation type="unfinished">Mudar</translation>
@@ -25359,7 +25387,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1979" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="364" />
       <source>Show Short Log</source>
       <translation type="unfinished" />
@@ -25380,125 +25408,125 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="662" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="664" />
+      <source>Could not start the git executable.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="667" />
-      <source>Could not start the git executable.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="670" />
       <source>Git Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="799" />
       <source>{0} ({1}%)</source>
       <comment>action, confidence</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="869" />
       <source>Process Generation Error</source>
       <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="874" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="870" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1345" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1342" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1359" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1356" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1800" />
       <source>Copy Changesets</source>
       <translation type="unfinished">Copiar Conjuntos de Alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1958" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1806" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1953" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1801" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1985" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1980" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841" />
       <source>Select a branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1935" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1897" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892" />
       <source>Select a default branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1934" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1929" />
       <source>Branch &amp; Switch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2159" />
       <source>Find Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2160" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2209" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2204" />
       <source>Differences</source>
       <translation type="unfinished">Diferenças</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2221" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2216" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2237" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2232" />
       <source>Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2262" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2257" />
       <source>There is no difference.</source>
       <translation type="unfinished">Não há diferenças.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2429" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2412" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2424" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2389" />
       <source>Save Diff</source>
       <translation type="unfinished">Gravar Diff</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2391" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2408" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2425" />
       <source>&lt;p&gt;The patch 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 remendo &lt;b&gt;{0}&lt;/b&gt; não se pôde gravar.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -28903,7 +28931,7 @@
       <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="383" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="384" />
       <source>%n file(s) changed</source>
       <translation>
         <numerusform>um ficheiro alterado</numerusform>
@@ -28911,7 +28939,7 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="386" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="387" />
       <source>%n line(s) inserted</source>
       <translation>
         <numerusform>uma linha inserida</numerusform>
@@ -28919,7 +28947,7 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="390" />
       <source>%n line(s) deleted</source>
       <translation>
         <numerusform>uma linha apagada</numerusform>
@@ -29083,7 +29111,7 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195" />
       <source>Commit</source>
       <translation type="unfinished">Cometido</translation>
@@ -29114,7 +29142,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210" />
       <source>Add</source>
       <translation type="unfinished">Adicionar</translation>
@@ -29145,7 +29173,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226" />
       <source>Differences</source>
       <translation type="unfinished">Diferenças</translation>
@@ -29166,7 +29194,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244" />
       <source>Revert</source>
       <translation type="unfinished">Anular</translation>
@@ -29177,7 +29205,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253" />
       <source>Forget Missing</source>
       <translation type="unfinished" />
@@ -29188,7 +29216,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="837" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257" />
       <source>Restore Missing</source>
       <translation type="unfinished" />
@@ -29235,98 +29263,98 @@
       <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="605" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="468" />
       <source>all</source>
       <translation type="unfinished">tudo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="676" />
       <source>There are no entries selected to be committed.</source>
       <translation type="unfinished">Não há entradas selecionadas a cometer.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="719" />
       <source>There are no unversioned entries available/selected.</source>
       <translation type="unfinished">Não existem entradas sem versão disponíveis/selecionadas.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="741" />
-      <source>Stage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="742" />
+      <source>Stage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="743" />
       <source>There are no stageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="765" />
-      <source>Unstage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="766" />
+      <source>Unstage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="767" />
       <source>There are no unstageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="791" />
       <source>There are no missing entries available/selected.</source>
       <translation type="unfinished">Não existem entradas desaparecidas disponíveis/selcionadas.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810" />
       <source>There are no uncommitted, unstaged changes available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="874" />
       <source>There are no uncommitted changes available/selected.</source>
       <translation type="unfinished">Não há aterações por cometer disponíveis/selecionadas.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="923" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="899" />
-      <source>Working Tree to Staging Area</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
-      <source>Staging Area to HEAD Commit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="924" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
+      <source>Working Tree to Staging Area</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="901" />
+      <source>Staging Area to HEAD Commit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="925" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="902" />
       <source>Working Tree to HEAD Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="928" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="905" />
-      <source>Differences Side-by-Side</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="929" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="906" />
+      <source>Differences Side-by-Side</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="907" />
       <source>Select the compare method.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1239" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1240" />
       <source>Revert selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1241" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1242" />
       <source>Revert hunk</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1247" />
       <source>Are you sure you want to revert the selected changes?</source>
       <translation type="unfinished" />
     </message>
@@ -29983,12 +30011,12 @@
       <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="336" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="337" />
       <source>current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="340" />
       <source>checked out in linked worktree</source>
       <translation type="unfinished" />
     </message>
@@ -30476,101 +30504,101 @@
       <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="516" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="533" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="552" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="535" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="553" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="576" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="577" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="578" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="612" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="595" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="597" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="614" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="634" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="636" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="642" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="669" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="723" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="699" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="701" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="725" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="750" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="762" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="752" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="763" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -30626,27 +30654,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="199" />
+      <location filename="../Globals/__init__.py" line="197" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="202" />
+      <location filename="../Globals/__init__.py" line="200" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="205" />
+      <location filename="../Globals/__init__.py" line="203" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="208" />
+      <location filename="../Globals/__init__.py" line="206" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="211" />
+      <location filename="../Globals/__init__.py" line="209" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -31445,37 +31473,37 @@
   <context>
     <name>HelpSearchWidget</name>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="166" />
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
       <source>Open Link</source>
       <translation>Abrir Vínculo</translation>
     </message>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="168" />
-      <source>Open Link in New Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
-      <source>Open Link in Background Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="171" />
-      <source>Open Link in New Tab</source>
-      <translation>Abrir Vínculo Num Separador Novo</translation>
+      <source>Open Link in New Page</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="172" />
-      <source>Open Link in Background Tab</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="173" />
-      <source>Open Link in New Window</source>
-      <translation type="unfinished" />
+      <source>Open Link in Background Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="174" />
+      <source>Open Link in New Tab</source>
+      <translation>Abrir Vínculo Num Separador Novo</translation>
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="175" />
+      <source>Open Link in Background Tab</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="176" />
+      <source>Open Link in New Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="178" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -31800,104 +31828,104 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="442" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="443" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished">Documentação de Python 3</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Documentação de Qt5</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Documentação de Qt5 {6 ?}</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished">Documentação de Python 3</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">Documentação do PyQt5</translation>
+      <source>Qt5 Documentation</source>
+      <translation type="unfinished">Documentação de Qt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>PyQt6 Documentation</source>
-      <translation type="unfinished">Documentação do PyQt5 {6 ?}</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Documentação de Qt5 {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
+      <source>PyQt5 Documentation</source>
+      <translation type="unfinished">Documentação do PyQt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
+      <source>PyQt6 Documentation</source>
+      <translation type="unfinished">Documentação do PyQt5 {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="506" />
-      <source>Open HTML File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <source>Open HTML File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
       <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="699" />
       <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="723" />
       <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="734" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="759" />
       <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="762" />
       <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="767" />
       <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="860" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="840" />
       <source>Clear History</source>
       <translation type="unfinished">Limpar Histórico</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="968" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="970" />
       <source>Updating search index</source>
       <translation type="unfinished">A atualizar índice de pesquisa</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1026" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1028" />
       <source>Filtered by: </source>
       <translation type="unfinished">Filtrado por: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1062" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1057" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1064" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
       <source>Unfiltered</source>
       <translation type="unfinished">Sem filtrar</translation>
     </message>
@@ -33299,446 +33327,446 @@
       <translation>O repositorio do projeto não se pôde criar.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="311" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="313" />
       <source>Creating Mercurial repository</source>
       <translation>A criar repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="330" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="332" />
       <source>Initial commit to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="368" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="370" />
       <source>Cloning project from a Mercurial repository</source>
       <translation>A clonar projeto dum repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="468" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="470" />
       <source>Commit Changes</source>
       <translation>Aplicar Alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="469" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="471" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="531" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="533" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="623" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="625" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation>A sincronizar com o repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="653" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation>A adicionar ficheiros/diretorios ao repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="708" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation>A retirar ficheiros/diretorios do repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="754" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="756" />
       <source>Renaming {0}</source>
       <translation>A renomear {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="879" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="881" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="927" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="916" />
       <source>Revert changes</source>
       <translation>Desfazer alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="917" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="928" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="934" />
       <source>Reverting changes</source>
       <translation>Desfazer alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="977" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="979" />
       <source>Merging</source>
       <translation>A mesclar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1017" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1007" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1009" />
       <source>Re-Merge</source>
       <translation>Remesclar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1008" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1010" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1020" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1021" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1023" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1044" />
       <source>Current branch tip</source>
       <translation>Dica de ramo atual</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1216" />
       <source>Mercurial command</source>
       <translation>Comando de Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1373" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1377" />
       <source>Copying {0}</source>
       <translation>A copiar {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1612" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1600" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1591" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1604" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1595" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation>Diferenças lado a lado de Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1613" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1617" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não se pôde ler.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2274" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2263" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2253" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1688" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2267" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2257" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1692" />
       <source>Apply changegroups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1691" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1695" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation>A puxar dum repositorio Mercurial remoto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1733" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation>A empurrar a um repositorio Mercurial remoto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1875" />
       <source>Marking as 'unresolved'</source>
       <translation>A marcar como 'sem resolver'</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1877" />
       <source>Marking as 'resolved'</source>
       <translation>A marcar como 'resolvido'</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1895" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1899" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1922" />
       <source>Creating branch in the Mercurial repository</source>
       <translation>A criar ramo no repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1930" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation>Criado o novo ramo &lt;{0}&gt;.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
       <source>Showing current branch</source>
       <translation>A mostrar o ramo atual</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2022" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2026" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation>A verificar a integridade do repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2035" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2039" />
       <source>Showing the combined configuration settings</source>
       <translation>A mostrar as definições de configuração combinadas</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2050" />
       <source>Showing aliases for remote repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2061" />
       <source>Recovering from interrupted transaction</source>
       <translation>A recuperar duma transação interrompida</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2068" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2072" />
       <source>Identifying project directory</source>
       <translation>A identificar o diretorio do projeto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2114" />
       <source>Create .hgignore file</source>
       <translation>Criar ficheiro .hgignore</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2111" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2115" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. 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="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2212" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2186" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2216" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2190" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2172" />
       <source>Create changegroup</source>
       <translation>Criar conjunto de alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2170" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2174" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2187" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2191" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Preview changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2255" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2259" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2232" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2264" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2268" />
       <source>Shall the working directory be updated?</source>
       <translation>O diretorio de trabalho deve ser atualizado?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2300" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2320" />
       <source>Mercurial Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
       <source>Removing files from the Mercurial repository only</source>
       <translation>A retirar ficheiros apenas do repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2383" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2364" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2387" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2368" />
       <source>Backing out changeset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2365" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
       <source>No revision given. Aborting...</source>
       <translation>Não foi dada revisão. Terminando...</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2403" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2398" />
+      <source>Rollback last transaction</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2399" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2394" />
-      <source>Rollback last transaction</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2465" />
       <source>Import Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2513" />
       <source>Export Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2553" />
       <source>Change Phase</source>
       <translation>Mudar Fase</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2607" />
       <source>Copy Changesets</source>
       <translation type="unfinished">Copiar Conjuntos de Alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2646" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2656" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2662" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2666" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2685" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2689" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2703" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2700" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2704" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2789" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2769" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2793" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2762" />
       <source>Add Sub-repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2828" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2759" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2832" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2774" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2846" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2790" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2850" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2794" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2827" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2813" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2849" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2831" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2817" />
       <source>Remove Sub-repositories</source>
       <translation>Retirar Sub Repositórios</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2818" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3062" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2925" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3066" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2929" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2930" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3063" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3067" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3179" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3183" />
       <source>Mercurial Bookmark</source>
       <translation>Marcador de Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3195" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3199" />
       <source>Delete Bookmark</source>
       <translation>Apagar Marcador</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3200" />
       <source>Select the bookmark to be deleted:</source>
       <translation>Selecionar o marcador a apagar:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3210" />
       <source>Delete Mercurial Bookmark</source>
       <translation>Apagar o Marcador de Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3235" />
       <source>Rename Mercurial Bookmark</source>
       <translation>Renomear o Marcador de Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3268" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3272" />
       <source>Move Mercurial Bookmark</source>
       <translation>Mover o Marcador de Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3341" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3345" />
       <source>Pull Bookmark</source>
       <translation>Puxar Marcador</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3342" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
       <source>Select the bookmark to be pulled:</source>
       <translation>Selecionar o marcador a puxar:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3354" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3358" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation>A puxar marcador desde o repositório remoto de Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3380" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3384" />
       <source>Push Bookmark</source>
       <translation>Empurrar Marcador</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3385" />
       <source>Select the bookmark to be push:</source>
       <translation>Selecione o marcador a empurrar:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3396" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3400" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation>A empurrar marcador a um repositório remoto de Mercurial</translation>
     </message>
@@ -34584,42 +34612,42 @@
   <context>
     <name>HgClient</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="91" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="98" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="140" />
-      <source>Did not receive the 'hello' message.</source>
-      <translation>Não recebeu a mensagem 'hello'.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="142" />
-      <source>Received data on unexpected channel.</source>
-      <translation>Dados recebidos num canal imprevisto.</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="147" />
+      <source>Did not receive the 'hello' message.</source>
+      <translation>Não recebeu a mensagem 'hello'.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="149" />
+      <source>Received data on unexpected channel.</source>
+      <translation>Dados recebidos num canal imprevisto.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="154" />
       <source>Bad 'hello' message, expected 'capabilities: ' but got '{0}'.</source>
       <translation>Mensagem 'hello' má, esperava-se 'capabilities: ' mas teve '{0}'.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="152" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="159" />
       <source>'capabilities' message did not contain any capability.</source>
       <translation>Mensagem 'capabilities' não tinha nenhuma capacidade.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="168" />
       <source>Bad 'hello' message, expected 'encoding: ' but got '{0}'.</source>
       <translation>Mensagem 'hello' má, esperava-se 'encoding: ' mas teve '{0}'.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="166" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="173" />
       <source>'encoding' message did not contain any encoding.</source>
       <translation>Mensagem 'encoding' não tinha nenhuma codificação.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="377" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="385" />
       <source>For message see output dialog.</source>
       <translation>Para a mensagem ver a caixa de diálogo da saída de comandos.</translation>
     </message>
@@ -36035,7 +36063,7 @@
       <translation>Copiar de</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2690" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2686" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="0" />
       <source>Differences</source>
       <translation type="unfinished">Diferenças</translation>
@@ -36166,7 +36194,7 @@
       <translation>Marcadores</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2150" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2146" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299" />
       <source>Copy Changesets</source>
       <translation type="unfinished">Copiar Conjuntos de Alterações</translation>
@@ -36224,8 +36252,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2244" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2240" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2223" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343" />
       <source>Switch</source>
       <translation type="unfinished">Mudar</translation>
@@ -36256,8 +36284,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2362" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1562" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2358" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1558" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371" />
       <source>Pull Changes</source>
       <translation type="unfinished" />
@@ -36314,7 +36342,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2501" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="424" />
       <source>Apply Changegroup</source>
       <translation type="unfinished" />
@@ -36345,7 +36373,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2408" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2404" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="454" />
       <source>Strip Changesets</source>
       <translation type="unfinished" />
@@ -36366,117 +36394,117 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="889" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="866" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="886" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="837" />
       <source>Mercurial Error</source>
       <translation>Erro de Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1210" />
       <source>{0} (large file)</source>
       <translation>{0} (ficheiro grande)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1472" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1468" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1479" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1641" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1560" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1556" />
       <source>Pull Selected Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2409" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2363" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2245" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2151" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2498" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2405" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2359" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2147" />
       <source>The project should be reread. Do this now?</source>
       <translation>O projecto deve ser recarregado. Fazer-lo agora?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2224" />
       <source>Select bookmark to switch to (leave empty to use revision):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2273" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2269" />
       <source>Define Bookmark</source>
       <translation type="unfinished">Definir Marcador</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2274" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2270" />
       <source>Enter bookmark name for changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2303" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2299" />
       <source>Move Bookmark</source>
       <translation type="unfinished">Mover marcador</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2300" />
       <source>Select the bookmark to be moved  to changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2637" />
       <source>Find Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2638" />
       <source>'{0}' was not found.</source>
       <translation>'{0}' não foi encontrado.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2689" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2685" />
       <source>Generating differences ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2701" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2697" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2713" />
       <source>Diff to Parent {0}{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2740" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2736" />
       <source>There is no difference.</source>
       <translation type="unfinished">Não há diferenças.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2891" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2875" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2857" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2853" />
       <source>Save Diff</source>
       <translation type="unfinished">Gravar Diff</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2859" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2855" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2876" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2872" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2892" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2888" />
       <source>&lt;p&gt;The patch 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 remendo &lt;b&gt;{0}&lt;/b&gt; não se pôde gravar.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -41364,22 +41392,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="85" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -46140,9 +46168,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <location filename="../Network/IRC/IrcWidget.py" line="266" />
       <location filename="../Network/IRC/IrcWidget.py" line="261" />
       <location filename="../Network/IRC/IrcWidget.py" line="254" />
@@ -46177,260 +46205,260 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <source>Server found,connecting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
       <source>Connected,logging in...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
       <source>Server disconnected.</source>
       <translation>Servidor desconectado.</translation>
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="607" />
+      <source>Message Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="608" />
-      <source>Message Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="609" />
       <source>Unknown message received from server:&lt;br/&gt;{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1032" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1022" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1014" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1006" />
-      <location filename="../Network/IRC/IrcWidget.py" line="651" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1030" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1020" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1012" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1004" />
+      <location filename="../Network/IRC/IrcWidget.py" line="650" />
+      <location filename="../Network/IRC/IrcWidget.py" line="642" />
+      <source>CTCP</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="643" />
-      <source>CTCP</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="644" />
       <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="652" />
+      <location filename="../Network/IRC/IrcWidget.py" line="651" />
       <source>Received unknown CTCP-{0} response from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="678" />
+      <location filename="../Network/IRC/IrcWidget.py" line="677" />
       <source>Notice</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="688" />
+      <location filename="../Network/IRC/IrcWidget.py" line="687" />
       <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="692" />
+      <location filename="../Network/IRC/IrcWidget.py" line="691" />
       <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="696" />
+      <location filename="../Network/IRC/IrcWidget.py" line="695" />
       <source>Mode</source>
       <translation type="unfinished">Modo</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="704" />
+      <location filename="../Network/IRC/IrcWidget.py" line="703" />
       <source>You have left channel {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="716" />
+      <location filename="../Network/IRC/IrcWidget.py" line="715" />
       <source>You are now known as {0}.</source>
       <translation>Conhecem-o como {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="722" />
+      <location filename="../Network/IRC/IrcWidget.py" line="721" />
       <source>User {0} is now known as {1}.</source>
       <translation>Usuário {0} é agora conhecido como {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="728" />
+      <location filename="../Network/IRC/IrcWidget.py" line="727" />
       <source>Received PONG from {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="733" />
+      <location filename="../Network/IRC/IrcWidget.py" line="732" />
       <source>Server Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="767" />
+      <location filename="../Network/IRC/IrcWidget.py" line="765" />
       <source>Error</source>
       <translation>Erro</translation>
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="780" />
+      <source>Welcome</source>
+      <translation>Bem-vindo</translation>
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="782" />
-      <source>Welcome</source>
-      <translation>Bem-vindo</translation>
+      <source>Support</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="784" />
-      <source>Support</source>
-      <translation type="unfinished" />
+      <source>User</source>
+      <translation>Usuário</translation>
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="786" />
-      <source>User</source>
-      <translation>Usuário</translation>
+      <source>MOTD</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="788" />
-      <source>MOTD</source>
-      <translation type="unfinished" />
+      <source>Away</source>
+      <translation>Ausente</translation>
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="790" />
-      <source>Away</source>
-      <translation>Ausente</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="792" />
       <source>Info ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="794" />
+      <source>Message of the day</source>
+      <translation>Mensagem do dia</translation>
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="796" />
-      <source>Message of the day</source>
-      <translation>Mensagem do dia</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="798" />
       <source>End of message of the day</source>
       <translation>Fim da mensagem do dia</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="801" />
+      <location filename="../Network/IRC/IrcWidget.py" line="799" />
       <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="806" />
+      <location filename="../Network/IRC/IrcWidget.py" line="804" />
       <source>Current users on {0}: {1}, max. {2}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="811" />
+      <location filename="../Network/IRC/IrcWidget.py" line="809" />
       <source>Current users on the network: {0}, max. {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="813" />
+      <source>You are no longer marked as being away.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="815" />
-      <source>You are no longer marked as being away.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="817" />
       <source>You have been marked as being away.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="947" />
-      <location filename="../Network/IRC/IrcWidget.py" line="931" />
-      <location filename="../Network/IRC/IrcWidget.py" line="880" />
+      <location filename="../Network/IRC/IrcWidget.py" line="945" />
+      <location filename="../Network/IRC/IrcWidget.py" line="929" />
+      <location filename="../Network/IRC/IrcWidget.py" line="878" />
       <source>SSL Error</source>
       <translation>Erro SSL</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="881" />
+      <location filename="../Network/IRC/IrcWidget.py" line="879" />
       <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
-      <location filename="../Network/IRC/IrcWidget.py" line="910" />
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
-      <location filename="../Network/IRC/IrcWidget.py" line="897" />
-      <location filename="../Network/IRC/IrcWidget.py" line="889" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
+      <location filename="../Network/IRC/IrcWidget.py" line="908" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
+      <location filename="../Network/IRC/IrcWidget.py" line="895" />
+      <location filename="../Network/IRC/IrcWidget.py" line="887" />
       <source>Socket Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="890" />
+      <location filename="../Network/IRC/IrcWidget.py" line="888" />
       <source>The host was not found. Please check the host name and port settings.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="898" />
+      <location filename="../Network/IRC/IrcWidget.py" line="896" />
       <source>The connection was refused by the peer. Please check the host name and port settings.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
       <source>The SSL handshake failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="911" />
+      <location filename="../Network/IRC/IrcWidget.py" line="909" />
       <source>The following network error occurred:&lt;br/&gt;{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
       <source>A network error occurred.</source>
       <translation>Ocurreu um erro de rede.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="932" />
+      <location filename="../Network/IRC/IrcWidget.py" line="930" />
       <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 type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="948" />
+      <location filename="../Network/IRC/IrcWidget.py" line="946" />
       <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1007" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1005" />
       <source>Received Version request from {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1015" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1013" />
       <source>Received CTCP-PING request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1023" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1021" />
       <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1033" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1031" />
       <source>Received unknown CTCP-{0} request from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1049" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1047" />
       <source>{0} ({1})</source>
       <comment>channel name, users count</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1071" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1069" />
       <source>Critical</source>
       <translation>Crítico</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1072" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1070" />
       <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
       <source>The given nickname is already in use.</source>
       <translation type="unfinished" />
     </message>
@@ -47441,7 +47469,7 @@
       <translation>Selecionar o analizador léxico alternativo</translation>
     </message>
     <message>
-      <location filename="../Project/LexerAssociationDialog.py" line="131" />
+      <location filename="../Project/LexerAssociationDialog.py" line="132" />
       <location filename="../Project/LexerAssociationDialog.py" line="45" />
       <source>Alternative</source>
       <translation>Alternativa</translation>
@@ -49291,13 +49319,13 @@
       <translation>Copiar Rota à Área de Transferência</translation>
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="485" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="487" />
       <source>Untitled {0}</source>
       <translation>Sem título {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="627" />
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="491" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="629" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="493" />
       <source>{0} (ro)</source>
       <translation />
     </message>
@@ -52687,317 +52715,317 @@
       <translation>&lt;b&gt;Limpar&lt;/b&gt;&lt;p&gt;Apaga o texto todo do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2862" />
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
       <source>About</source>
       <translation>Acerca</translation>
     </message>
     <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
+      <source>&amp;About</source>
+      <translation>A&amp;cerca</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2860" />
+      <source>Display information about this software</source>
+      <translation>Mostra a informação acerca deste software</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2862" />
-      <source>&amp;About</source>
-      <translation>A&amp;cerca</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2864" />
-      <source>Display information about this software</source>
-      <translation>Mostra a informação acerca deste software</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <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&lt;/b&gt;&lt;p&gt;Mostra alguma informação acerca deste software.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About Qt</source>
       <translation>Acerca de Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About &amp;Qt</source>
       <translation>Acerca de &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2878" />
+      <location filename="../QScintilla/MiniEditor.py" line="2874" />
       <source>Display information about the Qt toolkit</source>
       <translation>Mostra informação acerca das Ferramentas de Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2881" />
+      <location filename="../QScintilla/MiniEditor.py" line="2877" />
       <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;Mostra alguma informação acerca das Ferramentas de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2890" />
+      <location filename="../QScintilla/MiniEditor.py" line="2886" />
       <source>What's This?</source>
       <translation>O que é Isto?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <location filename="../QScintilla/MiniEditor.py" line="2888" />
       <source>&amp;What's This?</source>
       <translation>O &amp;que é Isto?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2893" />
+      <location filename="../QScintilla/MiniEditor.py" line="2889" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2898" />
+      <location filename="../QScintilla/MiniEditor.py" line="2894" />
       <source>Context sensitive help</source>
       <translation>Ajuda sensível ao contexto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2900" />
+      <location filename="../QScintilla/MiniEditor.py" line="2896" />
       <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 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="../QScintilla/MiniEditor.py" line="2918" />
+      <location filename="../QScintilla/MiniEditor.py" line="2914" />
       <source>Preferences</source>
       <translation type="unfinished">Preferências</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2920" />
+      <location filename="../QScintilla/MiniEditor.py" line="2916" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished">&amp;Preferências...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2926" />
+      <location filename="../QScintilla/MiniEditor.py" line="2922" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">Definir a configuração desejada</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2924" />
       <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="../QScintilla/MiniEditor.py" line="2942" />
+      <location filename="../QScintilla/MiniEditor.py" line="2938" />
       <source>&amp;File</source>
       <translation>&amp;Ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2950" />
       <source>&amp;Edit</source>
       <translation>&amp;Editar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2964" />
+      <location filename="../QScintilla/MiniEditor.py" line="2960" />
       <source>&amp;Search</source>
       <translation type="unfinished">&amp;Procurar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2974" />
+      <location filename="../QScintilla/MiniEditor.py" line="2970" />
       <source>&amp;View</source>
       <translation type="unfinished">&amp;Vista</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2980" />
+      <location filename="../QScintilla/MiniEditor.py" line="2976" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished">Definiçõe&amp;s</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2985" />
+      <location filename="../QScintilla/MiniEditor.py" line="2981" />
       <source>&amp;Help</source>
       <translation>&amp;Ajuda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2997" />
+      <location filename="../QScintilla/MiniEditor.py" line="2993" />
       <source>File</source>
       <translation>Ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3009" />
+      <location filename="../QScintilla/MiniEditor.py" line="3005" />
       <source>Edit</source>
       <translation>Editar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3018" />
+      <location filename="../QScintilla/MiniEditor.py" line="3014" />
       <source>Search</source>
       <translation type="unfinished">Procurar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3024" />
+      <location filename="../QScintilla/MiniEditor.py" line="3020" />
       <source>View</source>
       <translation type="unfinished">Vista</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3030" />
+      <location filename="../QScintilla/MiniEditor.py" line="3026" />
       <source>Settings</source>
       <translation type="unfinished">Definições</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3033" />
+      <location filename="../QScintilla/MiniEditor.py" line="3029" />
       <source>Help</source>
       <translation>Ajuda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3046" />
+      <location filename="../QScintilla/MiniEditor.py" line="3042" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3056" />
+      <location filename="../QScintilla/MiniEditor.py" line="3052" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta parte da barra de estado mostra as permissões dos ficheiro do editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3065" />
+      <location filename="../QScintilla/MiniEditor.py" line="3061" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta parte da barra de estado mostra a linha do cursor do editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3074" />
+      <location filename="../QScintilla/MiniEditor.py" line="3070" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta parte da barra de estado mostra a posição do cursor do editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3088" />
+      <location filename="../QScintilla/MiniEditor.py" line="3084" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3095" />
+      <location filename="../QScintilla/MiniEditor.py" line="3091" />
       <source>Ready</source>
       <translation>Preparado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <location filename="../QScintilla/MiniEditor.py" line="3166" />
       <source>eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3171" />
+      <location filename="../QScintilla/MiniEditor.py" line="3167" />
       <source>The document has unsaved changes.</source>
       <translation>O documento tem alterações por gravar.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="3194" />
       <source>Open File</source>
       <translation>Abrir Ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3199" />
+      <location filename="../QScintilla/MiniEditor.py" line="3195" />
       <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/MiniEditor.py" line="3227" />
+      <location filename="../QScintilla/MiniEditor.py" line="3223" />
       <source>File loaded</source>
       <translation>Ficheiro carregado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <location filename="../QScintilla/MiniEditor.py" line="3304" />
       <source>Save File</source>
       <translation>Gravar Ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3309" />
+      <location filename="../QScintilla/MiniEditor.py" line="3305" />
       <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/MiniEditor.py" line="3315" />
+      <location filename="../QScintilla/MiniEditor.py" line="3311" />
       <source>File saved</source>
       <translation>Ficheiro gravado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>[*] - {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>Mini Editor</source>
       <translation>Mini Editor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="3655" />
-      <location filename="../QScintilla/MiniEditor.py" line="3339" />
+      <location filename="../QScintilla/MiniEditor.py" line="3680" />
+      <location filename="../QScintilla/MiniEditor.py" line="3651" />
+      <location filename="../QScintilla/MiniEditor.py" line="3335" />
       <source>Untitled</source>
       <translation>Sem Título</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
       <source>{0}[*] - {1}</source>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3650" />
+      <location filename="../QScintilla/MiniEditor.py" line="3646" />
       <source>Printing...</source>
       <translation>A imprimir...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3666" />
+      <location filename="../QScintilla/MiniEditor.py" line="3662" />
       <source>Printing completed</source>
       <translation>Impressão completa</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3668" />
+      <location filename="../QScintilla/MiniEditor.py" line="3664" />
       <source>Error while printing</source>
       <translation>Erro durante a impressão</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3671" />
+      <location filename="../QScintilla/MiniEditor.py" line="3667" />
       <source>Printing aborted</source>
       <translation>Impressão cancelada</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <location filename="../QScintilla/MiniEditor.py" line="3721" />
       <source>Select all</source>
       <translation>Selecionar tudo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3726" />
+      <location filename="../QScintilla/MiniEditor.py" line="3722" />
       <source>Deselect all</source>
       <translation>Desselecionar tudo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3739" />
+      <location filename="../QScintilla/MiniEditor.py" line="3735" />
       <source>Languages</source>
       <translation>Idiomas</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3742" />
+      <location filename="../QScintilla/MiniEditor.py" line="3738" />
       <source>No Language</source>
       <translation>Sem Idioma</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3764" />
+      <location filename="../QScintilla/MiniEditor.py" line="3760" />
       <source>Guessed</source>
       <translation>Adivinhado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3786" />
-      <location filename="../QScintilla/MiniEditor.py" line="3768" />
+      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Alternatives</source>
       <translation>Alternativas</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3783" />
+      <location filename="../QScintilla/MiniEditor.py" line="3779" />
       <source>Alternatives ({0})</source>
       <translation>Alternativas ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <location filename="../QScintilla/MiniEditor.py" line="3810" />
       <source>Pygments Lexer</source>
       <translation>Analizador Léxico Pygments</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3815" />
+      <location filename="../QScintilla/MiniEditor.py" line="3811" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Selecionar o analizador léxico Pygments a aplicar.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4336" />
+      <location filename="../QScintilla/MiniEditor.py" line="4332" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4337" />
+      <location filename="../QScintilla/MiniEditor.py" line="4333" />
       <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>
@@ -53078,564 +53106,604 @@
   <context>
     <name>MiscellaneousChecker</name>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="15" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="16" />
       <source>coding magic comment not found</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="18" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="19" />
       <source>unknown encoding ({0}) found in coding magic comment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="21" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="23" />
       <source>copyright notice not present</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="24" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="26" />
       <source>copyright notice contains invalid author</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="27" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="30" />
       <source>"{0}" is a Python builtin and is being shadowed; consider renaming the variable</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="32" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="35" />
       <source>"{0}" is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="37" />
-      <source>unnecessary generator - rewrite as a list comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="41" />
+      <source>unnecessary generator - rewrite as a list comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="45" />
       <source>unnecessary generator - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="44" />
-      <source>unnecessary generator - rewrite as a dict comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="48" />
-      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
+      <source>unnecessary generator - rewrite as a dict comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="52" />
-      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="56" />
+      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="60" />
       <source>unnecessary {0} call - rewrite as a literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="59" />
-      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="63" />
-      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="67" />
+      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="71" />
       <source>unnecessary {0} call around {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="70" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="74" />
       <source>unnecessary {0} call within {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="73" />
-      <source>unnecessary subscript reversal of iterable within {0}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="77" />
+      <source>unnecessary subscript reversal of iterable within {0}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="81" />
       <source>unnecessary {0} literal - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="80" />
-      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="84" />
-      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
+      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="88" />
-      <source>unnecessary list call - remove the outer call to list()</source>
+      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="92" />
+      <source>unnecessary list call - remove the outer call to list()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="96" />
       <source>unnecessary {0} comprehension - rewrite using {0}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="95" />
-      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="99" />
-      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="103" />
+      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="108" />
       <source>sort keys - '{0}' should be before '{1}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="106" />
-      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="110" />
-      <source>use of 'datetime.datetime.today()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="115" />
-      <source>use of 'datetime.datetime.utcnow()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="120" />
-      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="125" />
-      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="129" />
-      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" />
-      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="112" />
+      <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="117" />
+      <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="122" />
+      <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="127" />
+      <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="131" />
+      <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" />
+      <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" />
-      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
+      <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="143" />
-      <source>use of 'datetime.date()' should be avoided.
-Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <source>multiple decorators were used to declare property '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="148" />
-      <source>use of 'datetime.date.today()' should be avoided.
-Use 'datetime.datetime.now(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="153" />
-      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="158" />
-      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="161" />
-      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="165" />
-      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="169" />
-      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="173" />
-      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="177" />
-      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="152" />
+      <source>use of 'datetime.datetime.today()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="157" />
+      <source>use of 'datetime.datetime.utcnow()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="162" />
+      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" />
+      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" />
+      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" />
+      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="181" />
-      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" />
-      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="188" />
-      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="193" />
-      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="198" />
-      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="202" />
-      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="206" />
-      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="210" />
-      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" />
-      <source>Python does not support the unary prefix increment</source>
+      <source>use of 'datetime.date()' should be avoided.
+Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" />
+      <source>use of 'datetime.date.today()' should be avoided.
+Use 'datetime.datetime.now(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" />
+      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="200" />
+      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" />
+      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="207" />
+      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="212" />
+      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="216" />
+      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="220" />
-      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="225" />
-      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="230" />
-      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="224" />
+      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" />
+      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="231" />
+      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" />
-      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
+      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" />
-      <source>do not call getattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="244" />
-      <source>do not call setattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="247" />
-      <source>do not call assert False since python -O removes these calls</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="251" />
-      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" />
-      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="262" />
-      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="267" />
-      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="272" />
-      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="276" />
-      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" />
+      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" />
+      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="254" />
+      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" />
+      <source>Python does not support the unary prefix increment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="264" />
+      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="269" />
+      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="274" />
+      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="280" />
+      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="285" />
-      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="290" />
-      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="296" />
-      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <source>do not call getattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" />
+      <source>do not call setattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" />
+      <source>do not call assert False since python -O removes these calls</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" />
+      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="301" />
-      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="306" />
-      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" />
-      <source>Function definition does not bind loop variable '{0}'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" />
-      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="322" />
-      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="327" />
-      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
+      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" />
+      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" />
+      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="329" />
+      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" />
-      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" />
-      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="347" />
-      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="352" />
-      <source>Except handlers should only be names of exception classes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="356" />
-      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" />
-      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" />
-      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="372" />
-      <source>unncessary f-string</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" />
-      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" />
-      <source>found {0} formatter</source>
+      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="340" />
+      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="345" />
+      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="350" />
+      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="355" />
+      <source>Function definition does not bind loop variable '{0}'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="359" />
+      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" />
+      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" />
+      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" />
-      <source>format string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="381" />
-      <source>docstring does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="384" />
-      <source>other string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" />
-      <source>format call uses too large index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="390" />
-      <source>format call uses missing keyword ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="393" />
-      <source>format call uses keyword arguments but no named entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="397" />
-      <source>format call uses variable arguments but no numbered entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="401" />
-      <source>format call uses implicit and explicit indexes together</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="405" />
-      <source>format call provides unused index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" />
-      <source>format call provides unused keyword ({0})</source>
+      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" />
+      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="391" />
+      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" />
+      <source>Except handlers should only be names of exception classes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="400" />
+      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="406" />
+      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" />
-      <source>logging statement uses string.format()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="414" />
-      <source>logging statement uses '%'</source>
+      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="417" />
-      <source>logging statement uses '+'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" />
-      <source>logging statement uses f-string</source>
+      <source>unncessary f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="418" />
+      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="423" />
-      <source>logging statement uses 'warn' instead of 'warning'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="426" />
-      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <source>found {0} formatter</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" />
+      <source>format string does contain unindexed parameters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="427" />
+      <source>docstring does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="430" />
-      <source>expected these __future__ imports: {0}; but got none</source>
+      <source>other string does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" />
-      <source>gettext import with alias _ found: {0}</source>
+      <source>format call uses too large index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="436" />
-      <source>print statement found</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" />
-      <source>one element tuple found</source>
+      <source>format call uses missing keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" />
+      <source>format call uses keyword arguments but no named entries</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="440" />
-      <source>mutable default argument of type {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="446" />
-      <source>mutable default argument of function call '{0}'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" />
-      <source>None should not be added at any return if function has no return value except None</source>
+      <source>format call uses variable arguments but no numbered entries</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="447" />
+      <source>format call uses implicit and explicit indexes together</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="451" />
+      <source>format call provides unused index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" />
-      <source>an explicit value at every return should be added if function has a return value except None</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="459" />
-      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <source>format call provides unused keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" />
+      <source>logging statement uses string.format()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="461" />
+      <source>logging statement uses '%'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="464" />
-      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="469" />
-      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <source>logging statement uses '+'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" />
+      <source>logging statement uses f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="470" />
+      <source>logging statement uses 'warn' instead of 'warning'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="474" />
+      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="478" />
+      <source>expected these __future__ imports: {0}; but got none</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="482" />
+      <source>gettext import with alias _ found: {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="486" />
+      <source>print statement found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="488" />
+      <source>one element tuple found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="495" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="492" />
+      <source>mutable default argument of type {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="498" />
+      <source>mutable default argument of function call '{0}'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="502" />
+      <source>None should not be added at any return if function has no return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="507" />
+      <source>an explicit value at every return should be added if function has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="512" />
+      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" />
+      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="523" />
+      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="529" />
       <source>commented code lines should be removed</source>
       <translation type="unfinished" />
     </message>
@@ -56848,103 +56916,103 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="193" />
+      <location filename="../PipInterface/Pip.py" line="195" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="216" />
+      <location filename="../PipInterface/Pip.py" line="220" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="217" />
+      <location filename="../PipInterface/Pip.py" line="221" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="257" />
+      <location filename="../PipInterface/Pip.py" line="261" />
       <source>Install PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="304" />
+      <location filename="../PipInterface/Pip.py" line="308" />
       <source>Repair PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="395" />
+      <location filename="../PipInterface/Pip.py" line="399" />
       <source>Upgrade Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="441" />
+      <location filename="../PipInterface/Pip.py" line="445" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="471" />
+      <location filename="../PipInterface/Pip.py" line="475" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="492" />
+      <location filename="../PipInterface/Pip.py" line="496" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="549" />
-      <location filename="../PipInterface/Pip.py" line="521" />
-      <location filename="../PipInterface/Pip.py" line="512" />
+      <location filename="../PipInterface/Pip.py" line="553" />
+      <location filename="../PipInterface/Pip.py" line="525" />
+      <location filename="../PipInterface/Pip.py" line="516" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="550" />
-      <location filename="../PipInterface/Pip.py" line="513" />
+      <location filename="../PipInterface/Pip.py" line="554" />
+      <location filename="../PipInterface/Pip.py" line="517" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="559" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="912" />
+      <location filename="../PipInterface/Pip.py" line="916" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="938" />
-      <location filename="../PipInterface/Pip.py" line="929" />
+      <location filename="../PipInterface/Pip.py" line="942" />
+      <location filename="../PipInterface/Pip.py" line="933" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="930" />
+      <location filename="../PipInterface/Pip.py" line="934" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="962" />
-      <location filename="../PipInterface/Pip.py" line="955" />
+      <location filename="../PipInterface/Pip.py" line="966" />
+      <location filename="../PipInterface/Pip.py" line="959" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="956" />
+      <location filename="../PipInterface/Pip.py" line="960" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="987" />
-      <location filename="../PipInterface/Pip.py" line="979" />
+      <location filename="../PipInterface/Pip.py" line="991" />
+      <location filename="../PipInterface/Pip.py" line="983" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="980" />
+      <location filename="../PipInterface/Pip.py" line="984" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -56967,12 +57035,12 @@
       <translation type="unfinished">Erros</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="153" />
+      <location filename="../PipInterface/PipDialog.py" line="154" />
       <source>Process Generation Error</source>
       <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="154" />
+      <location filename="../PipInterface/PipDialog.py" line="155" />
       <source>The process {0} could not be started.</source>
       <translation type="unfinished" />
     </message>
@@ -57837,30 +57905,30 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="434" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="435" />
       <source>Getting installed packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="448" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="449" />
       <source>Getting outdated packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1202" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1022" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1009" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="973" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
       <source>Search PyPI</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="975" />
       <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../PipInterface/PipPackagesWidget.py" line="989" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="990" />
       <source>%n package(s) found.</source>
       <translation type="unfinished">
         <numerusform />
@@ -57868,195 +57936,203 @@
       </translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="996" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="997" />
       <source>Showing first {0} packages found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1015" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1016" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1011" />
       <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1024" />
       <source>&lt;p&gt;There were no more results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1204" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1222" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1223" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1224" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1225" />
       <source>Install Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1227" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1228" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1230" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1231" />
       <source>Repair Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1237" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1238" />
       <source>Install</source>
       <translation type="unfinished">Instalar</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1402" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1239" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1403" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1240" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1242" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1243" />
       <source>Install Local Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1245" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1246" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1252" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1253" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1254" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1255" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1257" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1258" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1260" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1261" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1264" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1265" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1271" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1272" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1273" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1274" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1276" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1277" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1279" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1280" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1282" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1283" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1299" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1300" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1303" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1304" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1307" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1308" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1311" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1312" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1318" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1319" />
       <source>Edit User Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1321" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1322" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1326" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1327" />
       <source>Configure...</source>
       <translation type="unfinished">Configurar...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1545" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1532" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1521" />
-      <source>Edit Configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1546" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1533" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1522" />
+      <source>Edit Configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1547" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1534" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1523" />
       <source>No valid configuration path determined. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1714" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1736" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1735" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1757" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1760" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1862" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1843" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1890" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1865" />
       <source>unknown</source>
       <translation type="unfinished">desconhecido</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1887" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
   </context>
   <context>
+    <name>PipPackagesWindow</name>
+    <message>
+      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <source>Manage Packages</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>PipPage</name>
     <message>
       <location filename="../Preferences/ConfigurationPages/PipPage.py" line="31" />
@@ -59460,7 +59536,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="471" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -61096,8 +61172,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6671" />
-      <location filename="../Project/Project.py" line="6642" />
+      <location filename="../Project/Project.py" line="6668" />
+      <location filename="../Project/Project.py" line="6639" />
       <location filename="../Project/Project.py" line="6593" />
       <location filename="../Project/Project.py" line="4800" />
       <source>Execute Make</source>
@@ -61119,7 +61195,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6648" />
+      <location filename="../Project/Project.py" line="6645" />
       <location filename="../Project/Project.py" line="4819" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
@@ -61639,22 +61715,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6643" />
+      <location filename="../Project/Project.py" line="6640" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6651" />
+      <location filename="../Project/Project.py" line="6648" />
       <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="6656" />
+      <location filename="../Project/Project.py" line="6653" />
       <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="6672" />
+      <location filename="../Project/Project.py" line="6669" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
@@ -64507,7 +64583,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="424" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="434" />
       <location filename="../DataViews/PyCoverageDialog.py" line="69" />
       <source>LCOV Report</source>
       <translation type="unfinished" />
@@ -64536,12 +64612,12 @@
       </translation>
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="425" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="435" />
       <source>Enter the path of the output file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="429" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="439" />
       <source>LCOV Files (*.lcov);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -64811,7 +64887,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="361" />
+      <location filename="../DataViews/PyProfileDialog.py" line="371" />
       <location filename="../DataViews/PyProfileDialog.py" line="91" />
       <source>Exclude Python Library</source>
       <translation type="unfinished" />
@@ -64862,7 +64938,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="357" />
+      <location filename="../DataViews/PyProfileDialog.py" line="367" />
       <source>Include Python Library</source>
       <translation type="unfinished" />
     </message>
@@ -66197,38 +66273,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="213" />
+      <location filename="../UI/PythonAstViewer.py" line="214" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="223" />
+      <location filename="../UI/PythonAstViewer.py" line="224" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="229" />
+      <location filename="../UI/PythonAstViewer.py" line="230" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="247" />
+      <location filename="../UI/PythonAstViewer.py" line="248" />
       <source>Module</source>
       <translation type="unfinished">Módulo</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="279" />
+      <location filename="../UI/PythonAstViewer.py" line="280" />
       <source>{0}: {1}</source>
       <translation type="unfinished">{0}: {1}</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="296" />
-      <location filename="../UI/PythonAstViewer.py" line="286" />
+      <location filename="../UI/PythonAstViewer.py" line="297" />
+      <location filename="../UI/PythonAstViewer.py" line="287" />
       <source>{0},{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="303" />
+      <location filename="../UI/PythonAstViewer.py" line="304" />
       <source>{0}  -  {1}</source>
       <translation type="unfinished" />
     </message>
@@ -68756,7 +68832,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="716" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="714" />
       <source>Initializing new queue repository</source>
       <translation type="unfinished" />
     </message>
@@ -69734,50 +69810,82 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1341" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1555" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
       <source>Active</source>
       <translation type="unfinished">Ativo</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1345" />
-      <source>Status</source>
-      <translation type="unfinished">Estado</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1349" />
-      <source>Hostname</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1350" />
-      <source>IPv4 Address</source>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1343" />
+      <source>Name</source>
+      <translation type="unfinished">Nome</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1568" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1344" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1347" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Public</source>
+      <translation type="unfinished">Público</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>MTU</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>{0} Bytes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1556" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1559" />
+      <source>Status</source>
+      <translation type="unfinished">Estado</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1563" />
+      <source>Hostname</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1564" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1565" />
       <source>Netmask</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1352" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1566" />
       <source>Gateway</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1353" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1567" />
       <source>DNS</source>
       <translation type="unfinished" />
     </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1354" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
   </context>
   <context>
     <name>RccCompilerOptionsDialog</name>
@@ -70860,7 +70968,7 @@
       <translation type="unfinished">Coincidir maiúsculas/minúsculas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SearchWidget.py" line="98" />
+      <location filename="../WebBrowser/SearchWidget.py" line="100" />
       <source>Expression was not found.</source>
       <translation type="unfinished" />
     </message>
@@ -72252,45 +72360,45 @@
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2063" />
-      <location filename="../QScintilla/Shell.py" line="1845" />
+      <location filename="../QScintilla/Shell.py" line="2059" />
+      <location filename="../QScintilla/Shell.py" line="1841" />
       <location filename="../QScintilla/Shell.py" line="408" />
       <source>Project</source>
       <translation type="unfinished">Projeto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="810" />
+      <location filename="../QScintilla/Shell.py" line="806" />
       <source>Select History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="811" />
+      <location filename="../QScintilla/Shell.py" line="807" />
       <source>Select the history entry to execute (most recent shown last).</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Shell.py" line="872" />
+      <source>Passive Debug Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="873" />
+      <source>
+Not connected</source>
+      <translation>Desconetado</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Shell.py" line="876" />
-      <source>Passive Debug Mode</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="877" />
-      <source>
-Not connected</source>
-      <translation>Desconetado</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="880" />
       <source>No.</source>
       <translation>Nº</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="882" />
+      <location filename="../QScintilla/Shell.py" line="878" />
       <source>{0} on {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="929" />
+      <location filename="../QScintilla/Shell.py" line="925" />
       <source>Exception "{0}"
 {1}
 File: {2}, Line: {3}
@@ -72298,88 +72406,88 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="938" />
+      <location filename="../QScintilla/Shell.py" line="934" />
       <source>Exception "{0}"
 {1}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="958" />
+      <location filename="../QScintilla/Shell.py" line="954" />
       <source>Unspecified syntax error.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="961" />
+      <location filename="../QScintilla/Shell.py" line="957" />
       <source>Syntax error "{1}" in file {0} at line {2}, character {3}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="985" />
+      <location filename="../QScintilla/Shell.py" line="981" />
       <source>Signal "{0}" generated in file {1} at line {2}.
 Function: {3}({4})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1067" />
+      <location filename="../QScintilla/Shell.py" line="1063" />
       <source>StdOut: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1075" />
+      <location filename="../QScintilla/Shell.py" line="1071" />
       <source>StdErr: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1101" />
+      <location filename="../QScintilla/Shell.py" line="1097" />
       <source>&lt;{0}&gt; {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1888" />
+      <location filename="../QScintilla/Shell.py" line="1884" />
       <source>Available Virtual Environments:
 {0}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1931" />
-      <location filename="../QScintilla/Shell.py" line="1895" />
+      <location filename="../QScintilla/Shell.py" line="1927" />
+      <location filename="../QScintilla/Shell.py" line="1891" />
       <source>Current Virtual Environment: '{0}'
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2203" />
+      <location filename="../QScintilla/Shell.py" line="2199" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2204" />
+      <location filename="../QScintilla/Shell.py" line="2200" />
       <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="2446" />
-      <location filename="../QScintilla/Shell.py" line="2431" />
-      <location filename="../QScintilla/Shell.py" line="2412" />
+      <location filename="../QScintilla/Shell.py" line="2442" />
+      <location filename="../QScintilla/Shell.py" line="2427" />
+      <location filename="../QScintilla/Shell.py" line="2408" />
       <source>Save Shell Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2414" />
+      <location filename="../QScintilla/Shell.py" line="2410" />
       <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="2432" />
+      <location filename="../QScintilla/Shell.py" line="2428" />
       <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="2447" />
+      <location filename="../QScintilla/Shell.py" line="2443" />
       <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>
@@ -72624,335 +72732,335 @@
   <context>
     <name>ShellWindow</name>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1275" />
-      <location filename="../QScintilla/ShellWindow.py" line="54" />
+      <location filename="../QScintilla/ShellWindow.py" line="1279" />
+      <location filename="../QScintilla/ShellWindow.py" line="62" />
       <source>eric Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="220" />
-      <source>Quit</source>
-      <translation type="unfinished">Sair</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="222" />
-      <source>&amp;Quit</source>
-      <translation type="unfinished">Sai&amp;r</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="223" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="228" />
-      <source>Quit the Shell</source>
-      <translation type="unfinished">Sair do IDE</translation>
+      <source>Quit</source>
+      <translation type="unfinished">Sair</translation>
     </message>
     <message>
       <location filename="../QScintilla/ShellWindow.py" line="230" />
+      <source>&amp;Quit</source>
+      <translation type="unfinished">Sai&amp;r</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="231" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="236" />
+      <source>Quit the Shell</source>
+      <translation type="unfinished">Sair do IDE</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="238" />
       <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="237" />
+      <location filename="../QScintilla/ShellWindow.py" line="245" />
       <source>New Window</source>
       <translation type="unfinished">Nova Janela</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="239" />
+      <location filename="../QScintilla/ShellWindow.py" line="247" />
       <source>New &amp;Window</source>
       <translation type="unfinished">Nova &amp;Janela</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="240" />
+      <location filename="../QScintilla/ShellWindow.py" line="248" />
       <source>Ctrl+Shift+N</source>
       <comment>File|New Window</comment>
       <translation type="unfinished">Ctrl+Shift+N</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="245" />
+      <location filename="../QScintilla/ShellWindow.py" line="253" />
       <source>Open a new Shell window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="247" />
+      <location filename="../QScintilla/ShellWindow.py" line="255" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="258" />
-      <location filename="../QScintilla/ShellWindow.py" line="256" />
-      <source>Restart</source>
-      <translation type="unfinished">Reiniciar</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="264" />
-      <source>Restart the shell</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="266" />
+      <location filename="../QScintilla/ShellWindow.py" line="264" />
+      <source>Restart</source>
+      <translation type="unfinished">Reiniciar</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="272" />
+      <source>Restart the shell</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="274" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="278" />
-      <location filename="../QScintilla/ShellWindow.py" line="276" />
+      <location filename="../QScintilla/ShellWindow.py" line="286" />
+      <location filename="../QScintilla/ShellWindow.py" line="284" />
       <source>Restart and Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="285" />
+      <location filename="../QScintilla/ShellWindow.py" line="293" />
       <source>Clear the window and restart the shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="288" />
+      <location filename="../QScintilla/ShellWindow.py" line="296" />
       <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="298" />
+      <location filename="../QScintilla/ShellWindow.py" line="306" />
       <source>Save Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="300" />
+      <location filename="../QScintilla/ShellWindow.py" line="308" />
       <source>Save Contents...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="309" />
+      <location filename="../QScintilla/ShellWindow.py" line="317" />
       <source>Save the current contents of the shell to a file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="312" />
+      <location filename="../QScintilla/ShellWindow.py" line="320" />
       <source>&lt;b&gt;Save Contents&lt;/b&gt;&lt;p&gt;Save the current contents of the shell to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="345" />
+      <location filename="../QScintilla/ShellWindow.py" line="353" />
       <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="../QScintilla/ShellWindow.py" line="367" />
+      <location filename="../QScintilla/ShellWindow.py" line="375" />
       <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="../QScintilla/ShellWindow.py" line="389" />
+      <location filename="../QScintilla/ShellWindow.py" line="397" />
       <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="411" />
+      <location filename="../QScintilla/ShellWindow.py" line="419" />
       <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="709" />
-      <location filename="../QScintilla/ShellWindow.py" line="708" />
+      <location filename="../QScintilla/ShellWindow.py" line="713" />
+      <location filename="../QScintilla/ShellWindow.py" line="712" />
       <source>Move forward one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="721" />
-      <location filename="../QScintilla/ShellWindow.py" line="720" />
+      <location filename="../QScintilla/ShellWindow.py" line="725" />
+      <location filename="../QScintilla/ShellWindow.py" line="724" />
       <source>Move back one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1115" />
+      <location filename="../QScintilla/ShellWindow.py" line="1119" />
       <source>Show History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1117" />
+      <location filename="../QScintilla/ShellWindow.py" line="1121" />
       <source>&amp;Show History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1123" />
-      <source>Show the shell history in a dialog</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1127" />
+      <source>Show the shell history in a dialog</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1131" />
       <source>Clear History</source>
       <translation type="unfinished">Limpar Histórico</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1129" />
+      <location filename="../QScintilla/ShellWindow.py" line="1133" />
       <source>&amp;Clear History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1135" />
-      <source>Clear the shell history</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1139" />
+      <source>Clear the shell history</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1143" />
       <source>Select History Entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1140" />
+      <location filename="../QScintilla/ShellWindow.py" line="1144" />
       <source>Select History &amp;Entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1147" />
+      <location filename="../QScintilla/ShellWindow.py" line="1151" />
       <source>Select an entry of the shell history</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
+      <location filename="../QScintilla/ShellWindow.py" line="1160" />
       <source>About</source>
       <translation type="unfinished">Acerca</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
-      <source>&amp;About</source>
-      <translation type="unfinished">A&amp;cerca</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1158" />
-      <source>Display information about this software</source>
-      <translation type="unfinished">Mostra a informação acerca deste software</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1160" />
+      <source>&amp;About</source>
+      <translation type="unfinished">A&amp;cerca</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1162" />
+      <source>Display information about this software</source>
+      <translation type="unfinished">Mostra a informação acerca deste software</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1164" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Acerca&lt;/b&gt;&lt;p&gt;Mostra alguma informação acerca deste software.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About Qt</source>
       <translation type="unfinished">Acerca de Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About &amp;Qt</source>
       <translation type="unfinished">Acerca de &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1172" />
+      <location filename="../QScintilla/ShellWindow.py" line="1176" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished">Mostra informação acerca das Ferramentas de Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1175" />
+      <location filename="../QScintilla/ShellWindow.py" line="1179" />
       <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Acerca de Qt&lt;/b&gt;&lt;p&gt;Mostra alguma informação acerca das Ferramentas de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1184" />
+      <location filename="../QScintilla/ShellWindow.py" line="1188" />
       <source>What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1186" />
+      <location filename="../QScintilla/ShellWindow.py" line="1190" />
       <source>&amp;What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1187" />
+      <location filename="../QScintilla/ShellWindow.py" line="1191" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1192" />
+      <location filename="../QScintilla/ShellWindow.py" line="1196" />
       <source>Context sensitive help</source>
       <translation type="unfinished">Ajuda sensível ao contexto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1194" />
+      <location filename="../QScintilla/ShellWindow.py" line="1198" />
       <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="../QScintilla/ShellWindow.py" line="1273" />
+      <location filename="../QScintilla/ShellWindow.py" line="1277" />
       <source>eric Shell [{0}]</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="1346" />
       <source>About eric Shell Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1343" />
+      <location filename="../QScintilla/ShellWindow.py" line="1347" />
       <source>The eric Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1370" />
+      <location filename="../QScintilla/ShellWindow.py" line="1374" />
       <source>&amp;File</source>
       <translation type="unfinished">&amp;Ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1381" />
+      <location filename="../QScintilla/ShellWindow.py" line="1385" />
       <source>&amp;Edit</source>
       <translation type="unfinished">&amp;Editar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1392" />
+      <location filename="../QScintilla/ShellWindow.py" line="1396" />
       <source>&amp;View</source>
       <translation type="unfinished">&amp;Vista</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1399" />
+      <location filename="../QScintilla/ShellWindow.py" line="1403" />
       <source>Histor&amp;y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1406" />
+      <location filename="../QScintilla/ShellWindow.py" line="1410" />
       <source>&amp;Start</source>
       <translation type="unfinished">&amp;Iniciar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1412" />
+      <location filename="../QScintilla/ShellWindow.py" line="1416" />
       <source>&amp;Help</source>
       <translation type="unfinished">&amp;Ajuda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1445" />
+      <location filename="../QScintilla/ShellWindow.py" line="1449" />
       <source>File</source>
       <translation type="unfinished">Ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1455" />
+      <location filename="../QScintilla/ShellWindow.py" line="1459" />
       <source>Edit</source>
       <translation type="unfinished">Editar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1461" />
+      <location filename="../QScintilla/ShellWindow.py" line="1465" />
       <source>Find</source>
       <translation type="unfinished">Encontrar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1466" />
+      <location filename="../QScintilla/ShellWindow.py" line="1470" />
       <source>View</source>
       <translation type="unfinished">Vista</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1472" />
+      <location filename="../QScintilla/ShellWindow.py" line="1476" />
       <source>History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1477" />
+      <location filename="../QScintilla/ShellWindow.py" line="1481" />
       <source>Help</source>
       <translation type="unfinished">Ajuda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1499" />
+      <location filename="../QScintilla/ShellWindow.py" line="1503" />
       <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -73310,24 +73418,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="363" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="345" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="324" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
       <source>Edit shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="326" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="347" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="365" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -76472,328 +76580,328 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="310" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="327" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="312" />
       <source>Importing project into Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="328" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="330" />
       <source>Imported revision {0}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="362" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="364" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="367" />
       <source>Subversion Checkout</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="420" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="433" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="422" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="368" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="389" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="388" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="391" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="390" />
       <source>Checking project out of Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="419" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="432" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="421" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="434" />
       <source>Subversion Export</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="443" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="445" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="456" />
       <source>Exporting project from Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="514" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="535" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="516" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="537" />
       <source>Commit Changes</source>
       <translation>Aplicar Alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="515" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="517" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="538" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="578" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="580" />
       <source>Commiting changes to Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="614" />
       <source>Committed revision {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="638" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="684" />
       <source>Synchronizing with the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="735" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="793" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="898" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="900" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="859" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="937" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="939" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="918" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="920" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="998" />
       <source>Moving {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1177" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1148" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1027" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="998" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1292" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1124" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1094" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1179" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1029" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1294" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1265" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1126" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1096" />
       <source>Subversion Error</source>
       <translation type="unfinished">Erro de Subversão</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1095" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1001" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1097" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1028" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1125" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1030" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1127" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1062" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1161" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1147" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1149" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1324" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1172" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1326" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1174" />
       <source>Revision {0}.
 </source>
       <translation>Revisão {0}.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1106" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1095" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1197" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1108" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1097" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
       <source>Revert changes</source>
       <translation>Desfazer alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1096" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1198" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1200" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1107" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1109" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1211" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1113" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1115" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1219" />
       <source>Reverting changes</source>
       <translation type="unfinished">Desfazer alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1149" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1264" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1151" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1266" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1178" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1293" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1180" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1295" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1207" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1318" />
       <source>Switching to {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1416" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1275" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1418" />
       <source>Merging {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1543" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1723" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1544" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1725" />
       <source>Cleaning up {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1573" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1763" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1765" />
       <source>Subversion command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1744" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1883" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1747" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1887" />
       <source>Resolving conficts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1924" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1928" />
       <source>Copying {0}</source>
       <translation type="unfinished">A copiar {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1844" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1823" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2000" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1847" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1987" />
       <source>Subversion Set Property</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1870" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2045" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1988" />
       <source>You have to supply a property name. Aborting.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2023" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2027" />
       <source>Property set.</source>
       <translation>Propriedade definida.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1887" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1858" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2061" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2044" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1890" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1872" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2048" />
       <source>Subversion Delete Property</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2079" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2083" />
       <source>Property deleted.</source>
       <translation>Propriedade apagada.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2114" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2102" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2093" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2294" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2105" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2096" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2310" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2298" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2289" />
       <source>Subversion Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2115" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2307" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2118" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2311" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não se pôde ler.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2348" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2352" />
       <source>Subversion Lock</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2349" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2353" />
       <source>Enter lock comment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2165" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2370" />
       <source>Locking in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2192" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2195" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2411" />
       <source>Unlocking in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2217" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2458" />
       <source>Relocating</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2235" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2479" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2238" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2483" />
       <source>Repository Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2236" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2480" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2239" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2484" />
       <source>Enter the repository URL.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2269" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2505" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2309" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2272" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2509" />
       <source>Remove from changelist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2285" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2544" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2533" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2548" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2537" />
       <source>Add to changelist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2534" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2289" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2538" />
       <source>Enter name of the changelist:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2373" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2598" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2602" />
       <source>Upgrade</source>
       <translation>Atualizar</translation>
     </message>
@@ -76974,7 +77082,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2052" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="181" />
       <source>The svn process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -76985,12 +77093,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1862" />
       <source>Enter property name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2051" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2054" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
@@ -77614,27 +77722,27 @@
       <translation>A processar ficheiro '{0}'...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="208" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="284" />
       <source>There is no difference.</source>
       <translation>Não há diferenças.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="223" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="342" />
       <source>&lt;Start&gt;</source>
       <translation>&lt;Inicio&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="225" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="343" />
       <source>&lt;End&gt;</source>
       <translation>&lt;Fim&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="410" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="444" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="426" />
@@ -77642,19 +77750,19 @@
       <translation>Gravar Diff</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="378" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="428" />
       <source>Patch Files (*.diff)</source>
       <translation>Ficheiros de Remendos (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="396" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="445" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro de remendo &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever-lo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="412" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="461" />
       <source>&lt;p&gt;The patch 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 remendo &lt;b&gt;{0}&lt;/b&gt; não se pôde gravar.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
@@ -77910,7 +78018,7 @@
       <translation type="unfinished">Selecionar o campo a filtrar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="566" />
@@ -77920,7 +78028,7 @@
       <translation>Revisão</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="674" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="563" />
@@ -79921,7 +80029,7 @@
       <translation type="unfinished">Selecionar estado das entradas a mostrar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="654" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.ui" line="0" />
@@ -80145,8 +80253,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1057" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="129" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="915" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="894" />
@@ -80155,7 +80263,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="134" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="818" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="134" />
@@ -80163,7 +80271,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="136" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="837" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="136" />
@@ -80247,7 +80355,7 @@
       <translation>sim</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="491" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="562" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="491" />
@@ -80255,34 +80363,34 @@
       <translation>tudo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="798" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="655" />
       <source>There are no entries selected to be committed.</source>
       <translation type="unfinished">Não há entradas selecionadas a cometer.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
-      <source>Add</source>
-      <translation>Adicionar</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
+      <source>Add</source>
+      <translation>Adicionar</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="840" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="697" />
       <source>There are no unversioned entries available/selected.</source>
       <translation type="unfinished">Não existem entradas sem versão disponíveis/selecionadas.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="888" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="862" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="720" />
       <source>Revert</source>
       <translation type="unfinished">Anular</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="934" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="912" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="864" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="791" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="769" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="721" />
@@ -80290,41 +80398,41 @@
       <translation type="unfinished">Não há aterações por cometer disponíveis/selecionadas.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="747" />
       <source>There are no missing entries available/selected.</source>
       <translation type="unfinished">Não existem entradas desaparecidas disponíveis/selcionadas.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="768" />
       <source>Differences</source>
       <translation>Diferenças</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="939" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="797" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="790" />
       <source>Side-by-Side Diff</source>
       <translation type="unfinished">Diff Lado a lado</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="941" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="798" />
       <source>Only one file with uncommitted changes must be selected.</source>
       <translation type="unfinished">Apenas um ficheiro com alterações por cometer deve ser selecionado.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="819" />
       <source>There are no unlocked files available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="981" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="876" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="857" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="838" />
@@ -80332,25 +80440,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="998" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="856" />
       <source>Break Lock</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1017" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="875" />
       <source>Steal Lock</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1038" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="895" />
       <source>There are no files available/selected not belonging to a changelist.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1059" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="916" />
       <source>There are no files available/selected belonging to a changelist.</source>
       <translation type="unfinished" />
@@ -80478,7 +80586,7 @@
   <context>
     <name>SvnStatusMonitorThread</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="141" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="143" />
       <source>Subversion status checked successfully (using pysvn)</source>
       <translation>Estado de Subversion verificado com êxito (a usar pysvn)</translation>
     </message>
@@ -82075,7 +82183,7 @@
       <translation>Sem Sincronização</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="187" />
+      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="188" />
       <source>&lt;font color="#FF0000"&gt;&lt;b&gt;Error:&lt;/b&gt; {0}&lt;/font&gt;</source>
       <translation>&lt;font color="#FF0000"&gt;&lt;b&gt;Error:&lt;/b&gt; {0}&lt;/font&gt;</translation>
     </message>
@@ -83107,7 +83215,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="565" />
+      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="563" />
       <source>Show Tab Manager</source>
       <translation type="unfinished" />
     </message>
@@ -83673,47 +83781,47 @@
       <translation>Tarefas Manuais</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="743" />
+      <location filename="../Tasks/TaskViewer.py" line="744" />
       <source>Activate task filter</source>
       <translation>Ativar filtro de tareias</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="744" />
+      <location filename="../Tasks/TaskViewer.py" line="745" />
       <source>The task filter doesn't have any active filters. Do you want to configure the filter settings?</source>
       <translation>Filtro de tarefas não tem nenhum filtro ativo. Deseja configurar defenições de filtro?</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="778" />
-      <source>Scan Filter Patterns</source>
-      <translation>Padrões de Filtros de Escaneio</translation>
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="779" />
+      <source>Scan Filter Patterns</source>
+      <translation>Padrões de Filtros de Escaneio</translation>
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="780" />
       <source>Enter filename patterns of files to be excluded separated by a comma:</source>
       <translation>Introduzir padrões de nomes dos ficheiros a excluir separados por uma vírgula:</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="821" />
-      <source>Extracting project tasks...</source>
-      <translation>A extrair tarefas do projeto...</translation>
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="822" />
+      <source>Extracting project tasks...</source>
+      <translation>A extrair tarefas do projeto...</translation>
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="823" />
       <source>Abort</source>
       <translation>Cancelar</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="825" />
+      <location filename="../Tasks/TaskViewer.py" line="826" />
       <source>%v/%m Files</source>
       <translation>%v/%m Ficheiros</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="829" />
+      <location filename="../Tasks/TaskViewer.py" line="830" />
       <source>Tasks</source>
       <translation>Tarefas</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="836" />
+      <location filename="../Tasks/TaskViewer.py" line="837" />
       <source>Extracting project tasks...
 {0}</source>
       <translation>A extrair tarefas do projeto...
@@ -83856,7 +83964,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="316" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="318" />
       <location filename="../MicroPython/Devices/TeensyDevices.py" line="154" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -83897,17 +84005,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="317" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="319" />
       <source>&lt;p&gt;Teensy 4.0 and Teensy 4.1 are flashed using the 'Teensy Loader' application. Make sure you downloaded the MicroPython or CircuitPython .hex file.&lt;/p&gt;&lt;p&gt;See &lt;a href="{0}"&gt;the PJRC Teensy web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="339" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="341" />
       <source>Start 'Teensy Loader'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="340" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="342" />
       <source>&lt;p&gt;The 'Teensy Loader' application &lt;b&gt;teensy&lt;/b&gt; could not be started. Ensure it is in the application search path or start it manually.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -84133,78 +84241,78 @@
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="531" />
+      <location filename="../Templates/TemplateViewer.py" line="533" />
       <source>Remove Template</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="532" />
+      <location filename="../Templates/TemplateViewer.py" line="534" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="560" />
-      <source>Import Templates</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Templates/TemplateViewer.py" line="562" />
+      <source>Import Templates</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Templates/TemplateViewer.py" line="564" />
       <source>Templates Files (*.ecj);;XML Templates Files (*.e4c);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="595" />
-      <location filename="../Templates/TemplateViewer.py" line="579" />
+      <location filename="../Templates/TemplateViewer.py" line="597" />
+      <location filename="../Templates/TemplateViewer.py" line="581" />
       <source>Export Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="581" />
+      <location filename="../Templates/TemplateViewer.py" line="583" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="596" />
+      <location filename="../Templates/TemplateViewer.py" line="598" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="614" />
+      <location filename="../Templates/TemplateViewer.py" line="616" />
       <source>Reload Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="615" />
+      <location filename="../Templates/TemplateViewer.py" line="617" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
       <source>Template Help</source>
       <translation type="unfinished">Ajuda de Modelo</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="883" />
+      <location filename="../Templates/TemplateViewer.py" line="885" />
       <source>Edit Template Group</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="884" />
+      <location filename="../Templates/TemplateViewer.py" line="886" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1005" />
+      <location filename="../Templates/TemplateViewer.py" line="1007" />
       <source>Read Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1006" />
+      <location filename="../Templates/TemplateViewer.py" line="1008" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -87063,99 +87171,99 @@
   <context>
     <name>UMLGraphicsView</name>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="90" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="94" />
       <source>Delete shapes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="96" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="100" />
       <source>Increase width by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="103" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="107" />
       <source>Increase height by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="110" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="114" />
       <source>Decrease width by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="117" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="121" />
       <source>Decrease height by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="123" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="127" />
       <source>Set size</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="128" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="132" />
       <source>Re-Scan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="133" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="137" />
       <source>Re-Layout</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="138" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="142" />
       <source>Align Left</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="145" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="149" />
       <source>Align Center Horizontal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="152" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="156" />
       <source>Align Right</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="158" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="162" />
       <source>Align Top</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="165" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="169" />
       <source>Align Center Vertical</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="172" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="176" />
       <source>Align Bottom</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="235" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="240" />
       <source>Graphics</source>
       <translation>Gráficos</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="395" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="382" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="365" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="400" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="387" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="370" />
       <source>Save Diagram</source>
       <translation>Gravar Diagrama</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="367" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="372" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="383" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="388" />
       <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="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="401" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -87881,7 +87989,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7688" />
+      <location filename="../UI/UserInterface.py" line="7687" />
       <location filename="../UI/UserInterface.py" line="1934" />
       <location filename="../UI/UserInterface.py" line="1927" />
       <source>Load session</source>
@@ -89168,8 +89276,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7373" />
-      <location filename="../UI/UserInterface.py" line="7354" />
+      <location filename="../UI/UserInterface.py" line="7372" />
+      <location filename="../UI/UserInterface.py" line="7353" />
       <location filename="../UI/UserInterface.py" line="3358" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exportar Atalhos de Teclado</translation>
@@ -89190,7 +89298,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7392" />
+      <location filename="../UI/UserInterface.py" line="7391" />
       <location filename="../UI/UserInterface.py" line="3377" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importar Atalhos de Teclado</translation>
@@ -89906,185 +90014,185 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6609" />
+      <location filename="../UI/UserInterface.py" line="6610" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Processo '{0}' saiu.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6896" />
-      <location filename="../UI/UserInterface.py" line="6834" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6716" />
-      <location filename="../UI/UserInterface.py" line="6652" />
-      <source>Documentation Missing</source>
-      <translation>Falta a Documentação</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6897" />
       <location filename="../UI/UserInterface.py" line="6835" />
       <location filename="../UI/UserInterface.py" line="6791" />
       <location filename="../UI/UserInterface.py" line="6717" />
       <location filename="../UI/UserInterface.py" line="6653" />
+      <source>Documentation Missing</source>
+      <translation>Falta a Documentação</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6898" />
+      <location filename="../UI/UserInterface.py" line="6836" />
+      <location filename="../UI/UserInterface.py" line="6792" />
+      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6654" />
       <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="6878" />
-      <location filename="../UI/UserInterface.py" line="6760" />
-      <source>Documentation</source>
-      <translation>Documentação</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6761" />
-      <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="6879" />
+      <location filename="../UI/UserInterface.py" line="6761" />
+      <source>Documentation</source>
+      <translation>Documentação</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6762" />
+      <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="6880" />
       <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="7056" />
+      <location filename="../UI/UserInterface.py" line="6993" />
+      <source>Start Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6994" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7057" />
-      <location filename="../UI/UserInterface.py" line="6994" />
-      <source>Start Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6995" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7058" />
       <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="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Open Browser</source>
       <translation>Abrir Navegador</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <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="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7374" />
+      <location filename="../UI/UserInterface.py" line="7373" />
       <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="7394" />
+      <location filename="../UI/UserInterface.py" line="7393" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7576" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7577" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7578" />
       <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
+      <location filename="../UI/UserInterface.py" line="7620" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7649" />
-      <location filename="../UI/UserInterface.py" line="7622" />
-      <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="7648" />
+      <location filename="../UI/UserInterface.py" line="7621" />
+      <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="7647" />
       <source>Read session</source>
       <translation>Sessão de leitura</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7665" />
+      <location filename="../UI/UserInterface.py" line="7664" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7667" />
+      <location filename="../UI/UserInterface.py" line="7666" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7690" />
+      <location filename="../UI/UserInterface.py" line="7689" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7735" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7736" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7737" />
       <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="8106" />
+      <source>Drop Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8107" />
-      <source>Drop Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8108" />
       <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="8288" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8289" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8290" />
       <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="8346" />
+      <location filename="../UI/UserInterface.py" line="8333" />
+      <source>First time usage</source>
+      <translation>Usado a primeira vez</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8334" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8347" />
-      <location filename="../UI/UserInterface.py" line="8334" />
-      <source>First time usage</source>
-      <translation>Usado a primeira vez</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8335" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8348" />
       <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="8371" />
+      <location filename="../UI/UserInterface.py" line="8370" />
       <source>Select Workspace Directory</source>
       <translation>Selecionar o Diretório de Trabalho</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8530" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8531" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8532" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -90169,7 +90277,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="989" />
+      <location filename="../Utilities/__init__.py" line="991" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Pode usar códigos % como espaços reservados dentro da string. Os códigos suportados são:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;coluna do cursor do editor atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directório do editor atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;nome do ficheiro do editor atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;diretório home do usuário atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;linha do cursor do editor atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;rota do projeto atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;texto selecionado do editor atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;nome de usuário do usuário atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;sinal de percentagem&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -91265,663 +91373,663 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="681" />
-      <location filename="../QScintilla/ShellWindow.py" line="302" />
+      <location filename="../QScintilla/ShellWindow.py" line="310" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1032" />
-      <location filename="../QScintilla/ShellWindow.py" line="329" />
+      <location filename="../QScintilla/ShellWindow.py" line="337" />
       <source>Cut</source>
       <translation>Cortar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1034" />
-      <location filename="../QScintilla/ShellWindow.py" line="331" />
+      <location filename="../QScintilla/ShellWindow.py" line="339" />
       <source>Cu&amp;t</source>
       <translation>Cor&amp;tar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1036" />
-      <location filename="../QScintilla/ShellWindow.py" line="333" />
+      <location filename="../QScintilla/ShellWindow.py" line="341" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1039" />
-      <location filename="../QScintilla/ShellWindow.py" line="336" />
+      <location filename="../QScintilla/ShellWindow.py" line="344" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1045" />
-      <location filename="../QScintilla/ShellWindow.py" line="342" />
+      <location filename="../QScintilla/ShellWindow.py" line="350" />
       <source>Cut the selection</source>
       <translation>Cortar a seleção</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1059" />
-      <location filename="../QScintilla/ShellWindow.py" line="351" />
+      <location filename="../QScintilla/ShellWindow.py" line="359" />
       <source>Copy</source>
       <translation>Copiar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1061" />
-      <location filename="../QScintilla/ShellWindow.py" line="353" />
+      <location filename="../QScintilla/ShellWindow.py" line="361" />
       <source>&amp;Copy</source>
       <translation>&amp;Copiar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1063" />
-      <location filename="../QScintilla/ShellWindow.py" line="355" />
+      <location filename="../QScintilla/ShellWindow.py" line="363" />
       <source>Ctrl+C</source>
       <comment>Edit|Copy</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1066" />
-      <location filename="../QScintilla/ShellWindow.py" line="358" />
+      <location filename="../QScintilla/ShellWindow.py" line="366" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1072" />
-      <location filename="../QScintilla/ShellWindow.py" line="364" />
+      <location filename="../QScintilla/ShellWindow.py" line="372" />
       <source>Copy the selection</source>
       <translation>Copiar a seleção</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1086" />
-      <location filename="../QScintilla/ShellWindow.py" line="373" />
+      <location filename="../QScintilla/ShellWindow.py" line="381" />
       <source>Paste</source>
       <translation>Colar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1088" />
-      <location filename="../QScintilla/ShellWindow.py" line="375" />
+      <location filename="../QScintilla/ShellWindow.py" line="383" />
       <source>&amp;Paste</source>
       <translation>Co&amp;lar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1090" />
-      <location filename="../QScintilla/ShellWindow.py" line="377" />
+      <location filename="../QScintilla/ShellWindow.py" line="385" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1093" />
-      <location filename="../QScintilla/ShellWindow.py" line="380" />
+      <location filename="../QScintilla/ShellWindow.py" line="388" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1099" />
-      <location filename="../QScintilla/ShellWindow.py" line="386" />
+      <location filename="../QScintilla/ShellWindow.py" line="394" />
       <source>Paste the last cut/copied text</source>
       <translation>Colar o último texto cortado/copiado</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1115" />
       <location filename="../ViewManager/ViewManager.py" line="1113" />
-      <location filename="../QScintilla/ShellWindow.py" line="400" />
-      <location filename="../QScintilla/ShellWindow.py" line="398" />
+      <location filename="../QScintilla/ShellWindow.py" line="408" />
+      <location filename="../QScintilla/ShellWindow.py" line="406" />
       <source>Clear</source>
       <translation>Limpar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1117" />
-      <location filename="../QScintilla/ShellWindow.py" line="402" />
+      <location filename="../QScintilla/ShellWindow.py" line="410" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1124" />
-      <location filename="../QScintilla/ShellWindow.py" line="409" />
+      <location filename="../QScintilla/ShellWindow.py" line="417" />
       <source>Clear all text</source>
       <translation>Limpar todo o texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
-      <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/ShellWindow.py" line="435" />
-      <location filename="../QScintilla/ShellWindow.py" line="434" />
+      <location filename="../QScintilla/MiniEditor.py" line="1681" />
+      <location filename="../QScintilla/MiniEditor.py" line="1680" />
+      <location filename="../QScintilla/ShellWindow.py" line="439" />
+      <location filename="../QScintilla/ShellWindow.py" line="438" />
       <source>Delete current line</source>
       <translation>Apagar a linha atual</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1686" />
-      <location filename="../QScintilla/ShellWindow.py" line="436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1682" />
+      <location filename="../QScintilla/ShellWindow.py" line="440" />
       <source>Ctrl+Shift+L</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
-      <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/ShellWindow.py" line="447" />
-      <location filename="../QScintilla/ShellWindow.py" line="446" />
+      <location filename="../QScintilla/MiniEditor.py" line="1203" />
+      <location filename="../QScintilla/MiniEditor.py" line="1202" />
+      <location filename="../QScintilla/ShellWindow.py" line="451" />
+      <location filename="../QScintilla/ShellWindow.py" line="450" />
       <source>Indent one level</source>
       <translation>Indentar um nivel</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1208" />
-      <location filename="../QScintilla/ShellWindow.py" line="448" />
+      <location filename="../QScintilla/MiniEditor.py" line="1204" />
+      <location filename="../QScintilla/ShellWindow.py" line="452" />
       <source>Tab</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
-      <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/ShellWindow.py" line="459" />
-      <location filename="../QScintilla/ShellWindow.py" line="458" />
+      <location filename="../QScintilla/MiniEditor.py" line="1669" />
+      <location filename="../QScintilla/MiniEditor.py" line="1668" />
+      <location filename="../QScintilla/ShellWindow.py" line="463" />
+      <location filename="../QScintilla/ShellWindow.py" line="462" />
       <source>Insert new line</source>
       <translation>Inserir linha nova</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
-      <location filename="../QScintilla/ShellWindow.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1670" />
+      <location filename="../QScintilla/ShellWindow.py" line="464" />
       <source>Return</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1675" />
-      <location filename="../QScintilla/ShellWindow.py" line="461" />
+      <location filename="../QScintilla/MiniEditor.py" line="1671" />
+      <location filename="../QScintilla/ShellWindow.py" line="465" />
       <source>Enter</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
-      <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/ShellWindow.py" line="471" />
-      <location filename="../QScintilla/ShellWindow.py" line="470" />
+      <location filename="../QScintilla/MiniEditor.py" line="1555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1554" />
+      <location filename="../QScintilla/ShellWindow.py" line="475" />
+      <location filename="../QScintilla/ShellWindow.py" line="474" />
       <source>Delete previous character</source>
       <translation>Apagar o caratér anterior</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1560" />
-      <location filename="../QScintilla/ShellWindow.py" line="472" />
+      <location filename="../QScintilla/MiniEditor.py" line="1556" />
+      <location filename="../QScintilla/ShellWindow.py" line="476" />
       <source>Backspace</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1567" />
-      <location filename="../QScintilla/ShellWindow.py" line="479" />
+      <location filename="../QScintilla/MiniEditor.py" line="1563" />
+      <location filename="../QScintilla/ShellWindow.py" line="483" />
       <source>Meta+H</source>
       <translation>Meta+H</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1572" />
-      <location filename="../QScintilla/ShellWindow.py" line="484" />
+      <location filename="../QScintilla/MiniEditor.py" line="1568" />
+      <location filename="../QScintilla/ShellWindow.py" line="488" />
       <source>Shift+Backspace</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
-      <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/ShellWindow.py" line="493" />
-      <location filename="../QScintilla/ShellWindow.py" line="492" />
+      <location filename="../QScintilla/MiniEditor.py" line="1593" />
+      <location filename="../QScintilla/MiniEditor.py" line="1592" />
+      <location filename="../QScintilla/ShellWindow.py" line="497" />
+      <location filename="../QScintilla/ShellWindow.py" line="496" />
       <source>Delete current character</source>
       <translation>Apagar o caratér atual</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1598" />
-      <location filename="../QScintilla/ShellWindow.py" line="494" />
+      <location filename="../QScintilla/MiniEditor.py" line="1594" />
+      <location filename="../QScintilla/ShellWindow.py" line="498" />
       <source>Del</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1605" />
-      <location filename="../QScintilla/ShellWindow.py" line="501" />
+      <location filename="../QScintilla/MiniEditor.py" line="1601" />
+      <location filename="../QScintilla/ShellWindow.py" line="505" />
       <source>Meta+D</source>
       <translation>Meta+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
-      <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/ShellWindow.py" line="509" />
-      <location filename="../QScintilla/ShellWindow.py" line="508" />
+      <location filename="../QScintilla/MiniEditor.py" line="1609" />
+      <location filename="../QScintilla/MiniEditor.py" line="1608" />
+      <location filename="../QScintilla/ShellWindow.py" line="513" />
+      <location filename="../QScintilla/ShellWindow.py" line="512" />
       <source>Delete word to left</source>
       <translation>Apagar palavra à esquerda</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1614" />
-      <location filename="../QScintilla/ShellWindow.py" line="510" />
+      <location filename="../QScintilla/MiniEditor.py" line="1610" />
+      <location filename="../QScintilla/ShellWindow.py" line="514" />
       <source>Ctrl+Backspace</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
-      <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/ShellWindow.py" line="521" />
-      <location filename="../QScintilla/ShellWindow.py" line="520" />
+      <location filename="../QScintilla/MiniEditor.py" line="1621" />
+      <location filename="../QScintilla/MiniEditor.py" line="1620" />
+      <location filename="../QScintilla/ShellWindow.py" line="525" />
+      <location filename="../QScintilla/ShellWindow.py" line="524" />
       <source>Delete word to right</source>
       <translation>Apagar palavra à direita</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1626" />
-      <location filename="../QScintilla/ShellWindow.py" line="522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1622" />
+      <location filename="../QScintilla/ShellWindow.py" line="526" />
       <source>Ctrl+Del</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
-      <location filename="../QScintilla/MiniEditor.py" line="1637" />
-      <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/ShellWindow.py" line="533" />
-      <location filename="../QScintilla/ShellWindow.py" line="532" />
+      <location filename="../QScintilla/MiniEditor.py" line="1633" />
+      <location filename="../QScintilla/MiniEditor.py" line="1632" />
+      <location filename="../QScintilla/ShellWindow.py" line="537" />
+      <location filename="../QScintilla/ShellWindow.py" line="536" />
       <source>Delete line to left</source>
       <translation>Apagar a linha à esquerda</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1639" />
-      <location filename="../QScintilla/ShellWindow.py" line="535" />
+      <location filename="../QScintilla/MiniEditor.py" line="1635" />
+      <location filename="../QScintilla/ShellWindow.py" line="539" />
       <source>Ctrl+Shift+Backspace</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
-      <location filename="../QScintilla/MiniEditor.py" line="1651" />
-      <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/ShellWindow.py" line="547" />
-      <location filename="../QScintilla/ShellWindow.py" line="546" />
+      <location filename="../QScintilla/MiniEditor.py" line="1647" />
+      <location filename="../QScintilla/MiniEditor.py" line="1646" />
+      <location filename="../QScintilla/ShellWindow.py" line="551" />
+      <location filename="../QScintilla/ShellWindow.py" line="550" />
       <source>Delete line to right</source>
       <translation>Apagar a linha à direita</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1659" />
-      <location filename="../QScintilla/ShellWindow.py" line="555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1655" />
+      <location filename="../QScintilla/ShellWindow.py" line="559" />
       <source>Meta+K</source>
       <translation>Meta+K</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1664" />
-      <location filename="../QScintilla/ShellWindow.py" line="560" />
+      <location filename="../QScintilla/MiniEditor.py" line="1660" />
+      <location filename="../QScintilla/ShellWindow.py" line="564" />
       <source>Ctrl+Shift+Del</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
-      <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/ShellWindow.py" line="569" />
-      <location filename="../QScintilla/ShellWindow.py" line="568" />
+      <location filename="../QScintilla/MiniEditor.py" line="891" />
+      <location filename="../QScintilla/MiniEditor.py" line="890" />
+      <location filename="../QScintilla/ShellWindow.py" line="573" />
+      <location filename="../QScintilla/ShellWindow.py" line="572" />
       <source>Move left one character</source>
       <translation>Mover um caráter à esquerda</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="896" />
-      <location filename="../QScintilla/ShellWindow.py" line="570" />
+      <location filename="../QScintilla/MiniEditor.py" line="892" />
+      <location filename="../QScintilla/ShellWindow.py" line="574" />
       <source>Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="904" />
-      <location filename="../QScintilla/ShellWindow.py" line="578" />
+      <location filename="../QScintilla/MiniEditor.py" line="900" />
+      <location filename="../QScintilla/ShellWindow.py" line="582" />
       <source>Meta+B</source>
       <translation>Meta+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
-      <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/ShellWindow.py" line="585" />
-      <location filename="../QScintilla/ShellWindow.py" line="584" />
+      <location filename="../QScintilla/MiniEditor.py" line="907" />
+      <location filename="../QScintilla/MiniEditor.py" line="906" />
+      <location filename="../QScintilla/ShellWindow.py" line="589" />
+      <location filename="../QScintilla/ShellWindow.py" line="588" />
       <source>Move right one character</source>
       <translation>Mover um caráter à direita</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="912" />
-      <location filename="../QScintilla/ShellWindow.py" line="586" />
+      <location filename="../QScintilla/MiniEditor.py" line="908" />
+      <location filename="../QScintilla/ShellWindow.py" line="590" />
       <source>Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="919" />
-      <location filename="../QScintilla/ShellWindow.py" line="593" />
+      <location filename="../QScintilla/MiniEditor.py" line="915" />
+      <location filename="../QScintilla/ShellWindow.py" line="597" />
       <source>Meta+F</source>
       <translation>Meta+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="991" />
-      <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/ShellWindow.py" line="601" />
-      <location filename="../QScintilla/ShellWindow.py" line="600" />
+      <location filename="../QScintilla/MiniEditor.py" line="987" />
+      <location filename="../QScintilla/MiniEditor.py" line="986" />
+      <location filename="../QScintilla/ShellWindow.py" line="605" />
+      <location filename="../QScintilla/ShellWindow.py" line="604" />
       <source>Move left one word</source>
       <translation>Mover uma palavra à esquerda</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="999" />
-      <location filename="../QScintilla/MiniEditor.py" line="967" />
-      <location filename="../QScintilla/ShellWindow.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="995" />
+      <location filename="../QScintilla/MiniEditor.py" line="963" />
+      <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Alt+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1059" />
-      <location filename="../QScintilla/MiniEditor.py" line="1003" />
-      <location filename="../QScintilla/ShellWindow.py" line="613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1055" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/ShellWindow.py" line="617" />
       <source>Ctrl+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
-      <location filename="../QScintilla/MiniEditor.py" line="1011" />
-      <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/ShellWindow.py" line="621" />
-      <location filename="../QScintilla/ShellWindow.py" line="620" />
+      <location filename="../QScintilla/MiniEditor.py" line="1007" />
+      <location filename="../QScintilla/MiniEditor.py" line="1006" />
+      <location filename="../QScintilla/ShellWindow.py" line="625" />
+      <location filename="../QScintilla/ShellWindow.py" line="624" />
       <source>Move right one word</source>
       <translation>Mover uma palavra à direita</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="1023" />
-      <location filename="../QScintilla/ShellWindow.py" line="629" />
+      <location filename="../QScintilla/MiniEditor.py" line="1809" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/ShellWindow.py" line="633" />
       <source>Ctrl+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1033" />
-      <location filename="../QScintilla/MiniEditor.py" line="1030" />
-      <location filename="../QScintilla/ShellWindow.py" line="639" />
-      <location filename="../QScintilla/ShellWindow.py" line="636" />
+      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1026" />
+      <location filename="../QScintilla/ShellWindow.py" line="643" />
+      <location filename="../QScintilla/ShellWindow.py" line="640" />
       <source>Move to first visible character in document line</source>
       <translation>Mover ao primeiro caráter vísivel da linha do documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2074" />
-      <location filename="../QScintilla/MiniEditor.py" line="1043" />
-      <location filename="../QScintilla/ShellWindow.py" line="649" />
+      <location filename="../QScintilla/MiniEditor.py" line="2070" />
+      <location filename="../QScintilla/MiniEditor.py" line="1039" />
+      <location filename="../QScintilla/ShellWindow.py" line="653" />
       <source>Home</source>
       <translation type="unfinished">Página Inicial</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
-      <location filename="../QScintilla/MiniEditor.py" line="1071" />
-      <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/ShellWindow.py" line="657" />
-      <location filename="../QScintilla/ShellWindow.py" line="656" />
+      <location filename="../QScintilla/MiniEditor.py" line="1067" />
+      <location filename="../QScintilla/MiniEditor.py" line="1066" />
+      <location filename="../QScintilla/ShellWindow.py" line="661" />
+      <location filename="../QScintilla/ShellWindow.py" line="660" />
       <source>Move to end of document line</source>
       <translation>Mover ao fim da linha do documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1079" />
-      <location filename="../QScintilla/ShellWindow.py" line="665" />
+      <location filename="../QScintilla/MiniEditor.py" line="1075" />
+      <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>Meta+E</source>
       <translation type="unfinished">Meta+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1083" />
-      <location filename="../QScintilla/ShellWindow.py" line="669" />
+      <location filename="../QScintilla/MiniEditor.py" line="2087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
+      <location filename="../QScintilla/ShellWindow.py" line="673" />
       <source>End</source>
       <translation type="unfinished">Fim</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
-      <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/ShellWindow.py" line="677" />
-      <location filename="../QScintilla/ShellWindow.py" line="676" />
+      <location filename="../QScintilla/MiniEditor.py" line="923" />
+      <location filename="../QScintilla/MiniEditor.py" line="922" />
+      <location filename="../QScintilla/ShellWindow.py" line="681" />
+      <location filename="../QScintilla/ShellWindow.py" line="680" />
       <source>Move up one line</source>
       <translation>Mover uma linha acima</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="928" />
-      <location filename="../QScintilla/ShellWindow.py" line="678" />
+      <location filename="../QScintilla/MiniEditor.py" line="924" />
+      <location filename="../QScintilla/ShellWindow.py" line="682" />
       <source>Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="935" />
-      <location filename="../QScintilla/ShellWindow.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="689" />
       <source>Meta+P</source>
       <translation type="unfinished">Meta+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
-      <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/ShellWindow.py" line="693" />
-      <location filename="../QScintilla/ShellWindow.py" line="692" />
+      <location filename="../QScintilla/MiniEditor.py" line="939" />
+      <location filename="../QScintilla/MiniEditor.py" line="938" />
+      <location filename="../QScintilla/ShellWindow.py" line="697" />
+      <location filename="../QScintilla/ShellWindow.py" line="696" />
       <source>Move down one line</source>
       <translation>Mover uma linha abaixo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="944" />
-      <location filename="../QScintilla/ShellWindow.py" line="694" />
+      <location filename="../QScintilla/MiniEditor.py" line="940" />
+      <location filename="../QScintilla/ShellWindow.py" line="698" />
       <source>Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="951" />
-      <location filename="../QScintilla/ShellWindow.py" line="701" />
+      <location filename="../QScintilla/MiniEditor.py" line="947" />
+      <location filename="../QScintilla/ShellWindow.py" line="705" />
       <source>Meta+N</source>
       <translation type="unfinished">Meta+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1195" />
-      <location filename="../QScintilla/MiniEditor.py" line="1092" />
-      <location filename="../QScintilla/ShellWindow.py" line="710" />
+      <location filename="../QScintilla/MiniEditor.py" line="1191" />
+      <location filename="../QScintilla/MiniEditor.py" line="1088" />
+      <location filename="../QScintilla/ShellWindow.py" line="714" />
       <source>Ctrl+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1175" />
-      <location filename="../QScintilla/MiniEditor.py" line="1104" />
-      <location filename="../QScintilla/ShellWindow.py" line="722" />
+      <location filename="../QScintilla/MiniEditor.py" line="1171" />
+      <location filename="../QScintilla/MiniEditor.py" line="1100" />
+      <location filename="../QScintilla/ShellWindow.py" line="726" />
       <source>Ctrl+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
-      <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/ShellWindow.py" line="733" />
-      <location filename="../QScintilla/ShellWindow.py" line="732" />
+      <location filename="../QScintilla/MiniEditor.py" line="1135" />
+      <location filename="../QScintilla/MiniEditor.py" line="1134" />
+      <location filename="../QScintilla/ShellWindow.py" line="737" />
+      <location filename="../QScintilla/ShellWindow.py" line="736" />
       <source>Move up one page</source>
       <translation>Mover uma página acima</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1140" />
-      <location filename="../QScintilla/ShellWindow.py" line="734" />
+      <location filename="../QScintilla/MiniEditor.py" line="1136" />
+      <location filename="../QScintilla/ShellWindow.py" line="738" />
       <source>PgUp</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/ShellWindow.py" line="745" />
-      <location filename="../QScintilla/ShellWindow.py" line="744" />
+      <location filename="../QScintilla/MiniEditor.py" line="1147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1146" />
+      <location filename="../QScintilla/ShellWindow.py" line="749" />
+      <location filename="../QScintilla/ShellWindow.py" line="748" />
       <source>Move down one page</source>
       <translation>Mover uma pagina abaixo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1152" />
-      <location filename="../QScintilla/ShellWindow.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="1148" />
+      <location filename="../QScintilla/ShellWindow.py" line="750" />
       <source>PgDown</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1159" />
-      <location filename="../QScintilla/ShellWindow.py" line="753" />
+      <location filename="../QScintilla/MiniEditor.py" line="1155" />
+      <location filename="../QScintilla/ShellWindow.py" line="757" />
       <source>Meta+V</source>
       <translation type="unfinished">Meta+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
-      <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/ShellWindow.py" line="761" />
-      <location filename="../QScintilla/ShellWindow.py" line="760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1855" />
+      <location filename="../QScintilla/MiniEditor.py" line="1854" />
+      <location filename="../QScintilla/ShellWindow.py" line="765" />
+      <location filename="../QScintilla/ShellWindow.py" line="764" />
       <source>Escape</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1860" />
-      <location filename="../QScintilla/ShellWindow.py" line="762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1856" />
+      <location filename="../QScintilla/ShellWindow.py" line="766" />
       <source>Esc</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1233" />
-      <location filename="../QScintilla/MiniEditor.py" line="1230" />
-      <location filename="../QScintilla/ShellWindow.py" line="775" />
-      <location filename="../QScintilla/ShellWindow.py" line="772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1226" />
+      <location filename="../QScintilla/ShellWindow.py" line="779" />
+      <location filename="../QScintilla/ShellWindow.py" line="776" />
       <source>Extend selection left one character</source>
       <translation>Estende a seleção um caráter à esquerda</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1236" />
-      <location filename="../QScintilla/ShellWindow.py" line="778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1232" />
+      <location filename="../QScintilla/ShellWindow.py" line="782" />
       <source>Shift+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1243" />
-      <location filename="../QScintilla/ShellWindow.py" line="785" />
+      <location filename="../QScintilla/MiniEditor.py" line="1239" />
+      <location filename="../QScintilla/ShellWindow.py" line="789" />
       <source>Meta+Shift+B</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1253" />
-      <location filename="../QScintilla/MiniEditor.py" line="1250" />
-      <location filename="../QScintilla/ShellWindow.py" line="795" />
-      <location filename="../QScintilla/ShellWindow.py" line="792" />
+      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1246" />
+      <location filename="../QScintilla/ShellWindow.py" line="799" />
+      <location filename="../QScintilla/ShellWindow.py" line="796" />
       <source>Extend selection right one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1256" />
-      <location filename="../QScintilla/ShellWindow.py" line="798" />
+      <location filename="../QScintilla/MiniEditor.py" line="1252" />
+      <location filename="../QScintilla/ShellWindow.py" line="802" />
       <source>Shift+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1263" />
-      <location filename="../QScintilla/ShellWindow.py" line="805" />
+      <location filename="../QScintilla/MiniEditor.py" line="1259" />
+      <location filename="../QScintilla/ShellWindow.py" line="809" />
       <source>Meta+Shift+F</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
-      <location filename="../QScintilla/MiniEditor.py" line="1347" />
-      <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/ShellWindow.py" line="813" />
-      <location filename="../QScintilla/ShellWindow.py" line="812" />
+      <location filename="../QScintilla/MiniEditor.py" line="1343" />
+      <location filename="../QScintilla/MiniEditor.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="817" />
+      <location filename="../QScintilla/ShellWindow.py" line="816" />
       <source>Extend selection left one word</source>
       <translation>Estende a seleção uma palavra à esquerda</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1356" />
-      <location filename="../QScintilla/MiniEditor.py" line="1316" />
-      <location filename="../QScintilla/ShellWindow.py" line="822" />
+      <location filename="../QScintilla/MiniEditor.py" line="1352" />
+      <location filename="../QScintilla/MiniEditor.py" line="1312" />
+      <location filename="../QScintilla/ShellWindow.py" line="826" />
       <source>Alt+Shift+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2277" />
-      <location filename="../QScintilla/MiniEditor.py" line="1362" />
-      <location filename="../QScintilla/ShellWindow.py" line="828" />
+      <location filename="../QScintilla/MiniEditor.py" line="2273" />
+      <location filename="../QScintilla/MiniEditor.py" line="1358" />
+      <location filename="../QScintilla/ShellWindow.py" line="832" />
       <source>Ctrl+Shift+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1373" />
-      <location filename="../QScintilla/MiniEditor.py" line="1370" />
-      <location filename="../QScintilla/ShellWindow.py" line="839" />
-      <location filename="../QScintilla/ShellWindow.py" line="836" />
+      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1366" />
+      <location filename="../QScintilla/ShellWindow.py" line="843" />
+      <location filename="../QScintilla/ShellWindow.py" line="840" />
       <source>Extend selection right one word</source>
       <translation type="unfinished" />
     </message>
@@ -91929,60 +92037,60 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1384" />
-      <location filename="../QScintilla/MiniEditor.py" line="1338" />
-      <location filename="../QScintilla/ShellWindow.py" line="850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1380" />
+      <location filename="../QScintilla/MiniEditor.py" line="1334" />
+      <location filename="../QScintilla/ShellWindow.py" line="854" />
       <source>Alt+Shift+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1838" />
-      <location filename="../QScintilla/MiniEditor.py" line="1390" />
-      <location filename="../QScintilla/ShellWindow.py" line="856" />
+      <location filename="../QScintilla/MiniEditor.py" line="1834" />
+      <location filename="../QScintilla/MiniEditor.py" line="1386" />
+      <location filename="../QScintilla/ShellWindow.py" line="860" />
       <source>Ctrl+Shift+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1402" />
       <location filename="../QScintilla/MiniEditor.py" line="1398" />
+      <location filename="../QScintilla/MiniEditor.py" line="1394" />
+      <location filename="../QScintilla/ShellWindow.py" line="872" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
-      <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1413" />
-      <location filename="../QScintilla/ShellWindow.py" line="879" />
+      <location filename="../QScintilla/MiniEditor.py" line="1409" />
+      <location filename="../QScintilla/ShellWindow.py" line="883" />
       <source>Shift+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1423" />
-      <location filename="../QScintilla/MiniEditor.py" line="1420" />
-      <location filename="../QScintilla/ShellWindow.py" line="889" />
-      <location filename="../QScintilla/ShellWindow.py" line="886" />
+      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1416" />
+      <location filename="../QScintilla/ShellWindow.py" line="893" />
+      <location filename="../QScintilla/ShellWindow.py" line="890" />
       <source>Extend selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1433" />
-      <location filename="../QScintilla/ShellWindow.py" line="899" />
+      <location filename="../QScintilla/MiniEditor.py" line="1429" />
+      <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Meta+Shift+E</source>
       <translation>Meta+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1437" />
-      <location filename="../QScintilla/ShellWindow.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
+      <location filename="../QScintilla/ShellWindow.py" line="907" />
       <source>Shift+End</source>
       <translation />
     </message>
@@ -91990,255 +92098,255 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2533" />
-      <location filename="../QScintilla/ShellWindow.py" line="917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2529" />
+      <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Search</source>
       <translation>Procurar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2535" />
-      <location filename="../QScintilla/ShellWindow.py" line="919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2531" />
+      <location filename="../QScintilla/ShellWindow.py" line="923" />
       <source>&amp;Search...</source>
       <translation>&amp;Procurar...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2537" />
-      <location filename="../QScintilla/ShellWindow.py" line="921" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
+      <location filename="../QScintilla/ShellWindow.py" line="925" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2544" />
-      <location filename="../QScintilla/ShellWindow.py" line="928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2540" />
+      <location filename="../QScintilla/ShellWindow.py" line="932" />
       <source>Search for a text</source>
       <translation>Procurar um texto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="935" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2559" />
-      <location filename="../QScintilla/ShellWindow.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="2555" />
+      <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>Search next</source>
       <translation>Procurar próximo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2561" />
-      <location filename="../QScintilla/ShellWindow.py" line="945" />
+      <location filename="../QScintilla/MiniEditor.py" line="2557" />
+      <location filename="../QScintilla/ShellWindow.py" line="949" />
       <source>Search &amp;next</source>
       <translation>Procurar &amp;próximo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2563" />
-      <location filename="../QScintilla/ShellWindow.py" line="947" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
+      <location filename="../QScintilla/ShellWindow.py" line="951" />
       <source>F3</source>
       <comment>Search|Search next</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2570" />
-      <location filename="../QScintilla/ShellWindow.py" line="954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2566" />
+      <location filename="../QScintilla/ShellWindow.py" line="958" />
       <source>Search next occurrence of text</source>
       <translation>Procurar a próxima ocurrência do texto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="957" />
+      <location filename="../QScintilla/ShellWindow.py" line="961" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2585" />
-      <location filename="../QScintilla/ShellWindow.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="2581" />
+      <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Search previous</source>
       <translation>Procurar anterior</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2587" />
-      <location filename="../QScintilla/ShellWindow.py" line="973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2583" />
+      <location filename="../QScintilla/ShellWindow.py" line="977" />
       <source>Search &amp;previous</source>
       <translation>Procurar &amp;anterior</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2589" />
-      <location filename="../QScintilla/ShellWindow.py" line="975" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
+      <location filename="../QScintilla/ShellWindow.py" line="979" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2598" />
-      <location filename="../QScintilla/ShellWindow.py" line="984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2594" />
+      <location filename="../QScintilla/ShellWindow.py" line="988" />
       <source>Search previous occurrence of text</source>
       <translation>Procurar ocurrência anterior do texto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="989" />
+      <location filename="../QScintilla/ShellWindow.py" line="993" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2758" />
-      <location filename="../QScintilla/ShellWindow.py" line="1010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2754" />
+      <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Zoom in</source>
       <translation>Aproximar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2760" />
-      <location filename="../QScintilla/ShellWindow.py" line="1012" />
+      <location filename="../QScintilla/MiniEditor.py" line="2756" />
+      <location filename="../QScintilla/ShellWindow.py" line="1016" />
       <source>Zoom &amp;in</source>
       <translation>Apro&amp;ximar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2762" />
-      <location filename="../QScintilla/ShellWindow.py" line="1014" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
+      <location filename="../QScintilla/ShellWindow.py" line="1018" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2765" />
-      <location filename="../QScintilla/ShellWindow.py" line="1017" />
+      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/ShellWindow.py" line="1021" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
       <translation>Aproximar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2771" />
-      <location filename="../QScintilla/ShellWindow.py" line="1023" />
+      <location filename="../QScintilla/MiniEditor.py" line="2767" />
+      <location filename="../QScintilla/ShellWindow.py" line="1027" />
       <source>Zoom in on the text</source>
       <translation>Aproximar no texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2774" />
-      <location filename="../QScintilla/ShellWindow.py" line="1026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/ShellWindow.py" line="1030" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aproximar&lt;/b&gt;&lt;p&gt;Aproximar no texto. Isto faz o texto mais grande.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2784" />
-      <location filename="../QScintilla/ShellWindow.py" line="1036" />
+      <location filename="../QScintilla/MiniEditor.py" line="2780" />
+      <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Zoom out</source>
       <translation>Afastar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2786" />
-      <location filename="../QScintilla/ShellWindow.py" line="1038" />
+      <location filename="../QScintilla/MiniEditor.py" line="2782" />
+      <location filename="../QScintilla/ShellWindow.py" line="1042" />
       <source>Zoom &amp;out</source>
       <translation>A&amp;fastar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2788" />
-      <location filename="../QScintilla/ShellWindow.py" line="1040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
+      <location filename="../QScintilla/ShellWindow.py" line="1044" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2791" />
-      <location filename="../QScintilla/ShellWindow.py" line="1043" />
+      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/ShellWindow.py" line="1047" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
       <translation>Afastar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2797" />
-      <location filename="../QScintilla/ShellWindow.py" line="1049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2793" />
+      <location filename="../QScintilla/ShellWindow.py" line="1053" />
       <source>Zoom out on the text</source>
       <translation>Afastar no texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2800" />
-      <location filename="../QScintilla/ShellWindow.py" line="1052" />
+      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/ShellWindow.py" line="1056" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Afastar&lt;/b&gt;&lt;p&gt;Afastar no texto. Isto faz o texto mais pequeno.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2810" />
-      <location filename="../QScintilla/ShellWindow.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="2806" />
+      <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Zoom reset</source>
       <translation>Restaurar zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2812" />
-      <location filename="../QScintilla/ShellWindow.py" line="1064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2808" />
+      <location filename="../QScintilla/ShellWindow.py" line="1068" />
       <source>Zoom &amp;reset</source>
       <translation>&amp;Restaurar zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2814" />
-      <location filename="../QScintilla/ShellWindow.py" line="1066" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
+      <location filename="../QScintilla/ShellWindow.py" line="1070" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
       <translation>Ctrl+0</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2821" />
-      <location filename="../QScintilla/ShellWindow.py" line="1073" />
+      <location filename="../QScintilla/MiniEditor.py" line="2817" />
+      <location filename="../QScintilla/ShellWindow.py" line="1077" />
       <source>Reset the zoom of the text</source>
       <translation>Reiniciar o zoom do texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2824" />
-      <location filename="../QScintilla/ShellWindow.py" line="1076" />
+      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/ShellWindow.py" line="1080" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2835" />
-      <location filename="../QScintilla/ShellWindow.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="2831" />
+      <location filename="../QScintilla/ShellWindow.py" line="1091" />
       <source>Zoom</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2837" />
-      <location filename="../QScintilla/ShellWindow.py" line="1089" />
+      <location filename="../QScintilla/MiniEditor.py" line="2833" />
+      <location filename="../QScintilla/ShellWindow.py" line="1093" />
       <source>&amp;Zoom</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2844" />
-      <location filename="../QScintilla/ShellWindow.py" line="1096" />
+      <location filename="../QScintilla/MiniEditor.py" line="2840" />
+      <location filename="../QScintilla/ShellWindow.py" line="1100" />
       <source>Zoom the text</source>
       <translation>Zoom no texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2847" />
-      <location filename="../QScintilla/ShellWindow.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/ShellWindow.py" line="1103" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -92252,977 +92360,977 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
-      <location filename="../QScintilla/MiniEditor.py" line="959" />
-      <location filename="../QScintilla/MiniEditor.py" line="958" />
+      <location filename="../QScintilla/MiniEditor.py" line="955" />
+      <location filename="../QScintilla/MiniEditor.py" line="954" />
       <source>Move left one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
-      <location filename="../QScintilla/MiniEditor.py" line="975" />
-      <location filename="../QScintilla/MiniEditor.py" line="974" />
+      <location filename="../QScintilla/MiniEditor.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="970" />
       <source>Move right one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2129" />
-      <location filename="../QScintilla/MiniEditor.py" line="1019" />
-      <location filename="../QScintilla/MiniEditor.py" line="983" />
+      <location filename="../QScintilla/MiniEditor.py" line="2125" />
+      <location filename="../QScintilla/MiniEditor.py" line="1015" />
+      <location filename="../QScintilla/MiniEditor.py" line="979" />
       <source>Alt+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
-      <location filename="../QScintilla/MiniEditor.py" line="1051" />
-      <location filename="../QScintilla/MiniEditor.py" line="1050" />
+      <location filename="../QScintilla/MiniEditor.py" line="1047" />
+      <location filename="../QScintilla/MiniEditor.py" line="1046" />
       <source>Move to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1063" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
       <source>Alt+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1090" />
+      <location filename="../QScintilla/MiniEditor.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1086" />
       <source>Scroll view down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
-      <location filename="../QScintilla/MiniEditor.py" line="1102" />
+      <location filename="../QScintilla/MiniEditor.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="1098" />
       <source>Scroll view up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
-      <location filename="../QScintilla/MiniEditor.py" line="1114" />
+      <location filename="../QScintilla/MiniEditor.py" line="1111" />
+      <location filename="../QScintilla/MiniEditor.py" line="1110" />
       <source>Move up one paragraph</source>
       <translation>Mover um parágrafo acima</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1116" />
+      <location filename="../QScintilla/MiniEditor.py" line="1112" />
       <source>Alt+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
-      <location filename="../QScintilla/MiniEditor.py" line="1126" />
+      <location filename="../QScintilla/MiniEditor.py" line="1123" />
+      <location filename="../QScintilla/MiniEditor.py" line="1122" />
       <source>Move down one paragraph</source>
       <translation>Mover um parágrafo abaixo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1128" />
+      <location filename="../QScintilla/MiniEditor.py" line="1124" />
       <source>Alt+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
-      <location filename="../QScintilla/MiniEditor.py" line="1167" />
-      <location filename="../QScintilla/MiniEditor.py" line="1166" />
+      <location filename="../QScintilla/MiniEditor.py" line="1163" />
+      <location filename="../QScintilla/MiniEditor.py" line="1162" />
       <source>Move to start of document</source>
       <translation>Mover ao princípio do documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1179" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
       <source>Ctrl+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
-      <location filename="../QScintilla/MiniEditor.py" line="1187" />
-      <location filename="../QScintilla/MiniEditor.py" line="1186" />
+      <location filename="../QScintilla/MiniEditor.py" line="1183" />
+      <location filename="../QScintilla/MiniEditor.py" line="1182" />
       <source>Move to end of document</source>
       <translation>Mover ao final do documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1199" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
       <source>Ctrl+End</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
-      <location filename="../QScintilla/MiniEditor.py" line="1218" />
+      <location filename="../QScintilla/MiniEditor.py" line="1215" />
+      <location filename="../QScintilla/MiniEditor.py" line="1214" />
       <source>Unindent one level</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1220" />
+      <location filename="../QScintilla/MiniEditor.py" line="1216" />
       <source>Shift+Tab</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
-      <location filename="../QScintilla/MiniEditor.py" line="1270" />
+      <location filename="../QScintilla/MiniEditor.py" line="1267" />
+      <location filename="../QScintilla/MiniEditor.py" line="1266" />
       <source>Extend selection up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1272" />
+      <location filename="../QScintilla/MiniEditor.py" line="1268" />
       <source>Shift+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1279" />
+      <location filename="../QScintilla/MiniEditor.py" line="1275" />
       <source>Meta+Shift+P</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
-      <location filename="../QScintilla/MiniEditor.py" line="1286" />
+      <location filename="../QScintilla/MiniEditor.py" line="1283" />
+      <location filename="../QScintilla/MiniEditor.py" line="1282" />
       <source>Extend selection down one line</source>
       <translation>Estende a seleção abaixo uma linha</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1288" />
+      <location filename="../QScintilla/MiniEditor.py" line="1284" />
       <source>Shift+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1291" />
       <source>Meta+Shift+N</source>
       <translation>Meta+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1305" />
-      <location filename="../QScintilla/MiniEditor.py" line="1302" />
+      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1298" />
       <source>Extend selection left one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1327" />
-      <location filename="../QScintilla/MiniEditor.py" line="1324" />
+      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1320" />
       <source>Extend selection right one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1447" />
-      <location filename="../QScintilla/MiniEditor.py" line="1444" />
+      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1440" />
       <source>Extend selection up one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1450" />
+      <location filename="../QScintilla/MiniEditor.py" line="1446" />
       <source>Alt+Shift+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1463" />
-      <location filename="../QScintilla/MiniEditor.py" line="1460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1456" />
       <source>Extend selection down one paragraph</source>
       <translation>Estende a seleção abaixo uma parágrafo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1466" />
+      <location filename="../QScintilla/MiniEditor.py" line="1462" />
       <source>Alt+Shift+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
-      <location filename="../QScintilla/MiniEditor.py" line="1476" />
+      <location filename="../QScintilla/MiniEditor.py" line="1473" />
+      <location filename="../QScintilla/MiniEditor.py" line="1472" />
       <source>Extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1478" />
+      <location filename="../QScintilla/MiniEditor.py" line="1474" />
       <source>Shift+PgUp</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
-      <location filename="../QScintilla/MiniEditor.py" line="1488" />
+      <location filename="../QScintilla/MiniEditor.py" line="1485" />
+      <location filename="../QScintilla/MiniEditor.py" line="1484" />
       <source>Extend selection down one page</source>
       <translation>Estende a seleção abaixo uma página</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1490" />
+      <location filename="../QScintilla/MiniEditor.py" line="1486" />
       <source>Shift+PgDown</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1497" />
+      <location filename="../QScintilla/MiniEditor.py" line="1493" />
       <source>Meta+Shift+V</source>
       <translation>Meta+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1507" />
-      <location filename="../QScintilla/MiniEditor.py" line="1504" />
+      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1500" />
       <source>Extend selection to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1517" />
+      <location filename="../QScintilla/MiniEditor.py" line="1513" />
       <source>Ctrl+Shift+Up</source>
       <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1518" />
       <source>Ctrl+Shift+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1533" />
-      <location filename="../QScintilla/MiniEditor.py" line="1530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1526" />
       <source>Extend selection to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1544" />
+      <location filename="../QScintilla/MiniEditor.py" line="1540" />
       <source>Ctrl+Shift+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1550" />
+      <location filename="../QScintilla/MiniEditor.py" line="1546" />
       <source>Ctrl+Shift+End</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1583" />
-      <location filename="../QScintilla/MiniEditor.py" line="1580" />
+      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1576" />
       <source>Delete previous character if not at start of line</source>
       <translation>Apagar o caratér anterior se não está ao princípio da linha</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
-      <location filename="../QScintilla/MiniEditor.py" line="1696" />
+      <location filename="../QScintilla/MiniEditor.py" line="1693" />
+      <location filename="../QScintilla/MiniEditor.py" line="1692" />
       <source>Duplicate current line</source>
       <translation>Duplicar a linha atual</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1698" />
+      <location filename="../QScintilla/MiniEditor.py" line="1694" />
       <source>Ctrl+D</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1711" />
-      <location filename="../QScintilla/MiniEditor.py" line="1708" />
+      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1704" />
       <source>Swap current and previous lines</source>
       <translation>Trocar a linha atual pela anterior</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1714" />
+      <location filename="../QScintilla/MiniEditor.py" line="1710" />
       <source>Ctrl+T</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
-      <location filename="../QScintilla/MiniEditor.py" line="1724" />
+      <location filename="../QScintilla/MiniEditor.py" line="1721" />
+      <location filename="../QScintilla/MiniEditor.py" line="1720" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1726" />
+      <location filename="../QScintilla/MiniEditor.py" line="1722" />
       <source>Meta+Alt+R</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
-      <location filename="../QScintilla/MiniEditor.py" line="1736" />
+      <location filename="../QScintilla/MiniEditor.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="1732" />
       <source>Cut current line</source>
       <translation>Cortar a linha atual</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1738" />
+      <location filename="../QScintilla/MiniEditor.py" line="1734" />
       <source>Alt+Shift+L</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="1748" />
+      <location filename="../QScintilla/MiniEditor.py" line="1745" />
+      <location filename="../QScintilla/MiniEditor.py" line="1744" />
       <source>Copy current line</source>
       <translation>Copiar a linha atual</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1750" />
+      <location filename="../QScintilla/MiniEditor.py" line="1746" />
       <source>Ctrl+Shift+T</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
-      <location filename="../QScintilla/MiniEditor.py" line="1760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1757" />
+      <location filename="../QScintilla/MiniEditor.py" line="1756" />
       <source>Toggle insert/overtype</source>
       <translation>Alternar inserir/sobreescrever</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1758" />
       <source>Ins</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1775" />
-      <location filename="../QScintilla/MiniEditor.py" line="1772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1768" />
       <source>Convert selection to lower case</source>
       <translation>Convertir a seleção para minúsculas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1774" />
       <source>Alt+Shift+U</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1791" />
-      <location filename="../QScintilla/MiniEditor.py" line="1788" />
+      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1784" />
       <source>Convert selection to upper case</source>
       <translation>Convertir a seleção para maiúsculas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1794" />
+      <location filename="../QScintilla/MiniEditor.py" line="1790" />
       <source>Ctrl+Shift+U</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
-      <location filename="../QScintilla/MiniEditor.py" line="1805" />
-      <location filename="../QScintilla/MiniEditor.py" line="1804" />
+      <location filename="../QScintilla/MiniEditor.py" line="1801" />
+      <location filename="../QScintilla/MiniEditor.py" line="1800" />
       <source>Move to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1817" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
       <source>Alt+End</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1827" />
-      <location filename="../QScintilla/MiniEditor.py" line="1824" />
+      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1820" />
       <source>Extend selection to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
-      <location filename="../QScintilla/MiniEditor.py" line="1847" />
-      <location filename="../QScintilla/MiniEditor.py" line="1846" />
+      <location filename="../QScintilla/MiniEditor.py" line="1843" />
+      <location filename="../QScintilla/MiniEditor.py" line="1842" />
       <source>Formfeed</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1873" />
-      <location filename="../QScintilla/MiniEditor.py" line="1870" />
+      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1866" />
       <source>Extend rectangular selection down one line</source>
       <translation>Aumentar a seleção retangular uma linha abaixo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1876" />
+      <location filename="../QScintilla/MiniEditor.py" line="1872" />
       <source>Alt+Ctrl+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1884" />
+      <location filename="../QScintilla/MiniEditor.py" line="1880" />
       <source>Meta+Alt+Shift+N</source>
       <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1895" />
-      <location filename="../QScintilla/MiniEditor.py" line="1892" />
+      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1888" />
       <source>Extend rectangular selection up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1898" />
+      <location filename="../QScintilla/MiniEditor.py" line="1894" />
       <source>Alt+Ctrl+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1906" />
+      <location filename="../QScintilla/MiniEditor.py" line="1902" />
       <source>Meta+Alt+Shift+P</source>
       <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1917" />
-      <location filename="../QScintilla/MiniEditor.py" line="1914" />
+      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1910" />
       <source>Extend rectangular selection left one character</source>
       <translation>Aumentar a seleção retangular um caratér à esquerda</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1920" />
+      <location filename="../QScintilla/MiniEditor.py" line="1916" />
       <source>Alt+Ctrl+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1928" />
+      <location filename="../QScintilla/MiniEditor.py" line="1924" />
       <source>Meta+Alt+Shift+B</source>
       <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1939" />
-      <location filename="../QScintilla/MiniEditor.py" line="1936" />
+      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1932" />
       <source>Extend rectangular selection right one character</source>
       <translation>Aumentar a seleção retangular um caratér à direita</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1942" />
+      <location filename="../QScintilla/MiniEditor.py" line="1938" />
       <source>Alt+Ctrl+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1950" />
+      <location filename="../QScintilla/MiniEditor.py" line="1946" />
       <source>Meta+Alt+Shift+F</source>
       <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1963" />
-      <location filename="../QScintilla/MiniEditor.py" line="1958" />
+      <location filename="../QScintilla/MiniEditor.py" line="1959" />
+      <location filename="../QScintilla/MiniEditor.py" line="1954" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1976" />
+      <location filename="../QScintilla/MiniEditor.py" line="1972" />
       <source>Alt+Shift+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1987" />
-      <location filename="../QScintilla/MiniEditor.py" line="1984" />
+      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1980" />
       <source>Extend rectangular selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1998" />
+      <location filename="../QScintilla/MiniEditor.py" line="1994" />
       <source>Meta+Alt+Shift+E</source>
       <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2003" />
+      <location filename="../QScintilla/MiniEditor.py" line="1999" />
       <source>Alt+Shift+End</source>
       <translation>Alt+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2013" />
-      <location filename="../QScintilla/MiniEditor.py" line="2010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2006" />
       <source>Extend rectangular selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2016" />
+      <location filename="../QScintilla/MiniEditor.py" line="2012" />
       <source>Alt+Shift+PgUp</source>
       <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2029" />
-      <location filename="../QScintilla/MiniEditor.py" line="2026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2022" />
       <source>Extend rectangular selection down one page</source>
       <translation>Aumentar a seleção retangular uma página abaixo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2032" />
+      <location filename="../QScintilla/MiniEditor.py" line="2028" />
       <source>Alt+Shift+PgDown</source>
       <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2036" />
       <source>Meta+Alt+Shift+V</source>
       <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="2048" />
+      <location filename="../QScintilla/MiniEditor.py" line="2511" />
+      <location filename="../QScintilla/MiniEditor.py" line="2510" />
+      <location filename="../QScintilla/MiniEditor.py" line="2045" />
+      <location filename="../QScintilla/MiniEditor.py" line="2044" />
       <source>Duplicate current selection</source>
       <translation>Duplicar a seleção atual</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2516" />
-      <location filename="../QScintilla/MiniEditor.py" line="2050" />
+      <location filename="../QScintilla/MiniEditor.py" line="2512" />
+      <location filename="../QScintilla/MiniEditor.py" line="2046" />
       <source>Ctrl+Shift+D</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2064" />
-      <location filename="../QScintilla/MiniEditor.py" line="2061" />
+      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2057" />
       <source>Scroll to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
-      <location filename="../QScintilla/MiniEditor.py" line="2083" />
-      <location filename="../QScintilla/MiniEditor.py" line="2082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2079" />
+      <location filename="../QScintilla/MiniEditor.py" line="2078" />
       <source>Scroll to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2102" />
-      <location filename="../QScintilla/MiniEditor.py" line="2099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2095" />
       <source>Scroll vertically to center current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2112" />
+      <location filename="../QScintilla/MiniEditor.py" line="2108" />
       <source>Meta+L</source>
       <translation>Meta+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
-      <location filename="../QScintilla/MiniEditor.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2120" />
+      <location filename="../QScintilla/MiniEditor.py" line="2117" />
+      <location filename="../QScintilla/MiniEditor.py" line="2116" />
       <source>Move to end of next word</source>
       <translation>Mover ao fim da palavra seguinte</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2140" />
-      <location filename="../QScintilla/MiniEditor.py" line="2137" />
+      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2133" />
       <source>Extend selection to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2163" />
-      <location filename="../QScintilla/MiniEditor.py" line="2160" />
+      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2156" />
       <source>Move to end of previous word</source>
       <translation>Mover ao fim da palavra anterior</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2180" />
-      <location filename="../QScintilla/MiniEditor.py" line="2177" />
+      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2173" />
       <source>Extend selection to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2197" />
-      <location filename="../QScintilla/MiniEditor.py" line="2194" />
+      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2190" />
       <source>Move to start of document line</source>
       <translation>Mover ao início da linha do documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2207" />
+      <location filename="../QScintilla/MiniEditor.py" line="2203" />
       <source>Meta+A</source>
       <translation>Meta+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2218" />
-      <location filename="../QScintilla/MiniEditor.py" line="2215" />
+      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2211" />
       <source>Extend selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2229" />
+      <location filename="../QScintilla/MiniEditor.py" line="2225" />
       <source>Meta+Shift+A</source>
       <translation>Meta+Shift+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2242" />
       <location filename="../QScintilla/MiniEditor.py" line="2238" />
+      <location filename="../QScintilla/MiniEditor.py" line="2234" />
       <source>Extend rectangular selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2254" />
+      <location filename="../QScintilla/MiniEditor.py" line="2250" />
       <source>Meta+Alt+Shift+A</source>
       <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2266" />
-      <location filename="../QScintilla/MiniEditor.py" line="2263" />
+      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2259" />
       <source>Extend selection to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2289" />
-      <location filename="../QScintilla/MiniEditor.py" line="2286" />
+      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2282" />
       <source>Move to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2307" />
       <location filename="../QScintilla/MiniEditor.py" line="2303" />
+      <location filename="../QScintilla/MiniEditor.py" line="2299" />
       <source>Extend selection to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2326" />
       <location filename="../QScintilla/MiniEditor.py" line="2322" />
+      <location filename="../QScintilla/MiniEditor.py" line="2318" />
       <source>Move to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2346" />
-      <location filename="../QScintilla/MiniEditor.py" line="2341" />
+      <location filename="../QScintilla/MiniEditor.py" line="2342" />
+      <location filename="../QScintilla/MiniEditor.py" line="2337" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2365" />
-      <location filename="../QScintilla/MiniEditor.py" line="2362" />
+      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2358" />
       <source>Move to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2382" />
-      <location filename="../QScintilla/MiniEditor.py" line="2379" />
+      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2375" />
       <source>Extend selection to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
-      <location filename="../QScintilla/MiniEditor.py" line="2397" />
-      <location filename="../QScintilla/MiniEditor.py" line="2396" />
+      <location filename="../QScintilla/MiniEditor.py" line="2393" />
+      <location filename="../QScintilla/MiniEditor.py" line="2392" />
       <source>Stuttered move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2412" />
-      <location filename="../QScintilla/MiniEditor.py" line="2409" />
+      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2405" />
       <source>Stuttered extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2429" />
-      <location filename="../QScintilla/MiniEditor.py" line="2426" />
+      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2422" />
       <source>Stuttered move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2446" />
-      <location filename="../QScintilla/MiniEditor.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2439" />
       <source>Stuttered extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2463" />
-      <location filename="../QScintilla/MiniEditor.py" line="2460" />
+      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2456" />
       <source>Delete right to end of next word</source>
       <translation>Apagar até ao final da proxima palavra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2473" />
+      <location filename="../QScintilla/MiniEditor.py" line="2469" />
       <source>Alt+Del</source>
       <translation>Alt+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2484" />
-      <location filename="../QScintilla/MiniEditor.py" line="2481" />
+      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2477" />
       <source>Move selected lines up one line</source>
       <translation>Mover as linhas selecionadas acima uma linha</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2501" />
-      <location filename="../QScintilla/MiniEditor.py" line="2498" />
+      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2494" />
       <source>Move selected lines down one line</source>
       <translation>Mover as linhas selecionadas abaixo uma linha</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2547" />
+      <location filename="../QScintilla/MiniEditor.py" line="2543" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2573" />
+      <location filename="../QScintilla/MiniEditor.py" line="2569" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2603" />
+      <location filename="../QScintilla/MiniEditor.py" line="2599" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2617" />
-      <location filename="../QScintilla/MiniEditor.py" line="2615" />
+      <location filename="../QScintilla/MiniEditor.py" line="2613" />
+      <location filename="../QScintilla/MiniEditor.py" line="2611" />
       <source>Clear search markers</source>
       <translation>Limpar marcadores de pesquisa</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2619" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2628" />
+      <location filename="../QScintilla/MiniEditor.py" line="2624" />
       <source>Clear all displayed search markers</source>
       <translation>Limpar todos os marcadores de pesquisa mostrados</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2633" />
+      <location filename="../QScintilla/MiniEditor.py" line="2629" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2639" />
       <source>Replace</source>
       <translation>Substituir</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2644" />
+      <location filename="../QScintilla/MiniEditor.py" line="2640" />
       <source>&amp;Replace...</source>
       <translation>&amp;Substituir...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2646" />
+      <location filename="../QScintilla/MiniEditor.py" line="2642" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2653" />
+      <location filename="../QScintilla/MiniEditor.py" line="2649" />
       <source>Replace some text</source>
       <translation>Substituir algum texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2656" />
+      <location filename="../QScintilla/MiniEditor.py" line="2652" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2670" />
-      <location filename="../QScintilla/MiniEditor.py" line="2668" />
+      <location filename="../QScintilla/MiniEditor.py" line="2666" />
+      <location filename="../QScintilla/MiniEditor.py" line="2664" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2672" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2681" />
+      <location filename="../QScintilla/MiniEditor.py" line="2677" />
       <source>Replace the found text and search the next occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2686" />
+      <location filename="../QScintilla/MiniEditor.py" line="2682" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2702" />
-      <location filename="../QScintilla/MiniEditor.py" line="2700" />
+      <location filename="../QScintilla/MiniEditor.py" line="2698" />
+      <location filename="../QScintilla/MiniEditor.py" line="2696" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2704" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2713" />
+      <location filename="../QScintilla/MiniEditor.py" line="2709" />
       <source>Replace the found text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2716" />
+      <location filename="../QScintilla/MiniEditor.py" line="2712" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2729" />
-      <location filename="../QScintilla/MiniEditor.py" line="2727" />
+      <location filename="../QScintilla/MiniEditor.py" line="2725" />
+      <location filename="../QScintilla/MiniEditor.py" line="2723" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2731" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2740" />
+      <location filename="../QScintilla/MiniEditor.py" line="2736" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2743" />
+      <location filename="../QScintilla/MiniEditor.py" line="2739" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -95160,29 +95268,29 @@
       <translation>&amp;Editar...</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7350" />
-      <location filename="../ViewManager/ViewManager.py" line="7336" />
-      <location filename="../ViewManager/ViewManager.py" line="7304" />
+      <location filename="../ViewManager/ViewManager.py" line="7349" />
+      <location filename="../ViewManager/ViewManager.py" line="7335" />
+      <location filename="../ViewManager/ViewManager.py" line="7303" />
       <source>Edit Spelling Dictionary</source>
       <translation>Editar Dicionário Ortográfico</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7307" />
+      <location filename="../ViewManager/ViewManager.py" line="7306" />
       <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="7323" />
+      <location filename="../ViewManager/ViewManager.py" line="7322" />
       <source>Editing {0}</source>
       <translation>A editar {0}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7339" />
+      <location filename="../ViewManager/ViewManager.py" line="7338" />
       <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="7353" />
+      <location filename="../ViewManager/ViewManager.py" line="7352" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation>O dicionário ortográfico foi guradado com êxito.</translation>
     </message>
@@ -96243,7 +96351,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="135" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="136" />
       <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="96" />
       <source>Failed
 
@@ -96251,46 +96359,46 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="144" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="145" />
       <source>
 pyvenv finished.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="159" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="160" />
       <source>No suitable pyvenv program could be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="222" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="223" />
       <source>
 Writing log file '{0}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="226" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="227" />
       <source>Output:
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="231" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="232" />
       <source>Errors:
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="235" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="236" />
       <source>The logfile '{0}' could not be written.
 Reason: {1}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="239" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="240" />
       <source>Done.
 </source>
       <translation type="unfinished" />
@@ -98482,32 +98590,32 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2312" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2341" />
       <source>Quota Request</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2313" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2342" />
       <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="2389" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2385" />
       <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="2397" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2393" />
       <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="2402" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2398" />
       <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="2409" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2405" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -101497,28 +101605,28 @@
       <translation type="unfinished">&lt;b&gt;Assistente para Complemento eric&lt;/b&gt;&lt;p&gt;Este assistente abre uma caixa de diálogo para introduzir todos os parâmetros necessários para criar os conteúdos básicos dum ficheiro de complemento eric. O codigo gerado é inserido na posição atual do cursor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="143" />
       <source>No current editor</source>
       <translation type="unfinished">Não há um editor atual</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="145" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
       <source>Please open or create a file first.</source>
       <translation type="unfinished">Por favor, primeiro abra ou crie um ficheiro.</translation>
     </message>
     <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="182" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="166" />
+      <source>Create Package</source>
+      <translation type="unfinished">Criar Pacote</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
+      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;p&gt;O diretório do pacote &lt;b&gt;{0}&lt;/b&gt; não se pôde criar. A terminar...&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Plugins/PluginWizardEricPlugin.py" line="183" />
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
-      <source>Create Package</source>
-      <translation type="unfinished">Criar Pacote</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="168" />
-      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;p&gt;O diretório do pacote &lt;b&gt;{0}&lt;/b&gt; não se pôde criar. A terminar...&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="184" />
       <source>&lt;p&gt;The package file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; do pacote não se pôde criar. A terminar...&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -101791,32 +101899,32 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1270" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1274" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Pai #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Conjunto de Alterações&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1801" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1282" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&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;Etiquetas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1807" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1284" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1811" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1288" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&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;Marcadores&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1814" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1291" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1295" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&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;Ramos&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1297" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1301" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
@@ -101825,7 +101933,7 @@
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Hora do Cometido&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1320" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -101842,36 +101950,36 @@
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1775" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1779" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1782" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1786" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1793" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Dica&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1794" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1798" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&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;Conjunto de Alterações&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1825" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&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;Pais&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1831" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -102555,17 +102663,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1814" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
       <source>unknown</source>
       <translation>desconhecido</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1822" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1667" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1670" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
Binary file src/eric7/i18n/eric7_ru.qm has changed
--- a/src/eric7/i18n/eric7_ru.ts	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/i18n/eric7_ru.ts	Sun Jul 02 17:39:33 2023 +0200
@@ -1227,7 +1227,7 @@
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="52" />
       <source>Type comments are disallowed</source>
-      <translation>Ввод комментариев запрещен</translation>
+      <translation>Комментарии типов запрещены</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="55" />
@@ -1259,6 +1259,16 @@
       <source>type annotation is too long ({0} &gt; {1})</source>
       <translation>аннотация типа слишком длинная ({0}&gt; {1})</translation>
     </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="76" />
+      <source>'typing.Union' is deprecated, use '|' instead (see PEP 604)</source>
+      <translation>'typing.Union' устарело, вместо него используйте '|' (см. PEP 604)</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="80" />
+      <source>'typing.{0}' is deprecated, use '{1}' instead (see PEP 585)</source>
+      <translation>'typing.{0}' устарело, вместо него используйте '{1}' (см. PEP 585)</translation>
+    </message>
   </context>
   <context>
     <name>ApplicationDiagramBuilder</name>
@@ -2223,26 +2233,31 @@
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="97" />
-      <source>Complete {0}-bit Service UUID: {1}</source>
-      <translation>Полный {0}-битный UUID службы: {1}</translation>
+      <source>Complete {0}-bit Service UUID: {1}{2}</source>
+      <translation>Полный {0}-битный UUID службы: {1}{2}</translation>
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="99" />
-      <source>Incomplete {0}-bit Service UUID: {1}</source>
-      <translation>Урезанный {0}-битный UUID службы: {1}</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="110" />
-      <source>Manufacturer ID: 0x{0:x} ({1})</source>
-      <translation>ID производителя: 0x{0:x} ({1}): 0x{0:x} ({1})</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="114" />
+      <source>Incomplete {0}-bit Service UUID: {1}{2}</source>
+      <translation>Неполный {0}-битный UUID службы: {1}{2}</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="107" />
+      <source> - {0}</source>
+      <translation> - {0}</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="121" />
+      <source>Manufacturer ID: 0x{0:x} - {1}</source>
+      <translation>Идентификатор производителя: 0x{0:x} - {1}</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="125" />
       <source>Manufacturer ID: 0x{0:x}</source>
       <translation>ID производителя: 0x{0:x}</translation>
     </message>
     <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="123" />
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="134" />
       <source>Tx Power Level [dBm]: {0}</source>
       <translation>Уровень Tx-мощности [dBm]: {0}</translation>
     </message>
@@ -2441,7 +2456,7 @@
     <message>
       <location filename="../MicroPython/BoardDataDialog.py" line="192" />
       <source>Network Time</source>
-      <translation>Время в сети</translation>
+      <translation>Network Time</translation>
     </message>
     <message>
       <location filename="../MicroPython/BoardDataDialog.py" line="203" />
@@ -5066,27 +5081,27 @@
       <translation>Ошибка: {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1210" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1221" />
       <source>{0} (ignored)</source>
       <translation>{0} (проигнорировано)</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1285" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1296" />
       <source>No issues found.</source>
       <translation>Проблем со стилем не найдено.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1289" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1300" />
       <source>No files found (check your ignore list).</source>
       <translation>Файлы не найдены (проверьте ваш игнор-лист).</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2900" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2935" />
       <source>Commented Code Whitelist Pattern</source>
       <translation>Шаблон закомментированного кода</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2901" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2936" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation>Задайте шаблон закомментированного кода</translation>
     </message>
@@ -5572,6 +5587,16 @@
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Exempted 'typing' symbols:</source>
+      <translation>Освобожденные 'typing' символы:</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Enter deprecated symbols of the 'typing' module exempted from PEP-585 checking separated by space</source>
+      <translation>Введите устаревшие символы 'typing' модуля, освобожденного от проверки PEP-585, разделенные пробелом.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
       <source>Security</source>
       <translation>Безопасность</translation>
     </message>
@@ -7592,375 +7617,378 @@
   <context>
     <name>ConfigurationWidget</name>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="174" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="175" />
       <source>Application</source>
       <translation>Приложение</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="180" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="181" />
       <source>Conda</source>
       <translation>Менеджер пакетов Conda</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="182" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="183" />
       <source>Cooperation</source>
       <translation>Кооперация</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="189" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="190" />
       <source>Diff</source>
       <translation>Diff</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="196" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="197" />
       <source>Email</source>
       <translation>Email</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="203" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="204" />
       <source>Graphics</source>
       <translation>Графика</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="865" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="210" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="866" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="211" />
       <source>Hex Editor</source>
       <translation>Hex-редактор</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="946" />
       <location filename="../Preferences/ConfigurationDialog.py" line="914" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="882" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="851" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="754" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="639" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="217" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="883" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="852" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="755" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="640" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="218" />
       <source>Icons</source>
       <translation>Иконки</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="223" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="224" />
       <source>IRC</source>
       <translation>IRC</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="225" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="226" />
       <source>Log-Viewer</source>
       <translation>Просмотр журнала</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="232" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="233" />
       <source>MicroPython</source>
       <translation>MicroPython</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="239" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="240" />
       <source>MIME-Types</source>
       <translation>MIME-типы</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="768" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="246" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="769" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="247" />
       <source>Network</source>
       <translation>Сеть</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="253" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="254" />
       <source>Notifications</source>
       <translation>Уведомления</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="896" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="260" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="897" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="261" />
       <source>PDF Viewer</source>
       <translation>Просмотр PDF</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="267" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="928" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="268" />
       <source>Python Package Management</source>
       <translation>Менеджер пакетов Python</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="274" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="275" />
       <source>Plugin Manager</source>
       <translation>Менеджер плагинов</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="775" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="653" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="281" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="776" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="654" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="282" />
       <source>Printer</source>
       <translation>Принтер</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="288" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="289" />
       <source>Python</source>
       <translation>Python</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="294" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="295" />
       <source>Qt</source>
       <translation>Qt</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="782" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="296" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="783" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="297" />
       <source>Security</source>
       <translation>Безопасность</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="303" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="304" />
       <source>Shell</source>
       <translation>Оболочка</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="309" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="310" />
       <source>Tasks</source>
       <translation>Задачи</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="311" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="312" />
       <source>Templates</source>
       <translation>Шаблоны</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="834" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="318" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="835" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="319" />
       <source>Tray Starter</source>
       <translation>Tray Starter</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="325" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="326" />
       <source>Version Control Systems</source>
       <translation>Системы контроля версий</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="332" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="333" />
       <source>Debugger</source>
       <translation>Отладка</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="667" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="374" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="339" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="668" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="375" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="340" />
       <source>General</source>
       <translation>Основные параметры</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="346" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="347" />
       <source>Python3</source>
       <translation>Python3</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="660" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="353" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="661" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="354" />
       <source>Editor</source>
       <translation>Редактор</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="360" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="361" />
       <source>APIs</source>
       <translation>APIs</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="367" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="368" />
       <source>Documentation Viewer</source>
       <translation>Просмотр документации</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="674" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="381" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="675" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="382" />
       <source>Filehandling</source>
       <translation>Работа с файлами</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="681" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="388" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="682" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="389" />
       <source>Searching</source>
       <translation>Поиск</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="817" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="688" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="617" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="395" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="818" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="689" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="618" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="396" />
       <source>Spell checking</source>
       <translation>Проверка орфографии</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="695" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="402" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="696" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="403" />
       <source>Style</source>
       <translation>Стиль</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="409" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="410" />
       <source>Code Checkers</source>
       <translation>Проверка кода</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="702" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="416" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="703" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="417" />
       <source>Typing</source>
       <translation>Набор кода</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="423" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="424" />
       <source>Exporters</source>
       <translation>Экспортёры</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="430" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="431" />
       <source>Autocompletion</source>
       <translation>Автодополнение</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="458" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="437" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="459" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="438" />
       <source>QScintilla</source>
       <translation>QScintilla</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="514" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="465" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="444" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="515" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="466" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="445" />
       <source>Jedi</source>
       <translation>Jedi</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="451" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="452" />
       <source>Calltips</source>
       <translation>Подсказки</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="709" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="472" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="710" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="473" />
       <source>Highlighters</source>
       <translation>Подсветка синтаксиса</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="716" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="479" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="717" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="480" />
       <source>Filetype Associations</source>
       <translation>Ассоциации типов файлов</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="723" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="486" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="724" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="487" />
       <source>Styles</source>
       <translation>Стили</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="730" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="493" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="731" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="494" />
       <source>Keywords</source>
       <translation>Ключевые слова</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="737" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="500" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="738" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="501" />
       <source>Properties</source>
       <translation>Свойства</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="507" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="508" />
       <source>Mouse Click Handlers</source>
       <translation>Обработка кликов мышки</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="520" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="521" />
       <source>Help</source>
       <translation>Справка</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="789" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="522" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="790" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="523" />
       <source>Help Documentation</source>
       <translation>Справочная документация</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="529" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="530" />
       <source>Help Viewers</source>
       <translation>Просмотр справки</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="550" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="536" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="551" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="537" />
       <source>Project</source>
       <translation>Проект</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="543" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="544" />
       <source>Project Viewer</source>
       <translation>Просмотр проектов</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="557" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="558" />
       <source>Multiproject</source>
       <translation>Мультипроект</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="953" />
       <location filename="../Preferences/ConfigurationDialog.py" line="921" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="889" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="858" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="761" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="646" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="571" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="564" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="890" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="859" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="762" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="647" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="572" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="565" />
       <source>Interface</source>
       <translation>Интерфейс</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="578" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="579" />
       <source>Viewmanager</source>
       <translation>Менеджер видов</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="589" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="590" />
       <source>Web Browser</source>
       <translation>Web-браузер</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="796" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="596" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="797" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="597" />
       <source>Appearance</source>
       <translation>Внешний вид</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="803" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="603" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="804" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="604" />
       <source>eric Web Browser</source>
       <translation>Eric web-браузер</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="810" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="610" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="811" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="611" />
       <source>VirusTotal Interface</source>
       <translation>Интерфейс VirusTotal</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1007" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1039" />
       <source>Enter search text...</source>
       <translation>Введите искомый текст...</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1080" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1112" />
       <source>Preferences</source>
       <translation>Предпочтения</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1086" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1118" />
       <source>Please select an entry of the list 
 to display the configuration page.</source>
       <translation>Выберите пункт в списке слева для
 отображения страницы его настроек.</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1163" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1195" />
       <source>Configuration Page Error</source>
       <translation>Ошибка страницы конфигурации</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1164" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1196" />
       <source>&lt;p&gt;The configuration page &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Страница конфигурации &lt;b&gt;{0}&lt;/b&gt; не может быть загружена.&lt;/p&gt;</translation>
     </message>
@@ -31666,104 +31694,104 @@
       <translation>Показать список закладок</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="442" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
       <source>eric API Documentation</source>
       <translation>Документация API eric</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="443" />
-      <source>Python 3 Documentation</source>
-      <translation>Документация Python 3</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>Qt5 Documentation</source>
-      <translation>Документация Qt5</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Qt6 Documentation</source>
-      <translation>Документация Qt6</translation>
+      <source>Python 3 Documentation</source>
+      <translation>Документация Python 3</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>PyQt5 Documentation</source>
-      <translation>Документация PyQt5</translation>
+      <source>Qt5 Documentation</source>
+      <translation>Документация Qt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>PyQt6 Documentation</source>
-      <translation>Документация PyQt6</translation>
+      <source>Qt6 Documentation</source>
+      <translation>Документация Qt6</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PySide2 Documentation</source>
-      <translation>Документация PySide2</translation>
+      <source>PyQt5 Documentation</source>
+      <translation>Документация PyQt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
+      <source>PyQt6 Documentation</source>
+      <translation>Документация PyQt6</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
+      <source>PySide2 Documentation</source>
+      <translation>Документация PySide2</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
       <source>PySide6 Documentation</source>
       <translation>Документация PySide6</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="506" />
-      <source>Open HTML File</source>
-      <translation>Открыть HTML файл</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <source>Open HTML File</source>
+      <translation>Открыть HTML файл</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
       <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="699" />
       <source>Help Engine</source>
       <translation>Движок системы справки</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="723" />
       <source>Looking for Documentation...</source>
       <translation>Просмотр документации...</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="732" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="734" />
       <source>eric Help Viewer</source>
       <translation>Просмотрщик справки eric</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="759" />
       <source>Manage QtHelp Documents</source>
       <translation>Управление документацией QtHelp</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="762" />
       <source>Reindex Documentation</source>
       <translation>Переиндексация документов</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="767" />
       <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="860" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="840" />
       <source>Clear History</source>
       <translation>Очистить историю</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="968" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="970" />
       <source>Updating search index</source>
       <translation>Обновление индекса поиска</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1026" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1028" />
       <source>Filtered by: </source>
       <translation>Отфильтровано по: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1062" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1057" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1064" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
       <source>Unfiltered</source>
       <translation>Без фильтра</translation>
     </message>
@@ -52917,570 +52945,610 @@
   <context>
     <name>MiscellaneousChecker</name>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="15" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="16" />
       <source>coding magic comment not found</source>
       <translation>кодирование magic компонентов не найдено</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="18" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="19" />
       <source>unknown encoding ({0}) found in coding magic comment</source>
       <translation>неизвестный код ({0}) обнаружен в коде magic комментариев</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="21" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="23" />
       <source>copyright notice not present</source>
       <translation>уведомление об авторских правах не предоставлено</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="24" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="26" />
       <source>copyright notice contains invalid author</source>
       <translation>уведомление об авторских правах содержит недействительного автора</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="27" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="30" />
       <source>"{0}" is a Python builtin and is being shadowed; consider renaming the variable</source>
       <translation>"{0}" является встроенным именем Python и затеняется; рассмотрите возможность переименования переменной</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="32" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="35" />
       <source>"{0}" is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
       <translation>"{0}" используется как аргумент и таким образом затеняет встроенные имена Python; рассмотрите возможность переименования аргумента</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="37" />
-      <source>unnecessary generator - rewrite as a list comprehension</source>
-      <translation>неподходящий генератор - перепишите как списк выражений</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="41" />
+      <source>unnecessary generator - rewrite as a list comprehension</source>
+      <translation>неподходящий генератор - перепишите как списк выражений</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="45" />
       <source>unnecessary generator - rewrite as a set comprehension</source>
       <translation>неподходящий генератор - перепишите как набор выражений</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="44" />
-      <source>unnecessary generator - rewrite as a dict comprehension</source>
-      <translation>неподходящий генератор - перепишите как словарь выражений</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="48" />
-      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
-      <translation>неподходящий список выражений - перепишите как набор выражений</translation>
+      <source>unnecessary generator - rewrite as a dict comprehension</source>
+      <translation>неподходящий генератор - перепишите как словарь выражений</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="52" />
-      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
-      <translation>неподходящий список выражений - перепишите как словарь выражений</translation>
+      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
+      <translation>неподходящий список выражений - перепишите как набор выражений</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="56" />
+      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <translation>неподходящий список выражений - перепишите как словарь выражений</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="60" />
       <source>unnecessary {0} call - rewrite as a literal</source>
       <translation>неподходящий вызов {0} - перепишите как литерал</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="59" />
-      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
-      <translation>ненужный вызов {0} around {1} () - переключите обратный аргумент на sorted ()</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="63" />
-      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
-      <translation>ненужный вызов {0} around {1} () - используйте sorted (..., reverse = {2})</translation>
+      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
+      <translation>ненужный вызов {0} around {1} () - переключите обратный аргумент на sorted ()</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="67" />
+      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <translation>ненужный вызов {0} around {1} () - используйте sorted (..., reverse = {2})</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="71" />
       <source>unnecessary {0} call around {1}()</source>
       <translation>ненужный вызов {0} around {1} ()</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="70" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="74" />
       <source>unnecessary {0} call within {1}()</source>
       <translation>ненужный вызов {0} within {1} ()</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="73" />
-      <source>unnecessary subscript reversal of iterable within {0}()</source>
-      <translation>ненужное изменение индекса итерации в {0} ()</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="77" />
+      <source>unnecessary subscript reversal of iterable within {0}()</source>
+      <translation>ненужное изменение индекса итерации в {0} ()</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="81" />
       <source>unnecessary {0} literal - rewrite as a {1} literal</source>
       <translation>неподходящий литерал {0} - перепишите как литерал {1}</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="80" />
-      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
-      <translation>неподходящий {0} передан в tuple() - перепишите как литерал {1}</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="84" />
-      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
-      <translation>неподходящий {0} передан в list() - перепишите как литерал {1}</translation>
+      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
+      <translation>неподходящий {0} передан в tuple() - перепишите как литерал {1}</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="88" />
-      <source>unnecessary list call - remove the outer call to list()</source>
-      <translation>ненужный вызов списка - удалите внешний вызов list()</translation>
+      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
+      <translation>неподходящий {0} передан в list() - перепишите как литерал {1}</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="92" />
+      <source>unnecessary list call - remove the outer call to list()</source>
+      <translation>ненужный вызов списка - удалите внешний вызов list()</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="96" />
       <source>unnecessary {0} comprehension - rewrite using {0}()</source>
       <translation>ненужное понимание {0} - перепишите, используя {0} ()</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="95" />
-      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
-      <translation>ненужный {0} передан в tuple() - удалите внешний вызов в {1}()</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="99" />
-      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
-      <translation>ненужный {0} передан в list() - удалите внешний вызов в {1}()</translation>
+      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
+      <translation>ненужный {0} передан в tuple() - удалите внешний вызов в {1}()</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="103" />
+      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <translation>ненужный {0} передан в list() - удалите внешний вызов в {1}()</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="108" />
       <source>sort keys - '{0}' should be before '{1}'</source>
       <translation>ключи сортировки - '{0}' должны быть прежде чем '{1}'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="106" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="112" />
+      <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source>
+      <translation>неправильное количество аргументов для метода получения свойства (должeн быть 1 вместо {0})</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="117" />
+      <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source>
+      <translation>неправильное количество аргументов для метода установки свойства (должно быть 2 вместо {0})</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="122" />
+      <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source>
+      <translation>количество аргументов для метода удаления свойств неверно (должно быть 1 вместо {0})</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="127" />
+      <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation>неправильное имя метода установки (должно быть '{0}' вместо '{1}')</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="131" />
+      <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation>неправильное имя метода удаления (должно быть '{0}' вместо '{1}')</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" />
+      <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source>
+      <translation>неправильное имя декоратора-установщика (должно быть '{0}' вместо '{1}')</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" />
+      <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source>
+      <translation>неправильное имя декоратора удаления (должно быть '{0}' вместо '{1}')</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="143" />
+      <source>multiple decorators were used to declare property '{0}'</source>
+      <translation>несколько декораторов использовались для объявления свойства '{0}'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="148" />
       <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
       <translation>следует избегать использования 'datetime.datetime()' без аргумента 'tzinfo'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="110" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="152" />
       <source>use of 'datetime.datetime.today()' should be avoided.
 Use 'datetime.datetime.now(tz=)' instead.</source>
       <translation>следует избегать использования 'datetime.datetime.today()'.
 Взамен используйте 'datetime.datetime.now(tz=)'.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="115" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="157" />
       <source>use of 'datetime.datetime.utcnow()' should be avoided.
 Use 'datetime.datetime.now(tz=)' instead.</source>
       <translation>следует избегать использования 'datetime.datetime.utcnow()'.
 Взамен используйте 'datetime.datetime.now(tz=)'.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="120" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="162" />
       <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
 Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
       <translation>следует избегать использования 'datetime.datetime.utcfromtimestamp()'.
 Взамен используйте 'datetime.datetime.fromtimestamp(, tz=)'.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="125" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" />
       <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
       <translation>следует избегать использования 'datetime.datetime.now()' без аргумента 'tz'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="129" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" />
       <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
       <translation>следует избегать использования 'datetime.datetime.fromtimestamp()' без аргумента 'tz'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" />
       <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
       <translation>применение 'datetime.datetime.strptime()' должно сопровождаться '.replace(tzinfo=)'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="181" />
       <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
       <translation>следует избегать использования 'datetime.datetime.fromordinal()'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="143" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" />
       <source>use of 'datetime.date()' should be avoided.
 Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
       <translation>следует избегать использования 'datetime.date()'.
 Взамен используйте 'datetime.datetime(, tzinfo=).date()'.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="148" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" />
       <source>use of 'datetime.date.today()' should be avoided.
 Use 'datetime.datetime.now(tz=).date()' instead.</source>
       <translation>следует избегать использования 'datetime.date.today()'.
 Взамен используйте 'datetime.datetime.now(tz=).date()'.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="153" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" />
       <source>use of 'datetime.date.fromtimestamp()' should be avoided.
 Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
       <translation>следует избегать использования 'datetime.date.fromtimestamp()'.
 Взамен используйте 'datetime.datetime.fromtimestamp(tz=).date()'.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="158" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="200" />
       <source>use of 'datetime.date.fromordinal()' should be avoided</source>
       <translation>следует избегать использования 'datetime.date.fromordinal()'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="161" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" />
       <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
       <translation>следует избегать использования 'datetime.date.fromordinal()'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="165" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="207" />
       <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
       <translation>следует избегать использования 'datetime.time()' без аргумента 'tzinfo'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="169" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="212" />
       <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
       <translation>'sys.version[:3]' referenced (Python 3.10), используйте 'sys.version_info'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="173" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="216" />
       <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
       <translation>'sys.version[2]' referenced (Python 3.10), используйте 'sys.version_info'</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="177" />
-      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
-      <translation>'sys.version' compared to string (Python 3.10), используйте 'sys.version_info'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="181" />
-      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
-      <translation>'sys.version_info[0] == 3' referenced (Python 4), используйте '&gt;='</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" />
-      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
-      <translation>'six.PY3' referenced (Python 4), используйте 'not six.PY2'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="188" />
-      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="193" />
-      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="198" />
-      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation>'sys.version[0]' referenced (Python 10), используйте 'sys.version_info'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="202" />
-      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
-      <translation>'sys.version' compared to string (Python 10), используйте 'sys.version_info'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="206" />
-      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation>'sys.version[:1]' referenced (Python 10), используйте 'sys.version_info'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="210" />
-      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
-      <translation>Не используйте только 'except:', он также перехватывает неожиданные события, такие как ошибки памяти, прерывания, выход из системы и т. д. Предпочтительно использовать 'except Exception:'. Если вы уверены в том, что делаете, напишите 'except BaseException:'.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" />
-      <source>Python does not support the unary prefix increment</source>
-      <translation>Python не поддерживает инкремент унарного префикса</translation>
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="220" />
-      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
-      <translation>назначение 'os.environ' не очищает среду окружения - используйте 'os.environ.clear()'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="225" />
-      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
-      <translation>использование 'hasattr(x, "__call__")' для проверки возможности вызова 'x' ненадежно. Используйте 'callable(x)' для получения стабильных результатов.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="230" />
-      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
-      <translation>использование .strip() с многосимвольными строками приводит к обманчивым результатам. Используйте .replace(), .removeprefix(), .removesuffix() или регулярные выражения для удаления фрагментов строки.</translation>
+      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <translation>'sys.version' compared to string (Python 3.10), используйте 'sys.version_info'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="224" />
+      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <translation>'sys.version_info[0] == 3' referenced (Python 4), используйте '&gt;='</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" />
+      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
+      <translation>'six.PY3' referenced (Python 4), используйте 'not six.PY2'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="231" />
+      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
+      <translation>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" />
-      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
-      <translation>переменная {0} управления циклом не используется внутри цикла - начните имя символом подчеркивания</translation>
+      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
+      <translation>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" />
-      <source>do not call getattr with a constant attribute value</source>
-      <translation>не используйте вызовы getattr с постоянным значением атрибута</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="244" />
-      <source>do not call setattr with a constant attribute value</source>
-      <translation>не используйте вызовы setattr с постоянным значением атрибута</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="247" />
-      <source>do not call assert False since python -O removes these calls</source>
-      <translation>не используйте вызовы assert False, так как python -O удаляет эти вызовы</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="251" />
-      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
-      <translation>return/continue/break внутри блоков finally заставляют исключения отключаться. Исключения должны быть отключены в блоках except. Управляющие операторы могут быть перемещены за пределы блока finally.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" />
-      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
-      <translation>Литерал односимвольного кортежа является избыточным. Используйте 'except {0}:' вместо 'except ({0},):'.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="262" />
-      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
-      <translation>Избыточные типы исключений в 'except ({0}){1}:'. Используйте 'except {2}{1}:', чтобы перехватывать точно такие же исключения.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="267" />
-      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
-      <translation>Результат сравнения не используется. Эта строка ничего не делает. Вы намеревались добавить к нему assert?</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="272" />
-      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
-      <translation>Невозможно вызвать литерал. Вы намеревались вернуть его или вызвать Exception?</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="276" />
-      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
-      <translation>'assertRaises(Exception):' следует считать злом. Это может привести к прохождению теста, даже если тестируемый код никогда не выполняется из-за опечатки. Либо подтвердите для более конкретного исключения (встроенного или пользовательского), используйте 'assertRaisesRegex', либо используйте форму 'assertRaises' диспетчера контекста.</translation>
+      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation>'sys.version[0]' referenced (Python 10), используйте 'sys.version_info'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" />
+      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
+      <translation>'sys.version' compared to string (Python 10), используйте 'sys.version_info'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" />
+      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation>'sys.version[:1]' referenced (Python 10), используйте 'sys.version_info'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="254" />
+      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
+      <translation>Не используйте только 'except:', он также перехватывает неожиданные события, такие как ошибки памяти, прерывания, выход из системы и т. д. Предпочтительно использовать 'except Exception:'. Если вы уверены в том, что делаете, напишите 'except BaseException:'.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" />
+      <source>Python does not support the unary prefix increment</source>
+      <translation>Python не поддерживает инкремент унарного префикса</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="264" />
+      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
+      <translation>назначение 'os.environ' не очищает среду окружения - используйте 'os.environ.clear()'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="269" />
+      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
+      <translation>использование 'hasattr(x, "__call__")' для проверки возможности вызова 'x' ненадежно. Используйте 'callable(x)' для получения стабильных результатов.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="274" />
+      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <translation>использование .strip() с многосимвольными строками приводит к обманчивым результатам. Используйте .replace(), .removeprefix(), .removesuffix() или регулярные выражения для удаления фрагментов строки.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="280" />
+      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
+      <translation>переменная {0} управления циклом не используется внутри цикла - начните имя символом подчеркивания</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="285" />
-      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
-      <translation>Найдено бесполезное выражение. Рассмотрите возможность назначения его переменной или удалить.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="290" />
-      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
-      <translation>Использование  'functools.lru_cache' или  'functools.cache' в методах может привести к утечке памяти. Кэш может сохранять ссылки на экземпляры, предотвращая сборку мусора.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="296" />
-      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
-      <translation>Найден цикл for, который переназначает итерируемый объект, который повторяется с каждым итерируемым значением.</translation>
+      <source>do not call getattr with a constant attribute value</source>
+      <translation>не используйте вызовы getattr с постоянным значением атрибута</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" />
+      <source>do not call setattr with a constant attribute value</source>
+      <translation>не используйте вызовы setattr с постоянным значением атрибута</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" />
+      <source>do not call assert False since python -O removes these calls</source>
+      <translation>не используйте вызовы assert False, так как python -O удаляет эти вызовы</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" />
+      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
+      <translation>return/continue/break внутри блоков finally заставляют исключения отключаться. Исключения должны быть отключены в блоках except. Управляющие операторы могут быть перемещены за пределы блока finally.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="301" />
-      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
-      <translation>f-string используется в качестве строки документации. Python будет интерпретировать это скорее как объединенную строку, а не как строку документации.</translation>
+      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
+      <translation>Литерал односимвольного кортежа является избыточным. Используйте 'except {0}:' вместо 'except ({0},):'.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="306" />
-      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
-      <translation>В  'contextlib.suppress' не переданы аргументы. Никакие исключения не будут подавляться, поэтому этот менеджер контекста является избыточным.</translation>
+      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
+      <translation>Избыточные типы исключений в 'except ({0}){1}:'. Используйте 'except {2}{1}:', чтобы перехватывать точно такие же исключения.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" />
-      <source>Function definition does not bind loop variable '{0}'.</source>
-      <translation>Определение функции не связывает переменную цикла '{0}'.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" />
-      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
-      <translation>{0} — это абстрактный базовый класс, но он не имеет абстрактных методов. Не забудьте использовать декоратор @abstractmethod, возможно, в сочетании с @classmethod, @property и/или @staticmethod.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="322" />
-      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
-      <translation>Исключение '{0}' было перехвачено несколько раз. Будет рассмотрено только первое исключение, а все остальные исключения могут быть безопасно удалены.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="327" />
-      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
-      <translation>Настоятельно не рекомендуется распаковывать star-arg после аргумента ключевого слова, потому что он работает только тогда, когда параметр ключевого слова объявляется после всех параметров, предоставленных распакованной последовательностью, и такое изменение порядка может удивить и ввести в заблуждение читателей.</translation>
+      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
+      <translation>Результат сравнения не используется. Эта строка ничего не делает. Вы намеревались добавить к нему assert?</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" />
+      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
+      <translation>Невозможно вызвать литерал. Вы намеревались вернуть его или вызвать Exception?</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" />
+      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <translation>'assertRaises(Exception):' следует считать злом. Это может привести к прохождению теста, даже если тестируемый код никогда не выполняется из-за опечатки. Либо подтвердите для более конкретного исключения (встроенного или пользовательского), используйте 'assertRaisesRegex', либо используйте форму 'assertRaises' диспетчера контекста.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="329" />
+      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
+      <translation>Найдено бесполезное выражение. Рассмотрите возможность назначения его переменной или удалить.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" />
-      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
-      <translation>{0} — это пустой метод в абстрактном базовом классе, но без абстрактного декоратора. Рассмотрите возможность добавления @abstractmethod.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" />
-      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
-      <translation>Явный аргумент уровня стека не найден. Метод warn из модуля warnings по умолчанию использует уровень стека 1. Это покажет только трассировку стека для строки, для которой вызывается метод warn. Поэтому рекомендуется использовать уровень стека 2 или выше, чтобы предоставить пользователю больше информации.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="347" />
-      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
-      <translation>Использование 'except ():' с пустым кортежем ничего не обрабатывает/не перехватывает. Добавьте исключения для обработки.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="352" />
-      <source>Except handlers should only be names of exception classes</source>
-      <translation>Обработчики исключений должны быть только именами классов исключений</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="356" />
-      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
-      <translation>Использование генератора, возвращенного из 'itertools.groupby()' более одного раза, ничего не даст при повторном использовании. Сохраните результат в список, если результат требуется несколько раз.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" />
-      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
-      <translation>Возможно непреднамеренная аннотация типа (using ':'). Вы имели в виду assign (using '=')?</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" />
-      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
-      <translation>Наборы не должны содержать повторяющихся элементов. Повторяющиеся элементы будут заменены одним элементом во время выполнения.</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="372" />
-      <source>unncessary f-string</source>
-      <translation>ненужная f-string</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" />
-      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
-      <translation>не используйте 'self .__ class__' в качестве первого аргумента вызова 'super ()'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" />
-      <source>found {0} formatter</source>
-      <translation>найден {0} форматтер</translation>
+      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
+      <translation>Использование  'functools.lru_cache' или  'functools.cache' в методах может привести к утечке памяти. Кэш может сохранять ссылки на экземпляры, предотвращая сборку мусора.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="340" />
+      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <translation>Найден цикл for, который переназначает итерируемый объект, который повторяется с каждым итерируемым значением.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="345" />
+      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <translation>f-string используется в качестве строки документации. Python будет интерпретировать это скорее как объединенную строку, а не как строку документации.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="350" />
+      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <translation>В  'contextlib.suppress' не переданы аргументы. Никакие исключения не будут подавляться, поэтому этот менеджер контекста является избыточным.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="355" />
+      <source>Function definition does not bind loop variable '{0}'.</source>
+      <translation>Определение функции не связывает переменную цикла '{0}'.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="359" />
+      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
+      <translation>{0} — это абстрактный базовый класс, но он не имеет абстрактных методов. Не забудьте использовать декоратор @abstractmethod, возможно, в сочетании с @classmethod, @property и/или @staticmethod.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" />
+      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
+      <translation>Исключение '{0}' было перехвачено несколько раз. Будет рассмотрено только первое исключение, а все остальные исключения могут быть безопасно удалены.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" />
+      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
+      <translation>Настоятельно не рекомендуется распаковывать star-arg после аргумента ключевого слова, потому что он работает только тогда, когда параметр ключевого слова объявляется после всех параметров, предоставленных распакованной последовательностью, и такое изменение порядка может удивить и ввести в заблуждение читателей.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" />
-      <source>format string does contain unindexed parameters</source>
-      <translation>строка формата действительно содержит неиндексированные параметры</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="381" />
-      <source>docstring does contain unindexed parameters</source>
-      <translation>строка документации действительно содержит неиндексированные параметры</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="384" />
-      <source>other string does contain unindexed parameters</source>
-      <translation>другая строка действительно содержит неиндексированные параметры</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" />
-      <source>format call uses too large index ({0})</source>
-      <translation>формат вызова использует слишком большой индекс ({0})</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="390" />
-      <source>format call uses missing keyword ({0})</source>
-      <translation>формат вызова использует отсутствующее ключевое слово ({0})</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="393" />
-      <source>format call uses keyword arguments but no named entries</source>
-      <translation>формат вызова использует ключевые аргументы, но нет именованных записей</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="397" />
-      <source>format call uses variable arguments but no numbered entries</source>
-      <translation>формат ячейки использует переменные аргументы, но нет пронумерованных записей</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="401" />
-      <source>format call uses implicit and explicit indexes together</source>
-      <translation>формат вызова использует скрытые и явные индексы вместе</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="405" />
-      <source>format call provides unused index ({0})</source>
-      <translation>формат вызова предоставляет неиспользованный индекс ({0})</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" />
-      <source>format call provides unused keyword ({0})</source>
-      <translation>формат вызова предоставляет неиспользуемое ключевое слово ({0})</translation>
+      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
+      <translation>{0} — это пустой метод в абстрактном базовом классе, но без абстрактного декоратора. Рассмотрите возможность добавления @abstractmethod.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" />
+      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
+      <translation>Явный аргумент уровня стека не найден. Метод warn из модуля warnings по умолчанию использует уровень стека 1. Это покажет только трассировку стека для строки, для которой вызывается метод warn. Поэтому рекомендуется использовать уровень стека 2 или выше, чтобы предоставить пользователю больше информации.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="391" />
+      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
+      <translation>Использование 'except ():' с пустым кортежем ничего не обрабатывает/не перехватывает. Добавьте исключения для обработки.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" />
+      <source>Except handlers should only be names of exception classes</source>
+      <translation>Обработчики исключений должны быть только именами классов исключений</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="400" />
+      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
+      <translation>Использование генератора, возвращенного из 'itertools.groupby()' более одного раза, ничего не даст при повторном использовании. Сохраните результат в список, если результат требуется несколько раз.</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="406" />
+      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
+      <translation>Возможно непреднамеренная аннотация типа (using ':'). Вы имели в виду assign (using '=')?</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" />
-      <source>logging statement uses string.format()</source>
-      <translation>инструкция ведения журнала использует string.format()</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="414" />
-      <source>logging statement uses '%'</source>
-      <translation>инструкция ведения журнала использует '%'</translation>
+      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
+      <translation>Наборы не должны содержать повторяющихся элементов. Повторяющиеся элементы будут заменены одним элементом во время выполнения.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="417" />
-      <source>logging statement uses '+'</source>
-      <translation>инструкция ведения журнала использует '+'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" />
-      <source>logging statement uses f-string</source>
-      <translation>инструкция ведения журнала использует f-string</translation>
+      <source>unncessary f-string</source>
+      <translation>ненужная f-string</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="418" />
+      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
+      <translation>не используйте 'self .__ class__' в качестве первого аргумента вызова 'super ()'</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="423" />
-      <source>logging statement uses 'warn' instead of 'warning'</source>
-      <translation>инструкция ведения журнала использует 'warn' вместо 'warning'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="426" />
-      <source>expected these __future__ imports: {0}; but only got: {1}</source>
-      <translation>ожидался __future__ imports: {0}; получены только: {1}</translation>
+      <source>found {0} formatter</source>
+      <translation>найден {0} форматтер</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" />
+      <source>format string does contain unindexed parameters</source>
+      <translation>строка формата действительно содержит неиндексированные параметры</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="427" />
+      <source>docstring does contain unindexed parameters</source>
+      <translation>строка документации действительно содержит неиндексированные параметры</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="430" />
-      <source>expected these __future__ imports: {0}; but got none</source>
-      <translation>ожидался __future__ imports: {0}; не получено ничего</translation>
+      <source>other string does contain unindexed parameters</source>
+      <translation>другая строка действительно содержит неиндексированные параметры</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" />
-      <source>gettext import with alias _ found: {0}</source>
-      <translation>gettext import with alias _ found: {0}</translation>
+      <source>format call uses too large index ({0})</source>
+      <translation>формат вызова использует слишком большой индекс ({0})</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="436" />
-      <source>print statement found</source>
-      <translation>обнаружена инструкция печати</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" />
-      <source>one element tuple found</source>
-      <translation>найден одноэлементный кортеж</translation>
+      <source>format call uses missing keyword ({0})</source>
+      <translation>формат вызова использует отсутствующее ключевое слово ({0})</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" />
+      <source>format call uses keyword arguments but no named entries</source>
+      <translation>формат вызова использует ключевые аргументы, но нет именованных записей</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="440" />
-      <source>mutable default argument of type {0}</source>
-      <translation>изменяемый аргумент по умолчанию типа {0}</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="446" />
-      <source>mutable default argument of function call '{0}'</source>
-      <translation>измененный аргумент по умолчанию для вызова функции '{0}'</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" />
-      <source>None should not be added at any return if function has no return value except None</source>
-      <translation>если функция не имеет возвращаемого значения, (кроме None), None не следует добавлять в каждый return</translation>
+      <source>format call uses variable arguments but no numbered entries</source>
+      <translation>формат ячейки использует переменные аргументы, но нет пронумерованных записей</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="447" />
+      <source>format call uses implicit and explicit indexes together</source>
+      <translation>формат вызова использует скрытые и явные индексы вместе</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="451" />
+      <source>format call provides unused index ({0})</source>
+      <translation>формат вызова предоставляет неиспользованный индекс ({0})</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" />
-      <source>an explicit value at every return should be added if function has a return value except None</source>
-      <translation>если функция имеет возвращаемое значение, (кроме None), то явное значение должно быть добавлено каждому return</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="459" />
-      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
-      <translation>в конец функции, если она имеет возвращаемое значение, (кроме None), должен быть добавлен явный return</translation>
+      <source>format call provides unused keyword ({0})</source>
+      <translation>формат вызова предоставляет неиспользуемое ключевое слово ({0})</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" />
+      <source>logging statement uses string.format()</source>
+      <translation>инструкция ведения журнала использует string.format()</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="461" />
+      <source>logging statement uses '%'</source>
+      <translation>инструкция ведения журнала использует '%'</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="464" />
-      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
-      <translation>значение не должно присваиваться переменной, если оно будет использоваться только как возвращаемое значение</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="469" />
-      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
-      <translation>для предполагаемого продолжения строки предпочтительнее использование круглых, квадратных или фигурных скобок, а не обратного слеша</translation>
+      <source>logging statement uses '+'</source>
+      <translation>инструкция ведения журнала использует '+'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" />
+      <source>logging statement uses f-string</source>
+      <translation>инструкция ведения журнала использует f-string</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="470" />
+      <source>logging statement uses 'warn' instead of 'warning'</source>
+      <translation>инструкция ведения журнала использует 'warn' вместо 'warning'</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="474" />
+      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <translation>ожидался __future__ imports: {0}; получены только: {1}</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="478" />
+      <source>expected these __future__ imports: {0}; but got none</source>
+      <translation>ожидался __future__ imports: {0}; не получено ничего</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="482" />
+      <source>gettext import with alias _ found: {0}</source>
+      <translation>gettext import with alias _ found: {0}</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="486" />
+      <source>print statement found</source>
+      <translation>обнаружена инструкция печати</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="488" />
+      <source>one element tuple found</source>
+      <translation>найден одноэлементный кортеж</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="495" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="492" />
+      <source>mutable default argument of type {0}</source>
+      <translation>изменяемый аргумент по умолчанию типа {0}</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="498" />
+      <source>mutable default argument of function call '{0}'</source>
+      <translation>измененный аргумент по умолчанию для вызова функции '{0}'</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="502" />
+      <source>None should not be added at any return if function has no return value except None</source>
+      <translation>если функция не имеет возвращаемого значения, (кроме None), None не следует добавлять в каждый return</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="507" />
+      <source>an explicit value at every return should be added if function has a return value except None</source>
+      <translation>если функция имеет возвращаемое значение, (кроме None), то явное значение должно быть добавлено каждому return</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="512" />
+      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <translation>в конец функции, если она имеет возвращаемое значение, (кроме None), должен быть добавлен явный return</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" />
+      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
+      <translation>значение не должно присваиваться переменной, если оно будет использоваться только как возвращаемое значение</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="523" />
+      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <translation>для предполагаемого продолжения строки предпочтительнее использование круглых, квадратных или фигурных скобок, а не обратного слеша</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="529" />
       <source>commented code lines should be removed</source>
       <translation>закомментированные строки кода должны быть удалены</translation>
     </message>
@@ -56700,103 +56768,103 @@
       <translation>невозможно запустить python.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="193" />
+      <location filename="../PipInterface/Pip.py" line="195" />
       <source>&lt;project&gt;</source>
       <translation>&lt;project&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="216" />
+      <location filename="../PipInterface/Pip.py" line="220" />
       <source>Interpreter for Virtual Environment</source>
       <translation>Интерпретатор для виртуального окружения</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="217" />
+      <location filename="../PipInterface/Pip.py" line="221" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation>Для выбранного виртуального окружения не настроен интерпретатор.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="257" />
+      <location filename="../PipInterface/Pip.py" line="261" />
       <source>Install PIP</source>
       <translation>Установка PIP</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="304" />
+      <location filename="../PipInterface/Pip.py" line="308" />
       <source>Repair PIP</source>
       <translation>Восстановление PIP</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="395" />
+      <location filename="../PipInterface/Pip.py" line="399" />
       <source>Upgrade Packages</source>
       <translation>Обновление пакетов</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="441" />
+      <location filename="../PipInterface/Pip.py" line="445" />
       <source>Install Packages</source>
       <translation>Установка пакетов</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="471" />
+      <location filename="../PipInterface/Pip.py" line="475" />
       <source>Install Packages from Requirements</source>
       <translation>Установка пакетов, перечисленных в зависимостях</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="492" />
+      <location filename="../PipInterface/Pip.py" line="496" />
       <source>Install Project</source>
       <translation>Установка проекта</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="549" />
-      <location filename="../PipInterface/Pip.py" line="521" />
-      <location filename="../PipInterface/Pip.py" line="512" />
+      <location filename="../PipInterface/Pip.py" line="553" />
+      <location filename="../PipInterface/Pip.py" line="525" />
+      <location filename="../PipInterface/Pip.py" line="516" />
       <source>Uninstall Packages</source>
       <translation>Деинсталяция пакетов</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="550" />
-      <location filename="../PipInterface/Pip.py" line="513" />
+      <location filename="../PipInterface/Pip.py" line="554" />
+      <location filename="../PipInterface/Pip.py" line="517" />
       <source>Do you really want to uninstall these packages?</source>
       <translation>Вы действительно хотите деинсталировать эти пакеты?</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="559" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Uninstall Packages from Requirements</source>
       <translation>Деинсталяция пакетов, перечисленных в зависимостях</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="912" />
+      <location filename="../PipInterface/Pip.py" line="916" />
       <source>Cache Info</source>
       <translation>Информация о кэше</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="938" />
-      <location filename="../PipInterface/Pip.py" line="929" />
+      <location filename="../PipInterface/Pip.py" line="942" />
+      <location filename="../PipInterface/Pip.py" line="933" />
       <source>List Cached Files</source>
       <translation>Список кэшированных файлов</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="930" />
+      <location filename="../PipInterface/Pip.py" line="934" />
       <source>Enter a file pattern (empty for all):</source>
       <translation>Задайте шаблон файлов (пустая строка - все файлы):</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="962" />
-      <location filename="../PipInterface/Pip.py" line="955" />
+      <location filename="../PipInterface/Pip.py" line="966" />
+      <location filename="../PipInterface/Pip.py" line="959" />
       <source>Remove Cached Files</source>
       <translation>Удалить кэшированные файлы</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="956" />
+      <location filename="../PipInterface/Pip.py" line="960" />
       <source>Enter a file pattern:</source>
       <translation>Задайте шаблон файла:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="987" />
-      <location filename="../PipInterface/Pip.py" line="979" />
+      <location filename="../PipInterface/Pip.py" line="991" />
+      <location filename="../PipInterface/Pip.py" line="983" />
       <source>Purge Cache</source>
       <translation>Очистить кэш</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="980" />
+      <location filename="../PipInterface/Pip.py" line="984" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation>Вы действительно хотите очистить pip-кэш? Все файлы должны быть загружены снова.</translation>
     </message>
@@ -57689,30 +57757,30 @@
       <translation>Файлы:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="434" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="435" />
       <source>Getting installed packages...</source>
       <translation>Получение списка установленных пакетов...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="448" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="449" />
       <source>Getting outdated packages...</source>
       <translation>Получение списка обновленных пакетов...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1202" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1022" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1009" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="973" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
       <source>Search PyPI</source>
       <translation>Поиск в PyPI</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="975" />
       <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {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 numerus="yes">
-      <location filename="../PipInterface/PipPackagesWidget.py" line="989" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="990" />
       <source>%n package(s) found.</source>
       <translation>
         <numerusform>Найден %n пакет.</numerusform>
@@ -57721,197 +57789,205 @@
       </translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="996" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="997" />
       <source>Showing first {0} packages found.</source>
       <translation>Показаны первые {0} найденных пакетов.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1015" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1016" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1011" />
       <source>&lt;p&gt;There were no results for &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="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1024" />
       <source>&lt;p&gt;There were no more results for &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="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1204" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Недоступна подробная информация о пакете &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1222" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1223" />
       <source>Pip</source>
       <translation>Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1224" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1225" />
       <source>Install Pip</source>
       <translation>Инсталировать Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1227" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1228" />
       <source>Install Pip to User-Site</source>
       <translation>Инсталировать Pip в User-Site</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1230" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1231" />
       <source>Repair Pip</source>
       <translation>Восстановить Pip</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1237" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1238" />
       <source>Install</source>
       <translation>Установить</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1402" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1239" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1403" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1240" />
       <source>Install Packages</source>
       <translation>Установить пакеты</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1242" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1243" />
       <source>Install Local Package</source>
       <translation>Установить локальный пакет</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1245" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1246" />
       <source>Re-Install Selected Packages</source>
       <translation>Переинсталировать выбранные пакеты</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1252" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1253" />
       <source>Requirements/Constraints</source>
       <translation>Зависимости/Ограничения</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1254" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1255" />
       <source>Install Requirements</source>
       <translation>Установить зависимости</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1257" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1258" />
       <source>Uninstall Requirements</source>
       <translation>Деинсталировать зависимости</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1260" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1261" />
       <source>Generate Requirements...</source>
       <translation>Генерировать зависимости...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1264" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1265" />
       <source>Generate Constraints...</source>
       <translation>Генерировать ограничения...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1271" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1272" />
       <source>Cache</source>
       <translation>Кэш</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1273" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1274" />
       <source>Show Cache Info...</source>
       <translation>Показать информацию о кэше...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1276" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1277" />
       <source>Show Cached Files...</source>
       <translation>Показать кэшированные файлы...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1279" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1280" />
       <source>Remove Cached Files...</source>
       <translation>Удалить кэшированные файлы...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1282" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1283" />
       <source>Purge Cache...</source>
       <translation>Очистить кэш...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1299" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1300" />
       <source>Show Licenses...</source>
       <translation>Показать лицензии...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1303" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1304" />
       <source>Check Vulnerabilities</source>
       <translation>Проверить уязвимости</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1307" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1308" />
       <source>Update Vulnerability Database</source>
       <translation>Обновить базу уязвимостей</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1311" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1312" />
       <source>Create SBOM file</source>
       <translation>Создать файл SBOM</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1318" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1319" />
       <source>Edit User Configuration...</source>
       <translation>Правка конфигурации пользователя...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1321" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1322" />
       <source>Edit Environment Configuration...</source>
       <translation>Правка конфигурации среды окружения...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1326" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1327" />
       <source>Configure...</source>
       <translation>Настроить...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1545" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1532" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1521" />
-      <source>Edit Configuration</source>
-      <translation>Правка конфигурации</translation>
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1546" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1533" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1522" />
+      <source>Edit Configuration</source>
+      <translation>Правка конфигурации</translation>
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1547" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1534" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1523" />
       <source>No valid configuration path determined. Aborting</source>
       <translation>Не определен допустимый путь конфигурации. Прерывание</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1714" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1736" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation>{0} {1}</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1735" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1757" />
       <source>Affected Version:</source>
       <translatorcomment>Подверженная уязвимости версия:  Пораженная версия Уязвимая</translatorcomment>
       <translation>Версия с уязвимостью:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1760" />
       <source>Advisory:</source>
       <translatorcomment>Консультация:  Рекомендация</translatorcomment>
       <translation>Рекомендуемая:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1862" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1843" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1890" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1865" />
       <source>unknown</source>
       <translation>неизвестная</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1887" />
       <source>any</source>
       <translation>любая</translation>
     </message>
   </context>
   <context>
+    <name>PipPackagesWindow</name>
+    <message>
+      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <source>Manage Packages</source>
+      <translation>Менеджер пакетов</translation>
+    </message>
+  </context>
+  <context>
     <name>PipPage</name>
     <message>
       <location filename="../Preferences/ConfigurationPages/PipPage.py" line="31" />
@@ -69544,50 +69620,82 @@
       <translation>WebREPL не поддерживается на этом устройстве.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1341" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1555" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
       <source>Active</source>
       <translation>Активно</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
-      <source>Connected</source>
-      <translation>Подключено</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1345" />
-      <source>Status</source>
-      <translation>Статус</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1349" />
-      <source>Hostname</source>
-      <translation>Имя хоста</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1350" />
-      <source>IPv4 Address</source>
-      <translation>IPv4-адрес</translation>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1343" />
+      <source>Name</source>
+      <translation>Имя</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1568" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1344" />
+      <source>MAC-Address</source>
+      <translation>MAC-адрес</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1347" />
+      <source>Address Type</source>
+      <translation>Тип адреса</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Public</source>
+      <translation>Публичный</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Random</source>
+      <translation>Случайный</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>MTU</source>
+      <translation>MTU</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>{0} Bytes</source>
+      <translation>{0} байт</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1556" />
+      <source>Connected</source>
+      <translation>Подключено</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1559" />
+      <source>Status</source>
+      <translation>Статус</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1563" />
+      <source>Hostname</source>
+      <translation>Имя хоста</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1564" />
+      <source>IPv4 Address</source>
+      <translation>IPv4-адрес</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1565" />
       <source>Netmask</source>
       <translation>Сетевая маска</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1352" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1566" />
       <source>Gateway</source>
       <translation>Шлюз</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1353" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1567" />
       <source>DNS</source>
       <translation>DNS</translation>
     </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1354" />
-      <source>MAC-Address</source>
-      <translation>MAC-адрес</translation>
-    </message>
   </context>
   <context>
     <name>RccCompilerOptionsDialog</name>
--- a/src/eric7/i18n/eric7_tr.ts	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/i18n/eric7_tr.ts	Sun Jul 02 17:39:33 2023 +0200
@@ -1320,6 +1320,16 @@
       <source>type annotation is too long ({0} &gt; {1})</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="76" />
+      <source>'typing.Union' is deprecated, use '|' instead (see PEP 604)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="80" />
+      <source>'typing.{0}' is deprecated, use '{1}' instead (see PEP 585)</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>ApplicationDiagramBuilder</name>
@@ -1753,42 +1763,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
+      <location filename="../Utilities/BackgroundService.py" line="217" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="219" />
+      <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>Restart background client?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Utilities/BackgroundService.py" line="232" />
-      <source>Restart background client?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Utilities/BackgroundService.py" line="233" />
       <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="262" />
+      <location filename="../Utilities/BackgroundService.py" line="261" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="497" />
+      <location filename="../Utilities/BackgroundService.py" line="502" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="506" />
+      <location filename="../Utilities/BackgroundService.py" line="511" />
       <source>Background client disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="507" />
+      <location filename="../Utilities/BackgroundService.py" line="512" />
       <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>
@@ -1851,22 +1861,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>Yes</source>
       <translation type="unfinished">Evet</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>No</source>
       <translation type="unfinished">Hayır</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>yes</source>
       <translation type="unfinished">evet</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>no</source>
       <translation type="unfinished">no</translation>
     </message>
@@ -2288,26 +2298,31 @@
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="97" />
-      <source>Complete {0}-bit Service UUID: {1}</source>
+      <source>Complete {0}-bit Service UUID: {1}{2}</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="99" />
-      <source>Incomplete {0}-bit Service UUID: {1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="110" />
-      <source>Manufacturer ID: 0x{0:x} ({1})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="114" />
+      <source>Incomplete {0}-bit Service UUID: {1}{2}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="107" />
+      <source> - {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="121" />
+      <source>Manufacturer ID: 0x{0:x} - {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="125" />
       <source>Manufacturer ID: 0x{0:x}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="123" />
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="134" />
       <source>Tx Power Level [dBm]: {0}</source>
       <translation type="unfinished" />
     </message>
@@ -2807,17 +2822,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="335" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
       <source>New Bookmark Folder</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="337" />
       <source>Enter title for new bookmark folder:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="343" />
       <source>New Folder</source>
       <translation>Yeni Dizin</translation>
     </message>
@@ -2921,22 +2936,22 @@
       <translation>Yerimleri Menüsü</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="543" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="541" />
       <source>Remove Bookmark</source>
       <translation>Yerimini kaldır</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="585" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="583" />
       <source>Insert Bookmark</source>
       <translation>Yerimi Araya gir</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="626" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="624" />
       <source>Name Change</source>
       <translation>İsim Değişikliği</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="630" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="628" />
       <source>Address Change</source>
       <translation>Adres Değişikliği</translation>
     </message>
@@ -2972,22 +2987,22 @@
       <translation>Yer imlerinin &lt;b&gt;{0}&lt;/b&gt;ne kaydederken hata oldu.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="399" />
       <source>Export Bookmarks</source>
       <translation>Yerimlerini Dışaaktar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="403" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
       <source>XBEL bookmarks (*.xbel);;XBEL bookmarks (*.xml);;HTML Bookmarks (*.html)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="429" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="427" />
       <source>Exporting Bookmarks</source>
       <translation>Yerimleri Dışaaktarılıyor</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="430" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="428" />
       <source>Error exporting bookmarks to &lt;b&gt;{0}&lt;/b&gt;.</source>
       <translation>Yerimlerini {0} ye dışa aktarırken hata oldu.</translation>
     </message>
@@ -3245,231 +3260,231 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="238" />
+      <location filename="../UI/Browser.py" line="239" />
       <source>Show Hidden Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="244" />
+      <location filename="../UI/Browser.py" line="245" />
       <source>New</source>
       <translation type="unfinished">Yeni</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="246" />
+      <location filename="../UI/Browser.py" line="247" />
       <source>Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="249" />
+      <location filename="../UI/Browser.py" line="250" />
       <source>File</source>
       <translation type="unfinished">Dosya</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="323" />
-      <location filename="../UI/Browser.py" line="285" />
-      <location filename="../UI/Browser.py" line="255" />
+      <location filename="../UI/Browser.py" line="324" />
+      <location filename="../UI/Browser.py" line="286" />
+      <location filename="../UI/Browser.py" line="256" />
       <source>Open</source>
       <translation>Aç</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="258" />
+      <location filename="../UI/Browser.py" line="259" />
       <source>Run Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="622" />
-      <location filename="../UI/Browser.py" line="614" />
-      <location filename="../UI/Browser.py" line="604" />
-      <location filename="../UI/Browser.py" line="595" />
-      <location filename="../UI/Browser.py" line="305" />
-      <location filename="../UI/Browser.py" line="262" />
-      <source>Show Mime-Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="266" />
-      <source>Refresh Source File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="361" />
-      <location filename="../UI/Browser.py" line="309" />
-      <location filename="../UI/Browser.py" line="271" />
-      <source>Copy Path to Clipboard</source>
-      <translation>Yolu Panoya kopyala</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="369" />
-      <location filename="../UI/Browser.py" line="329" />
-      <location filename="../UI/Browser.py" line="317" />
-      <location filename="../UI/Browser.py" line="279" />
-      <source>Delete</source>
-      <translation type="unfinished">Sil</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="288" />
-      <source>Open in Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="292" />
-      <source>Open in Icon Editor</source>
-      <translation>İcon Düzenleyicide Aç</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="296" />
-      <source>Open in Editor</source>
-      <translation type="unfinished">Düzenleyicide Aç</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="300" />
-      <source>Open in PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="388" />
-      <location filename="../UI/Browser.py" line="379" />
-      <location filename="../UI/Browser.py" line="335" />
-      <source>New toplevel directory...</source>
-      <translation>Yeni enüstseviye dizini...</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="339" />
-      <source>Add as toplevel directory</source>
-      <translation>Dizinin en üst seviyesi olarak ekle</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="343" />
-      <source>Remove from toplevel</source>
-      <translation>Enüst seviyeyi kaldır</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="348" />
-      <source>Refresh directory</source>
-      <translation>Dizini tazele</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="353" />
-      <source>Find in this directory</source>
-      <translation>Bu dizin içinde bul</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="357" />
-      <source>Find &amp;&amp; Replace in this directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="373" />
-      <source>Goto</source>
-      <translation type="unfinished">Buraya git</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="491" />
-      <source>Line {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="596" />
-      <source>The mime type of the file could not be determined.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="615" />
-      <location filename="../UI/Browser.py" line="605" />
-      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="623" />
+      <location filename="../UI/Browser.py" line="615" />
+      <location filename="../UI/Browser.py" line="605" />
+      <location filename="../UI/Browser.py" line="596" />
+      <location filename="../UI/Browser.py" line="306" />
+      <location filename="../UI/Browser.py" line="263" />
+      <source>Show Mime-Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="267" />
+      <source>Refresh Source File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="362" />
+      <location filename="../UI/Browser.py" line="310" />
+      <location filename="../UI/Browser.py" line="272" />
+      <source>Copy Path to Clipboard</source>
+      <translation>Yolu Panoya kopyala</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="370" />
+      <location filename="../UI/Browser.py" line="330" />
+      <location filename="../UI/Browser.py" line="318" />
+      <location filename="../UI/Browser.py" line="280" />
+      <source>Delete</source>
+      <translation type="unfinished">Sil</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="289" />
+      <source>Open in Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="293" />
+      <source>Open in Icon Editor</source>
+      <translation>İcon Düzenleyicide Aç</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="297" />
+      <source>Open in Editor</source>
+      <translation type="unfinished">Düzenleyicide Aç</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="301" />
+      <source>Open in PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="389" />
+      <location filename="../UI/Browser.py" line="380" />
+      <location filename="../UI/Browser.py" line="336" />
+      <source>New toplevel directory...</source>
+      <translation>Yeni enüstseviye dizini...</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="340" />
+      <source>Add as toplevel directory</source>
+      <translation>Dizinin en üst seviyesi olarak ekle</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="344" />
+      <source>Remove from toplevel</source>
+      <translation>Enüst seviyeyi kaldır</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="349" />
+      <source>Refresh directory</source>
+      <translation>Dizini tazele</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="354" />
+      <source>Find in this directory</source>
+      <translation>Bu dizin içinde bul</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="358" />
+      <source>Find &amp;&amp; Replace in this directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="374" />
+      <source>Goto</source>
+      <translation type="unfinished">Buraya git</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="492" />
+      <source>Line {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="597" />
+      <source>The mime type of the file could not be determined.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="616" />
+      <location filename="../UI/Browser.py" line="606" />
+      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="624" />
       <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="731" />
+      <location filename="../UI/Browser.py" line="732" />
       <source>New toplevel directory</source>
       <translation>Yeni enüstseviye dizini</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="967" />
-      <location filename="../UI/Browser.py" line="955" />
-      <location filename="../UI/Browser.py" line="946" />
-      <source>New Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="947" />
-      <source>Name for new directory:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="994" />
-      <location filename="../UI/Browser.py" line="956" />
-      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="968" />
+      <location filename="../UI/Browser.py" line="956" />
+      <location filename="../UI/Browser.py" line="947" />
+      <source>New Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="948" />
+      <source>Name for new directory:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="995" />
+      <location filename="../UI/Browser.py" line="957" />
+      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="969" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1006" />
-      <location filename="../UI/Browser.py" line="993" />
-      <location filename="../UI/Browser.py" line="984" />
-      <source>New File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="985" />
-      <source>Name for new file:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1007" />
+      <location filename="../UI/Browser.py" line="994" />
+      <location filename="../UI/Browser.py" line="985" />
+      <source>New File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="986" />
+      <source>Name for new file:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1008" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1103" />
-      <location filename="../UI/Browser.py" line="1045" />
-      <location filename="../UI/Browser.py" line="1035" />
-      <source>Delete File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1036" />
-      <source>Do you really want to delete this file?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1104" />
       <location filename="../UI/Browser.py" line="1046" />
+      <location filename="../UI/Browser.py" line="1036" />
+      <source>Delete File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1037" />
+      <source>Do you really want to delete this file?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1105" />
+      <location filename="../UI/Browser.py" line="1047" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1071" />
-      <location filename="../UI/Browser.py" line="1061" />
-      <source>Delete Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1062" />
-      <source>Do you really want to delete this directory?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1072" />
+      <location filename="../UI/Browser.py" line="1062" />
+      <source>Delete Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1063" />
+      <source>Do you really want to delete this directory?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1073" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1092" />
-      <source>Delete Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1093" />
+      <source>Delete Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1094" />
       <source>Do you really want to delete these files?</source>
       <translation type="unfinished" />
     </message>
@@ -5119,27 +5134,27 @@
       <translation type="unfinished">Hata: {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1210" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1221" />
       <source>{0} (ignored)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1285" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1296" />
       <source>No issues found.</source>
       <translation type="unfinished">Sorun bulunamadı.</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1289" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1300" />
       <source>No files found (check your ignore list).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2891" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2935" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2892" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2936" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -5625,6 +5640,16 @@
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Exempted 'typing' symbols:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Enter deprecated symbols of the 'typing' module exempted from PEP-585 checking separated by space</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
       <source>Security</source>
       <translation type="unfinished">Güvenlik</translation>
     </message>
@@ -6506,7 +6531,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="174" />
+      <location filename="../Utilities/__init__.py" line="176" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>Verilen metin için '{0}'nun kodlaması hatalı.</translation>
     </message>
@@ -7628,375 +7653,378 @@
   <context>
     <name>ConfigurationWidget</name>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="174" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="175" />
       <source>Application</source>
       <translation>Uygulama</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="180" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="181" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="182" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="183" />
       <source>Cooperation</source>
       <translation>İşbirliği</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="189" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="190" />
       <source>Diff</source>
       <translation type="unfinished">Diff</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="196" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="197" />
       <source>Email</source>
       <translation>E-posta</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="203" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="204" />
       <source>Graphics</source>
       <translation>Grafik</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="865" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="210" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="866" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="211" />
       <source>Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="946" />
       <location filename="../Preferences/ConfigurationDialog.py" line="914" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="882" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="851" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="754" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="639" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="217" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="883" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="852" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="755" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="640" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="218" />
       <source>Icons</source>
       <translation>İconlar</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="223" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="224" />
       <source>IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="225" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="226" />
       <source>Log-Viewer</source>
       <translation type="unfinished">Kayıt-Gösterici</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="232" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="233" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="239" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="240" />
       <source>MIME-Types</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="768" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="246" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="769" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="247" />
       <source>Network</source>
       <translation>Ağ</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="253" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="254" />
       <source>Notifications</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="896" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="260" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="897" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="261" />
       <source>PDF Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="267" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="928" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="268" />
       <source>Python Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="274" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="275" />
       <source>Plugin Manager</source>
       <translation>Eklenti Yöneticisi</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="775" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="653" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="281" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="776" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="654" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="282" />
       <source>Printer</source>
       <translation>Yazıcı</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="288" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="289" />
       <source>Python</source>
       <translation>Python</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="294" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="295" />
       <source>Qt</source>
       <translation>Qt</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="782" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="296" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="783" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="297" />
       <source>Security</source>
       <translation type="unfinished">Güvenlik</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="303" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="304" />
       <source>Shell</source>
       <translation>Kabuk</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="309" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="310" />
       <source>Tasks</source>
       <translation>Görevler</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="311" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="312" />
       <source>Templates</source>
       <translation>Şablonlar</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="834" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="318" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="835" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="319" />
       <source>Tray Starter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="325" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="326" />
       <source>Version Control Systems</source>
       <translation>Sürüm Kontrol Sistemi</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="332" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="333" />
       <source>Debugger</source>
       <translation>Hata Ayıklayıcı</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="667" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="374" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="339" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="668" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="375" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="340" />
       <source>General</source>
       <translation>Genel</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="346" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="347" />
       <source>Python3</source>
       <translation>Python3</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="660" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="353" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="661" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="354" />
       <source>Editor</source>
       <translation>Düzenleyici</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="360" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="361" />
       <source>APIs</source>
       <translation>API'ler</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="367" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="368" />
       <source>Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="674" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="381" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="675" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="382" />
       <source>Filehandling</source>
       <translation>Dosyaişleme</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="681" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="388" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="682" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="389" />
       <source>Searching</source>
       <translation>Arıyor</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="817" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="688" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="617" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="395" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="818" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="689" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="618" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="396" />
       <source>Spell checking</source>
       <translation>Yazım Kontrolü</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="695" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="402" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="696" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="403" />
       <source>Style</source>
       <translation>Stil</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="409" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="410" />
       <source>Code Checkers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="702" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="416" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="703" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="417" />
       <source>Typing</source>
       <translation>Yazıyor</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="423" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="424" />
       <source>Exporters</source>
       <translation>Dışaaktarım</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="430" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="431" />
       <source>Autocompletion</source>
       <translation>Otomatik tamamlama</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="458" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="437" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="459" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="438" />
       <source>QScintilla</source>
       <translation>QScintilla</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="514" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="465" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="444" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="515" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="466" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="445" />
       <source>Jedi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="451" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="452" />
       <source>Calltips</source>
       <translation>İpuçları</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="709" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="472" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="710" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="473" />
       <source>Highlighters</source>
       <translation>Metin Vurgulayıcı</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="716" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="479" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="717" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="480" />
       <source>Filetype Associations</source>
       <translation>Dosyatipi Birleştirme</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="723" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="486" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="724" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="487" />
       <source>Styles</source>
       <translation>Stiller</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="730" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="493" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="731" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="494" />
       <source>Keywords</source>
       <translation>Anahtar Sözcükler</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="737" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="500" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="738" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="501" />
       <source>Properties</source>
       <translation>Özellikler</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="507" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="508" />
       <source>Mouse Click Handlers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="520" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="521" />
       <source>Help</source>
       <translation>Yardım</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="789" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="522" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="790" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="523" />
       <source>Help Documentation</source>
       <translation>Yardım Belgeleri</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="529" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="530" />
       <source>Help Viewers</source>
       <translation>Yardım Göstericiler</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="550" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="536" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="551" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="537" />
       <source>Project</source>
       <translation>Proje</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="543" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="544" />
       <source>Project Viewer</source>
       <translation>Proje Görüntüleyici</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="557" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="558" />
       <source>Multiproject</source>
       <translation>Çokluproje</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="953" />
       <location filename="../Preferences/ConfigurationDialog.py" line="921" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="889" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="858" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="761" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="646" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="571" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="564" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="890" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="859" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="762" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="647" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="572" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="565" />
       <source>Interface</source>
       <translation>Arayüz</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="578" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="579" />
       <source>Viewmanager</source>
       <translation>Görünüm Yönetcisi</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="589" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="590" />
       <source>Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="796" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="596" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="797" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="597" />
       <source>Appearance</source>
       <translation>Görünüm</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="803" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="603" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="804" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="604" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="810" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="610" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="811" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="611" />
       <source>VirusTotal Interface</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1007" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1039" />
       <source>Enter search text...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1080" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1112" />
       <source>Preferences</source>
       <translation>Seçenekler</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1086" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1118" />
       <source>Please select an entry of the list 
 to display the configuration page.</source>
       <translation>Lütfen ayarlama sayfasını 
 göstermek için gelen listeyi seçiniz.</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1163" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1195" />
       <source>Configuration Page Error</source>
       <translation>Ayarlama Sayfası Hatası</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1164" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1196" />
       <source>&lt;p&gt;The configuration page &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;TAyarlama sayfası &lt;b&gt;{0}&lt;/b&gt; yüklenemiyor.&lt;/p&gt;</translation>
     </message>
@@ -10473,26 +10501,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Add allowed host</source>
       <translation>İzin verilen hostlara ekle</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
       <source>Enter the IP address of an allowed host</source>
       <translation>İzin verilen hosların IP numaralrını giriniz</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
+      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
-      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
       <source>Edit allowed host</source>
       <translation>İzin verilen Hostları düzenle</translation>
     </message>
@@ -12004,42 +12032,42 @@
   <context>
     <name>DownloadManager</name>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="111" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="113" />
       <source>Open</source>
       <translation>Aç</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="117" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="119" />
       <source>Cancel</source>
       <translation>Vazgeç</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="122" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="124" />
       <source>Open Containing Folder</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="125" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="127" />
       <source>Go to Download Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="126" />
-      <source>Copy Download Link</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/Download/DownloadManager.py" line="128" />
+      <source>Copy Download Link</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="130" />
       <source>Select All</source>
       <translation>Hepsini Seç</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="137" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="139" />
       <source>Remove From List</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="172" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="174" />
       <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
       <translation type="unfinished">
@@ -12048,34 +12076,34 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="264" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="266" />
       <source>Suspicuous URL detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="265" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="267" />
       <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="500" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="502" />
       <source>Downloads finished</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="501" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="503" />
       <source>All files have been downloaded.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/Download/DownloadManager.ui" line="0" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="586" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="509" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="588" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="511" />
       <source>Download Manager</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="619" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="621" />
       <source>{0}% of %n file(s) ({1}) {2}</source>
       <translation type="unfinished">
         <numerusform />
@@ -12083,7 +12111,7 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="627" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="629" />
       <source>{0}% - Download Manager</source>
       <translation type="unfinished" />
     </message>
@@ -12327,7 +12355,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3335" />
+      <location filename="../QScintilla/Editor.py" line="3334" />
       <location filename="../QScintilla/Editor.py" line="428" />
       <location filename="../QScintilla/Editor.py" line="413" />
       <source>Open File</source>
@@ -12399,7 +12427,7 @@
       <translation>Yorumlanamaz</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9154" />
+      <location filename="../QScintilla/Editor.py" line="9152" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12672,7 +12700,7 @@
       <translation type="unfinished">Yazım kontolü yapılıyor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8272" />
+      <location filename="../QScintilla/Editor.py" line="8270" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>Yazım Kontrolü...</translation>
@@ -12733,7 +12761,7 @@
       <translation>Bekleme noktasını düzenle...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5932" />
+      <location filename="../QScintilla/Editor.py" line="5929" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>Beklemenoktasını etkinleştir</translation>
@@ -12925,398 +12953,398 @@
       <translation>Yazdırma iptal edildi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3277" />
+      <location filename="../QScintilla/Editor.py" line="3276" />
       <source>File Modified</source>
       <translation>Dosya Değiştirildi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3278" />
+      <location filename="../QScintilla/Editor.py" line="3277" />
       <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="3336" />
+      <location filename="../QScintilla/Editor.py" line="3335" />
       <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="3511" />
+      <location filename="../QScintilla/Editor.py" line="3492" />
+      <location filename="../QScintilla/Editor.py" line="3454" />
+      <source>Save File</source>
+      <translation>Dosyayı Kaydet</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="3455" />
+      <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="3512" />
-      <location filename="../QScintilla/Editor.py" line="3493" />
-      <location filename="../QScintilla/Editor.py" line="3455" />
-      <source>Save File</source>
-      <translation>Dosyayı Kaydet</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3456" />
-      <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="3513" />
       <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="3649" />
+      <location filename="../QScintilla/Editor.py" line="3646" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3650" />
+      <location filename="../QScintilla/Editor.py" line="3647" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5106" />
+      <location filename="../QScintilla/Editor.py" line="5103" />
       <source>Autocompletion</source>
       <translation>Otomatik tamamlama</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5107" />
+      <location filename="../QScintilla/Editor.py" line="5104" />
       <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="5235" />
+      <location filename="../QScintilla/Editor.py" line="5232" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5236" />
+      <location filename="../QScintilla/Editor.py" line="5233" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5528" />
+      <location filename="../QScintilla/Editor.py" line="5525" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5529" />
+      <location filename="../QScintilla/Editor.py" line="5526" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5936" />
+      <location filename="../QScintilla/Editor.py" line="5933" />
       <source>Disable breakpoint</source>
       <translation>Durmanoktasını iptal et</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6315" />
+      <location filename="../QScintilla/Editor.py" line="6312" />
       <source>Code Coverage</source>
       <translation>Kod Koruyucu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6316" />
+      <location filename="../QScintilla/Editor.py" line="6313" />
       <source>Please select a coverage file</source>
       <translation>Lütfen bir koruyucu dosya seçiniz</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6391" />
-      <location filename="../QScintilla/Editor.py" line="6383" />
+      <location filename="../QScintilla/Editor.py" line="6388" />
+      <location filename="../QScintilla/Editor.py" line="6380" />
       <source>Show Code Coverage Annotations</source>
       <translation>Kodların Dipnotunu Göster</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6384" />
+      <location filename="../QScintilla/Editor.py" line="6381" />
       <source>All lines have been covered.</source>
       <translation>Tüm satırlar korumaya alındı.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6392" />
+      <location filename="../QScintilla/Editor.py" line="6389" />
       <source>There is no coverage file available.</source>
       <translation>Hazırda koruma dosyası yok.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6496" />
+      <location filename="../QScintilla/Editor.py" line="6493" />
       <source>Profile Data</source>
       <translation>Veri Kesiti</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6497" />
+      <location filename="../QScintilla/Editor.py" line="6494" />
       <source>Please select a profile file</source>
       <translation>Lütfen kesit dosyasını seçiniz</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6658" />
-      <location filename="../QScintilla/Editor.py" line="6652" />
+      <location filename="../QScintilla/Editor.py" line="6655" />
+      <location filename="../QScintilla/Editor.py" line="6649" />
       <source>Syntax Error</source>
       <translation>Sözdizimi Hatası</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6659" />
+      <location filename="../QScintilla/Editor.py" line="6656" />
       <source>No syntax error message available.</source>
       <translation>Uygun söz dizimi hata mesajı yok.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
-      <location filename="../QScintilla/Editor.py" line="6864" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
+      <location filename="../QScintilla/Editor.py" line="6863" />
       <source>Warning</source>
       <translation type="unfinished">Dikkat</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
       <source>No warning messages available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6934" />
+      <location filename="../QScintilla/Editor.py" line="6933" />
       <source>Style: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6937" />
+      <location filename="../QScintilla/Editor.py" line="6936" />
       <source>Warning: {0}</source>
       <translation>Dikkat: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6944" />
+      <location filename="../QScintilla/Editor.py" line="6943" />
       <source>Error: {0}</source>
       <translation>Hata: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Macro Name</source>
       <translation>Makro Adı</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Select a macro name:</source>
       <translation>Bir makro ismi seç:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7077" />
+      <location filename="../QScintilla/Editor.py" line="7076" />
       <source>Load macro file</source>
       <translation>Makro dosyasını yükle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7123" />
-      <location filename="../QScintilla/Editor.py" line="7079" />
+      <location filename="../QScintilla/Editor.py" line="7122" />
+      <location filename="../QScintilla/Editor.py" line="7078" />
       <source>Macro files (*.macro)</source>
       <translation>Makro dosyaları (*.macro)</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7100" />
+      <location filename="../QScintilla/Editor.py" line="7090" />
+      <source>Error loading macro</source>
+      <translation>Makronun yüklenmesinde hata</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7091" />
+      <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="7101" />
-      <location filename="../QScintilla/Editor.py" line="7091" />
-      <source>Error loading macro</source>
-      <translation>Makronun yüklenmesinde hata</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7092" />
-      <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="7102" />
       <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="7121" />
+      <location filename="../QScintilla/Editor.py" line="7120" />
       <source>Save macro file</source>
       <translation>Makro Dosyasını Kaydet</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7138" />
+      <source>Save macro</source>
+      <translation>Makro Kaydet</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7139" />
-      <source>Save macro</source>
-      <translation>Makro Kaydet</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7140" />
       <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="7154" />
+      <source>Error saving macro</source>
+      <translation>Makronun kaydedilmesinde hata</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7155" />
-      <source>Error saving macro</source>
-      <translation>Makronun kaydedilmesinde hata</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7156" />
       <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="7168" />
+      <source>Start Macro Recording</source>
+      <translation>Makro Kaydı Başladı</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7169" />
-      <source>Start Macro Recording</source>
-      <translation>Makro Kaydı Başladı</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7170" />
       <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="7195" />
+      <source>Macro Recording</source>
+      <translation>Makro Kaydediliyor</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7196" />
-      <source>Macro Recording</source>
-      <translation>Makro Kaydediliyor</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation>Makronun ismini gir:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7348" />
+      <location filename="../QScintilla/Editor.py" line="7346" />
       <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="7354" />
+      <location filename="../QScintilla/Editor.py" line="7352" />
       <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="7361" />
+      <location filename="../QScintilla/Editor.py" line="7359" />
       <source>File changed</source>
       <translation>Dosya değiştirilmiş</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7411" />
+      <location filename="../QScintilla/Editor.py" line="7409" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7716" />
+      <location filename="../QScintilla/Editor.py" line="7714" />
       <source>Drop Error</source>
       <translation>Düşme hatası</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7717" />
+      <location filename="../QScintilla/Editor.py" line="7715" />
       <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="7735" />
+      <source>Resources</source>
+      <translation>Kaynaklar</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7737" />
-      <source>Resources</source>
-      <translation>Kaynaklar</translation>
+      <source>Add file...</source>
+      <translation>Dosya ekle...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7738" />
+      <source>Add files...</source>
+      <translation>Dosyaları ekle...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="7739" />
-      <source>Add file...</source>
-      <translation>Dosya ekle...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7740" />
-      <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="7741" />
-      <source>Add aliased file...</source>
-      <translation>Kısaltmalar dosyasına ekle...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>Yaral kaynak ekle...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7746" />
+      <location filename="../QScintilla/Editor.py" line="7744" />
       <source>Add resource frame</source>
       <translation>Çerçeve kaynağı ekle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7765" />
+      <location filename="../QScintilla/Editor.py" line="7763" />
       <source>Add file resource</source>
       <translation>Dosya kaynağını ekle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7777" />
       <source>Add file resources</source>
       <translation>Dosya kaynaklarını ekle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7797" />
+      <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7795" />
       <source>Add aliased file resource</source>
       <translation>Kısaltmalar dosyası kaynağını ekle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7804" />
+      <location filename="../QScintilla/Editor.py" line="7802" />
       <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="7879" />
+      <location filename="../QScintilla/Editor.py" line="7877" />
       <source>Package Diagram</source>
       <translation>Paket Şeması</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7880" />
+      <location filename="../QScintilla/Editor.py" line="7878" />
       <source>Include class attributes?</source>
       <translation>Sınıf nitelikleri dahil edilsin mi?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7900" />
+      <location filename="../QScintilla/Editor.py" line="7898" />
       <source>Imports Diagram</source>
       <translation>Şemayı İçe Aktar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7901" />
+      <location filename="../QScintilla/Editor.py" line="7899" />
       <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="7920" />
+      <location filename="../QScintilla/Editor.py" line="7918" />
       <source>Application Diagram</source>
       <translation>Uygulama Şeması</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7921" />
+      <location filename="../QScintilla/Editor.py" line="7919" />
       <source>Include module names?</source>
       <translation>Modül isimleri dahil edilsin mi?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="8274" />
+      <source>Add to dictionary</source>
+      <translation>Sözlüğe ekle</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8276" />
-      <source>Add to dictionary</source>
-      <translation>Sözlüğe ekle</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>Hepsini Yoksay</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8696" />
+      <location filename="../QScintilla/Editor.py" line="8694" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8697" />
+      <location filename="../QScintilla/Editor.py" line="8695" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8790" />
+      <location filename="../QScintilla/Editor.py" line="8788" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8791" />
+      <location filename="../QScintilla/Editor.py" line="8789" />
       <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="8887" />
+      <location filename="../QScintilla/Editor.py" line="8885" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8893" />
+      <location filename="../QScintilla/Editor.py" line="8891" />
       <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="8961" />
+      <location filename="../QScintilla/Editor.py" line="8959" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8962" />
+      <location filename="../QScintilla/Editor.py" line="8960" />
       <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>
@@ -14934,7 +14962,7 @@
   <context>
     <name>EditorHighlightersPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="144" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="145" />
       <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="51" />
       <source>Alternative</source>
       <translation>Alternatif</translation>
@@ -20796,8 +20824,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1589" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1573" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1591" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1575" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="196" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -20808,7 +20836,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1674" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1676" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="203" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -20859,8 +20887,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1673" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1632" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1634" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="363" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
@@ -20971,17 +20999,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1574" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1576" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1588" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1590" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1633" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1635" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -21598,27 +21626,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="72" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="67" />
       <source>{0} wants to use desktop notifications.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="98" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="92" />
       <source>Remember</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="100" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="94" />
       <source>Allow</source>
       <translation type="unfinished">Kabul etmek</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="101" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="95" />
       <source>Deny</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="126" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="120" />
       <source>{0} wants to use an unknown feature.</source>
       <translation type="unfinished" />
     </message>
@@ -21835,7 +21863,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="486" />
+      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="487" />
       <source>Error loading feed</source>
       <translation type="unfinished" />
     </message>
@@ -23087,7 +23115,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1643" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="213" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -23108,158 +23136,158 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="281" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="283" />
       <source>Creating Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="296" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="298" />
       <source>Adding files to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="305" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
       <source>Initial commit to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="333" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="335" />
       <source>Cloning project from a Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="428" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="429" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="485" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="546" />
       <source>Switch</source>
       <translation type="unfinished">Değiştirmek</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="545" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="547" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="575" />
       <source>Synchronizing with the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="619" />
       <source>Adding files/directories to the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="691" />
       <source>Removing files/directories from the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="754" />
       <source>Renaming {0}</source>
       <translation type="unfinished">Yenşden adlandırılıyor {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="876" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="929" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="918" />
       <source>Revert changes</source>
       <translation type="unfinished">Değişiklikleri başa döndür</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="919" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="930" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="936" />
       <source>Reverting changes</source>
       <translation type="unfinished">Değişiklikler eski haline alınıyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="988" />
       <source>Merging</source>
       <translation type="unfinished">Birleştiriliyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1012" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1016" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1228" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1232" />
       <source>Git Command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1330" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1336" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1334" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1340" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiketler&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1346" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiketler&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1352" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branşlar&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1357" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1356" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1362" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1361" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1367" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1366" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1372" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1371" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1377" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1383" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -23269,459 +23297,459 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1458" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halihazırda bulunuyor. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1517" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1500" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1506" />
       <source>Git Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1507" />
       <source>&lt;p&gt;Copying the directory &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="../Plugins/VcsPlugins/vcsGit/git.py" line="1518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
       <source>&lt;p&gt;Copying the file &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="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2726" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1645" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1707" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1694" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1683" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1713" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1689" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1708" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1714" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Dosya &lt;b&gt;{0}&lt;/b&gt; okunamıyor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1760" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1766" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1796" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1802" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1835" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1841" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1869" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1894" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1924" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1951" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1957" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1954" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1960" />
       <source>Apply patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2034" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2040" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2284" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2326" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2347" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2348" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2376" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2378" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2395" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2430" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2459" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2525" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2546" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2828" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2672" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2725" />
       <source>Process Generation Error</source>
       <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2771" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2754" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2736" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2738" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2755" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2772" />
       <source>&lt;p&gt;The 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="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2791" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2819" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2793" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2817" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3161" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2991" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3047" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3048" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3183" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3240" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3271" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3294" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3318" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3396" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3598" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3436" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3599" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3559" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3510" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3437" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3509" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3469" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3483" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3558" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3547" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3548" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3573" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3609" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3610" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3620" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3647" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3707" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3729" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3798" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3804" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3815" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3821" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3839" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3905" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3945" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4012" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
-      <source>All</source>
-      <translation type="unfinished">Hepsi</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
-      <source>Submodule Path</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
+      <source>All</source>
+      <translation type="unfinished">Hepsi</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4029" />
+      <source>Submodule Path</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4030" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4079" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4112" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4143" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4266" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -24134,12 +24162,12 @@
       <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="213" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="214" />
       <source>Changed by skipped commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="215" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="216" />
       <source>Commit cannot be skipped</source>
       <translation type="unfinished" />
     </message>
@@ -25241,7 +25269,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1896" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1891" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="340" />
       <source>Branch</source>
       <translation type="unfinished" />
@@ -25262,9 +25290,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1957" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1868" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1952" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1840" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="356" />
       <source>Switch</source>
       <translation type="unfinished">Değiştirmek</translation>
@@ -25275,7 +25303,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1979" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="364" />
       <source>Show Short Log</source>
       <translation type="unfinished" />
@@ -25296,125 +25324,125 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="662" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="664" />
+      <source>Could not start the git executable.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="667" />
-      <source>Could not start the git executable.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="670" />
       <source>Git Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="799" />
       <source>{0} ({1}%)</source>
       <comment>action, confidence</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="869" />
       <source>Process Generation Error</source>
       <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="874" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="870" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1345" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1342" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1359" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1356" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1800" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1958" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1806" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1953" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1801" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished">Projenin yeniden okunması gerekiyor. Şimdi yapılsın mı?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1985" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1980" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841" />
       <source>Select a branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1935" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1897" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892" />
       <source>Select a default branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1934" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1929" />
       <source>Branch &amp; Switch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2159" />
       <source>Find Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2160" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished">'{0}' bulunamadı.</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2209" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2204" />
       <source>Differences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2221" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2216" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2237" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2232" />
       <source>Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2262" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2257" />
       <source>There is no difference.</source>
       <translation type="unfinished">Herhangi bir farklılık bulunamadı.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2429" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2412" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2424" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2389" />
       <source>Save Diff</source>
       <translation type="unfinished">Farklılıkları Kaydet</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2391" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished">Patch Dosyaları (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2408" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Yama dosyası &lt;b&gt;{0}&lt;/b&gt;  zaten var. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2425" />
       <source>&lt;p&gt;The patch 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;yama kaydedilemedi.&lt;br&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
@@ -28817,7 +28845,7 @@
       <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="383" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="384" />
       <source>%n file(s) changed</source>
       <translation>
         <numerusform />
@@ -28825,7 +28853,7 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="386" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="387" />
       <source>%n line(s) inserted</source>
       <translation>
         <numerusform />
@@ -28833,7 +28861,7 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="390" />
       <source>%n line(s) deleted</source>
       <translation>
         <numerusform />
@@ -28997,7 +29025,7 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195" />
       <source>Commit</source>
       <translation type="unfinished">Teslimat</translation>
@@ -29028,7 +29056,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210" />
       <source>Add</source>
       <translation type="unfinished">Ekle</translation>
@@ -29059,7 +29087,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226" />
       <source>Differences</source>
       <translation type="unfinished" />
@@ -29080,7 +29108,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244" />
       <source>Revert</source>
       <translation type="unfinished">Başa Dönme</translation>
@@ -29091,7 +29119,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253" />
       <source>Forget Missing</source>
       <translation type="unfinished" />
@@ -29102,7 +29130,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="837" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257" />
       <source>Restore Missing</source>
       <translation type="unfinished" />
@@ -29149,98 +29177,98 @@
       <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="605" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="468" />
       <source>all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="676" />
       <source>There are no entries selected to be committed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="719" />
       <source>There are no unversioned entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="741" />
-      <source>Stage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="742" />
+      <source>Stage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="743" />
       <source>There are no stageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="765" />
-      <source>Unstage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="766" />
+      <source>Unstage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="767" />
       <source>There are no unstageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="791" />
       <source>There are no missing entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810" />
       <source>There are no uncommitted, unstaged changes available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="874" />
       <source>There are no uncommitted changes available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="923" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="899" />
-      <source>Working Tree to Staging Area</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
-      <source>Staging Area to HEAD Commit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="924" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
+      <source>Working Tree to Staging Area</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="901" />
+      <source>Staging Area to HEAD Commit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="925" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="902" />
       <source>Working Tree to HEAD Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="928" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="905" />
-      <source>Differences Side-by-Side</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="929" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="906" />
+      <source>Differences Side-by-Side</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="907" />
       <source>Select the compare method.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1239" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1240" />
       <source>Revert selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1241" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1242" />
       <source>Revert hunk</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1247" />
       <source>Are you sure you want to revert the selected changes?</source>
       <translation type="unfinished" />
     </message>
@@ -29897,12 +29925,12 @@
       <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="336" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="337" />
       <source>current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="340" />
       <source>checked out in linked worktree</source>
       <translation type="unfinished" />
     </message>
@@ -30389,101 +30417,101 @@
       <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="516" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="533" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="552" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="535" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="553" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="576" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="577" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="578" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="612" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="595" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="597" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="614" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="634" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="636" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="642" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="669" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="723" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="699" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="701" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="725" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="750" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="762" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="752" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="763" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -30539,27 +30567,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="199" />
+      <location filename="../Globals/__init__.py" line="197" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="202" />
+      <location filename="../Globals/__init__.py" line="200" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="205" />
+      <location filename="../Globals/__init__.py" line="203" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="208" />
+      <location filename="../Globals/__init__.py" line="206" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="211" />
+      <location filename="../Globals/__init__.py" line="209" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -31358,37 +31386,37 @@
   <context>
     <name>HelpSearchWidget</name>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="166" />
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
       <source>Open Link</source>
       <translation>Açık Bağlantı</translation>
     </message>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="168" />
-      <source>Open Link in New Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
-      <source>Open Link in Background Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="171" />
-      <source>Open Link in New Tab</source>
-      <translation>Yeni Sekmede Yeni Bağlantı Aç</translation>
+      <source>Open Link in New Page</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="172" />
-      <source>Open Link in Background Tab</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="173" />
-      <source>Open Link in New Window</source>
-      <translation type="unfinished" />
+      <source>Open Link in Background Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="174" />
+      <source>Open Link in New Tab</source>
+      <translation>Yeni Sekmede Yeni Bağlantı Aç</translation>
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="175" />
+      <source>Open Link in Background Tab</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="176" />
+      <source>Open Link in New Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="178" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -31713,104 +31741,104 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="442" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
       <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="443" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Qt4 Belgeleri {5 ?}</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Qt4 Belgeleri {6 ?}</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">PyQt4 Belgeleri {5 ?}</translation>
+      <source>Qt5 Documentation</source>
+      <translation type="unfinished">Qt4 Belgeleri {5 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>PyQt6 Documentation</source>
-      <translation type="unfinished">PyQt4 Belgeleri {6 ?}</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Qt4 Belgeleri {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
+      <source>PyQt5 Documentation</source>
+      <translation type="unfinished">PyQt4 Belgeleri {5 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
+      <source>PyQt6 Documentation</source>
+      <translation type="unfinished">PyQt4 Belgeleri {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="506" />
-      <source>Open HTML File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <source>Open HTML File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
       <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="699" />
       <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="723" />
       <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="734" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="759" />
       <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="762" />
       <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="767" />
       <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="860" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="840" />
       <source>Clear History</source>
       <translation type="unfinished">Geçmişi Sil</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="968" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="970" />
       <source>Updating search index</source>
       <translation type="unfinished">Arama index yenileniyor</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1026" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1028" />
       <source>Filtered by: </source>
       <translation type="unfinished">Süzülen: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1062" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1057" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1064" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
       <source>Unfiltered</source>
       <translation type="unfinished">Süzülmemiş</translation>
     </message>
@@ -33224,446 +33252,446 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="311" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="313" />
       <source>Creating Mercurial repository</source>
       <translation>Mercurial kaynak havauzu oluşturuluyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="330" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="332" />
       <source>Initial commit to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="368" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="370" />
       <source>Cloning project from a Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="468" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="470" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="469" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="471" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="531" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="533" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="623" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="625" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="653" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="708" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="754" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="756" />
       <source>Renaming {0}</source>
       <translation>Yenşden adlandırılıyor {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="879" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="881" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="927" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="916" />
       <source>Revert changes</source>
       <translation type="unfinished">Değişiklikleri başa döndür</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="917" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="928" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="934" />
       <source>Reverting changes</source>
       <translation>Değişiklikler eski haline alınıyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="977" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="979" />
       <source>Merging</source>
       <translation>Birleştiriliyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1017" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1007" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1009" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1008" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1010" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1020" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1021" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1023" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1044" />
       <source>Current branch tip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1216" />
       <source>Mercurial command</source>
       <translation>Mercurial komut</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1373" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1377" />
       <source>Copying {0}</source>
       <translation>Kopyalanıyor {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1612" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1600" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1591" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1604" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1595" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1613" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1617" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Dosya &lt;b&gt;{0}&lt;/b&gt; okunamıyor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2274" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2263" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2253" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1688" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2267" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2257" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1692" />
       <source>Apply changegroups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1691" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1695" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation>Uzak Mercurial kaynak havuzundan çekiliyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1733" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1875" />
       <source>Marking as 'unresolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1877" />
       <source>Marking as 'resolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1895" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1899" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1922" />
       <source>Creating branch in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1930" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
       <source>Showing current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2022" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2026" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2035" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2039" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2050" />
       <source>Showing aliases for remote repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2061" />
       <source>Recovering from interrupted transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2068" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2072" />
       <source>Identifying project directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2114" />
       <source>Create .hgignore file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2111" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2115" />
       <source>&lt;p&gt;The 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; dosyası halihazırda bulunuyor. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2212" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2186" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2216" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2190" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2172" />
       <source>Create changegroup</source>
       <translation>Değişimgrubu oluştur</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2170" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2174" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation>Mercurial Değiştirme grubu Dosyaları (*.hg)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2187" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2191" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Preview changegroup</source>
       <translation>Değişimgrubu öngörünümü</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2255" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2259" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2232" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation>Mercurial Değişimgrubu Dosyaları (*.hg);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2264" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2268" />
       <source>Shall the working directory be updated?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2300" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2320" />
       <source>Mercurial Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
       <source>Removing files from the Mercurial repository only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2383" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2364" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2387" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2368" />
       <source>Backing out changeset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2365" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
       <source>No revision given. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2403" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2398" />
+      <source>Rollback last transaction</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2399" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2394" />
-      <source>Rollback last transaction</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2465" />
       <source>Import Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2513" />
       <source>Export Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2553" />
       <source>Change Phase</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2607" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2646" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2656" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2662" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2666" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2685" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2689" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2703" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2700" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2704" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2789" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2769" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2793" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2762" />
       <source>Add Sub-repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2828" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2759" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2832" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2774" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2846" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2790" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2850" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2794" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2827" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2813" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2849" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2831" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2817" />
       <source>Remove Sub-repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2818" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3062" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2925" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3066" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2929" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2930" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3063" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3067" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3179" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3183" />
       <source>Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3195" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3199" />
       <source>Delete Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3200" />
       <source>Select the bookmark to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3210" />
       <source>Delete Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3235" />
       <source>Rename Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3268" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3272" />
       <source>Move Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3341" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3345" />
       <source>Pull Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3342" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
       <source>Select the bookmark to be pulled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3354" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3358" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3380" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3384" />
       <source>Push Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3385" />
       <source>Select the bookmark to be push:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3396" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3400" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
@@ -34506,42 +34534,42 @@
   <context>
     <name>HgClient</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="91" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="98" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="140" />
-      <source>Did not receive the 'hello' message.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="142" />
-      <source>Received data on unexpected channel.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="147" />
+      <source>Did not receive the 'hello' message.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="149" />
+      <source>Received data on unexpected channel.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="154" />
       <source>Bad 'hello' message, expected 'capabilities: ' but got '{0}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="152" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="159" />
       <source>'capabilities' message did not contain any capability.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="168" />
       <source>Bad 'hello' message, expected 'encoding: ' but got '{0}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="166" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="173" />
       <source>'encoding' message did not contain any encoding.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="377" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="385" />
       <source>For message see output dialog.</source>
       <translation type="unfinished" />
     </message>
@@ -35952,7 +35980,7 @@
       <translation>den Kopyala</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2690" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2686" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="0" />
       <source>Differences</source>
       <translation type="unfinished" />
@@ -36083,7 +36111,7 @@
       <translation type="unfinished">Yerimleri</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2150" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2146" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
@@ -36140,8 +36168,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2244" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2240" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2223" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343" />
       <source>Switch</source>
       <translation type="unfinished">Değiştirmek</translation>
@@ -36172,8 +36200,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2362" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1562" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2358" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1558" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371" />
       <source>Pull Changes</source>
       <translation type="unfinished" />
@@ -36230,7 +36258,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2501" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="424" />
       <source>Apply Changegroup</source>
       <translation type="unfinished" />
@@ -36261,7 +36289,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2408" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2404" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="454" />
       <source>Strip Changesets</source>
       <translation type="unfinished" />
@@ -36282,117 +36310,117 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="889" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="866" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="886" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="837" />
       <source>Mercurial Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1210" />
       <source>{0} (large file)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1472" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1468" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1479" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1641" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1560" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1556" />
       <source>Pull Selected Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2409" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2363" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2245" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2151" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2498" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2405" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2359" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2147" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished">Projenin yeniden okunması gerekiyor. Şimdi yapılsın mı?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2224" />
       <source>Select bookmark to switch to (leave empty to use revision):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2273" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2269" />
       <source>Define Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2274" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2270" />
       <source>Enter bookmark name for changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2303" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2299" />
       <source>Move Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2300" />
       <source>Select the bookmark to be moved  to changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2637" />
       <source>Find Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2638" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished">'{0}' bulunamadı.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2689" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2685" />
       <source>Generating differences ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2701" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2697" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2713" />
       <source>Diff to Parent {0}{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2740" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2736" />
       <source>There is no difference.</source>
       <translation type="unfinished">Herhangi bir farklılık bulunamadı.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2891" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2875" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2857" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2853" />
       <source>Save Diff</source>
       <translation type="unfinished">Farklılıkları Kaydet</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2859" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2855" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished">Patch Dosyaları (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2876" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2872" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Yama dosyası &lt;b&gt;{0}&lt;/b&gt;  zaten var. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2892" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2888" />
       <source>&lt;p&gt;The patch 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;yama kaydedilemedi.&lt;br&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
@@ -41276,22 +41304,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="85" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -46068,9 +46096,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <location filename="../Network/IRC/IrcWidget.py" line="266" />
       <location filename="../Network/IRC/IrcWidget.py" line="261" />
       <location filename="../Network/IRC/IrcWidget.py" line="254" />
@@ -46105,260 +46133,260 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <source>Server found,connecting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
       <source>Connected,logging in...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
       <source>Server disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="607" />
+      <source>Message Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="608" />
-      <source>Message Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="609" />
       <source>Unknown message received from server:&lt;br/&gt;{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1032" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1022" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1014" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1006" />
-      <location filename="../Network/IRC/IrcWidget.py" line="651" />
-      <location filename="../Network/IRC/IrcWidget.py" line="643" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1030" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1020" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1012" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1004" />
+      <location filename="../Network/IRC/IrcWidget.py" line="650" />
+      <location filename="../Network/IRC/IrcWidget.py" line="642" />
       <source>CTCP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="644" />
+      <location filename="../Network/IRC/IrcWidget.py" line="643" />
       <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="652" />
+      <location filename="../Network/IRC/IrcWidget.py" line="651" />
       <source>Received unknown CTCP-{0} response from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="678" />
+      <location filename="../Network/IRC/IrcWidget.py" line="677" />
       <source>Notice</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="688" />
+      <location filename="../Network/IRC/IrcWidget.py" line="687" />
       <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="692" />
+      <location filename="../Network/IRC/IrcWidget.py" line="691" />
       <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="696" />
+      <location filename="../Network/IRC/IrcWidget.py" line="695" />
       <source>Mode</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="704" />
+      <location filename="../Network/IRC/IrcWidget.py" line="703" />
       <source>You have left channel {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="716" />
+      <location filename="../Network/IRC/IrcWidget.py" line="715" />
       <source>You are now known as {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="722" />
+      <location filename="../Network/IRC/IrcWidget.py" line="721" />
       <source>User {0} is now known as {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="728" />
+      <location filename="../Network/IRC/IrcWidget.py" line="727" />
       <source>Received PONG from {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="733" />
+      <location filename="../Network/IRC/IrcWidget.py" line="732" />
       <source>Server Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="767" />
+      <location filename="../Network/IRC/IrcWidget.py" line="765" />
       <source>Error</source>
       <translation type="unfinished">Hata</translation>
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="780" />
+      <source>Welcome</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="782" />
-      <source>Welcome</source>
+      <source>Support</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="784" />
-      <source>Support</source>
+      <source>User</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="786" />
-      <source>User</source>
+      <source>MOTD</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="788" />
-      <source>MOTD</source>
+      <source>Away</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="790" />
-      <source>Away</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="792" />
       <source>Info ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="794" />
+      <source>Message of the day</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="796" />
-      <source>Message of the day</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="798" />
       <source>End of message of the day</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="801" />
+      <location filename="../Network/IRC/IrcWidget.py" line="799" />
       <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="806" />
+      <location filename="../Network/IRC/IrcWidget.py" line="804" />
       <source>Current users on {0}: {1}, max. {2}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="811" />
+      <location filename="../Network/IRC/IrcWidget.py" line="809" />
       <source>Current users on the network: {0}, max. {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="813" />
+      <source>You are no longer marked as being away.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="815" />
-      <source>You are no longer marked as being away.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="817" />
       <source>You have been marked as being away.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="947" />
-      <location filename="../Network/IRC/IrcWidget.py" line="931" />
-      <location filename="../Network/IRC/IrcWidget.py" line="880" />
+      <location filename="../Network/IRC/IrcWidget.py" line="945" />
+      <location filename="../Network/IRC/IrcWidget.py" line="929" />
+      <location filename="../Network/IRC/IrcWidget.py" line="878" />
       <source>SSL Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="881" />
+      <location filename="../Network/IRC/IrcWidget.py" line="879" />
       <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
-      <location filename="../Network/IRC/IrcWidget.py" line="910" />
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
-      <location filename="../Network/IRC/IrcWidget.py" line="897" />
-      <location filename="../Network/IRC/IrcWidget.py" line="889" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
+      <location filename="../Network/IRC/IrcWidget.py" line="908" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
+      <location filename="../Network/IRC/IrcWidget.py" line="895" />
+      <location filename="../Network/IRC/IrcWidget.py" line="887" />
       <source>Socket Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="890" />
+      <location filename="../Network/IRC/IrcWidget.py" line="888" />
       <source>The host was not found. Please check the host name and port settings.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="898" />
+      <location filename="../Network/IRC/IrcWidget.py" line="896" />
       <source>The connection was refused by the peer. Please check the host name and port settings.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
       <source>The SSL handshake failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="911" />
+      <location filename="../Network/IRC/IrcWidget.py" line="909" />
       <source>The following network error occurred:&lt;br/&gt;{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
       <source>A network error occurred.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="932" />
+      <location filename="../Network/IRC/IrcWidget.py" line="930" />
       <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 type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="948" />
+      <location filename="../Network/IRC/IrcWidget.py" line="946" />
       <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1007" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1005" />
       <source>Received Version request from {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1015" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1013" />
       <source>Received CTCP-PING request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1023" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1021" />
       <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1033" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1031" />
       <source>Received unknown CTCP-{0} request from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1049" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1047" />
       <source>{0} ({1})</source>
       <comment>channel name, users count</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1071" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1069" />
       <source>Critical</source>
       <translation type="unfinished">Kritik</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1072" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1070" />
       <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
       <source>The given nickname is already in use.</source>
       <translation type="unfinished" />
     </message>
@@ -47369,7 +47397,7 @@
       <translation>İlişkilendirilecek alternatif Lexeri seç</translation>
     </message>
     <message>
-      <location filename="../Project/LexerAssociationDialog.py" line="131" />
+      <location filename="../Project/LexerAssociationDialog.py" line="132" />
       <location filename="../Project/LexerAssociationDialog.py" line="45" />
       <source>Alternative</source>
       <translation>Alternatif</translation>
@@ -49223,13 +49251,13 @@
       <translation type="unfinished">Yolu Panoya kopyala</translation>
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="485" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="487" />
       <source>Untitled {0}</source>
       <translation>Başlıksız {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="627" />
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="491" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="629" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="493" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
@@ -52555,317 +52583,317 @@
       <translation>&lt;b&gt;Temizle&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicideki tüm metinleri sil.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2862" />
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
       <source>About</source>
       <translation>Hakkında</translation>
     </message>
     <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
+      <source>&amp;About</source>
+      <translation>H&amp;akkında</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2860" />
+      <source>Display information about this software</source>
+      <translation>Bu yazılım hakkında bilgi göster</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2862" />
-      <source>&amp;About</source>
-      <translation>H&amp;akkında</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2864" />
-      <source>Display information about this software</source>
-      <translation>Bu yazılım hakkında bilgi göster</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <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;Hakkında&lt;/b&gt;&lt;p&gt;Bu yazılım hakkındaki çeşitli bilgileri gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About Qt</source>
       <translation>Qt Hakkında</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About &amp;Qt</source>
       <translation>&amp;Qt Hakkında</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2878" />
+      <location filename="../QScintilla/MiniEditor.py" line="2874" />
       <source>Display information about the Qt toolkit</source>
       <translation>Qt araçkiti hakkında bilgi göster</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2881" />
+      <location filename="../QScintilla/MiniEditor.py" line="2877" />
       <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 Hakkında&lt;/b&gt;&lt;p&gt;Qt Araçkiti hakkında bazı bilgiler gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2890" />
+      <location filename="../QScintilla/MiniEditor.py" line="2886" />
       <source>What's This?</source>
       <translation>Bu nedir?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <location filename="../QScintilla/MiniEditor.py" line="2888" />
       <source>&amp;What's This?</source>
       <translation>Bu &amp;Nedir?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2893" />
+      <location filename="../QScintilla/MiniEditor.py" line="2889" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2898" />
+      <location filename="../QScintilla/MiniEditor.py" line="2894" />
       <source>Context sensitive help</source>
       <translation>Duyarlı yardım</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2900" />
+      <location filename="../QScintilla/MiniEditor.py" line="2896" />
       <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="../QScintilla/MiniEditor.py" line="2918" />
+      <location filename="../QScintilla/MiniEditor.py" line="2914" />
       <source>Preferences</source>
       <translation type="unfinished">Seçenekler</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2920" />
+      <location filename="../QScintilla/MiniEditor.py" line="2916" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished">&amp;Seçenekler...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2926" />
+      <location filename="../QScintilla/MiniEditor.py" line="2922" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">tercih edilen ayarları yapınız</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2924" />
       <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="../QScintilla/MiniEditor.py" line="2942" />
+      <location filename="../QScintilla/MiniEditor.py" line="2938" />
       <source>&amp;File</source>
       <translation>&amp;Dosya</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2950" />
       <source>&amp;Edit</source>
       <translation>Düz&amp;en</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2964" />
+      <location filename="../QScintilla/MiniEditor.py" line="2960" />
       <source>&amp;Search</source>
       <translation type="unfinished">A&amp;ra</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2974" />
+      <location filename="../QScintilla/MiniEditor.py" line="2970" />
       <source>&amp;View</source>
       <translation type="unfinished">&amp;Görünüm</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2980" />
+      <location filename="../QScintilla/MiniEditor.py" line="2976" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished">Ayar&amp;lar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2985" />
+      <location filename="../QScintilla/MiniEditor.py" line="2981" />
       <source>&amp;Help</source>
       <translation>&amp;Yardım</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2997" />
+      <location filename="../QScintilla/MiniEditor.py" line="2993" />
       <source>File</source>
       <translation>Dosya</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3009" />
+      <location filename="../QScintilla/MiniEditor.py" line="3005" />
       <source>Edit</source>
       <translation>Düzen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3018" />
+      <location filename="../QScintilla/MiniEditor.py" line="3014" />
       <source>Search</source>
       <translation type="unfinished">Ara</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3024" />
+      <location filename="../QScintilla/MiniEditor.py" line="3020" />
       <source>View</source>
       <translation type="unfinished">Görünüm</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3030" />
+      <location filename="../QScintilla/MiniEditor.py" line="3026" />
       <source>Settings</source>
       <translation type="unfinished">Ayarlar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3033" />
+      <location filename="../QScintilla/MiniEditor.py" line="3029" />
       <source>Help</source>
       <translation>Yardım</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3046" />
+      <location filename="../QScintilla/MiniEditor.py" line="3042" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3056" />
+      <location filename="../QScintilla/MiniEditor.py" line="3052" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Durum çubuğununu bu parçası düzenleyicideki dosyanın yazılabilme durumunu işaret eder. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3065" />
+      <location filename="../QScintilla/MiniEditor.py" line="3061" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Durum çubuğununu bu parçası düzenleyicideki satır numarasını gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3074" />
+      <location filename="../QScintilla/MiniEditor.py" line="3070" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Durum çubuğununu bu parçası düzenleyicideki imlecin konumunu gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3088" />
+      <location filename="../QScintilla/MiniEditor.py" line="3084" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3095" />
+      <location filename="../QScintilla/MiniEditor.py" line="3091" />
       <source>Ready</source>
       <translation>Hazır</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <location filename="../QScintilla/MiniEditor.py" line="3166" />
       <source>eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3171" />
+      <location filename="../QScintilla/MiniEditor.py" line="3167" />
       <source>The document has unsaved changes.</source>
       <translation>Belgede kaydedilmemiş değişiklikler var.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="3194" />
       <source>Open File</source>
       <translation>Dosya Aç</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3199" />
+      <location filename="../QScintilla/MiniEditor.py" line="3195" />
       <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/MiniEditor.py" line="3227" />
+      <location filename="../QScintilla/MiniEditor.py" line="3223" />
       <source>File loaded</source>
       <translation>Dosya Yüklendi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <location filename="../QScintilla/MiniEditor.py" line="3304" />
       <source>Save File</source>
       <translation>Dosyayı Kaydet</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3309" />
+      <location filename="../QScintilla/MiniEditor.py" line="3305" />
       <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/MiniEditor.py" line="3315" />
+      <location filename="../QScintilla/MiniEditor.py" line="3311" />
       <source>File saved</source>
       <translation>Dosya Kaydedildi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>[*] - {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>Mini Editor</source>
       <translation>Mini Düzenleyici</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="3655" />
-      <location filename="../QScintilla/MiniEditor.py" line="3339" />
+      <location filename="../QScintilla/MiniEditor.py" line="3680" />
+      <location filename="../QScintilla/MiniEditor.py" line="3651" />
+      <location filename="../QScintilla/MiniEditor.py" line="3335" />
       <source>Untitled</source>
       <translation>Başlıksız</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
       <source>{0}[*] - {1}</source>
       <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3650" />
+      <location filename="../QScintilla/MiniEditor.py" line="3646" />
       <source>Printing...</source>
       <translation>Yazılıyor...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3666" />
+      <location filename="../QScintilla/MiniEditor.py" line="3662" />
       <source>Printing completed</source>
       <translation>Yazdırma tamalandı</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3668" />
+      <location filename="../QScintilla/MiniEditor.py" line="3664" />
       <source>Error while printing</source>
       <translation>Yazdırılırken hata</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3671" />
+      <location filename="../QScintilla/MiniEditor.py" line="3667" />
       <source>Printing aborted</source>
       <translation>Yazdırma iptal edildi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <location filename="../QScintilla/MiniEditor.py" line="3721" />
       <source>Select all</source>
       <translation>Hepsini seç</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3726" />
+      <location filename="../QScintilla/MiniEditor.py" line="3722" />
       <source>Deselect all</source>
       <translation>Tüm seçimi iptal et</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3739" />
+      <location filename="../QScintilla/MiniEditor.py" line="3735" />
       <source>Languages</source>
       <translation>Diller</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3742" />
+      <location filename="../QScintilla/MiniEditor.py" line="3738" />
       <source>No Language</source>
       <translation>Dil Yok</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3764" />
+      <location filename="../QScintilla/MiniEditor.py" line="3760" />
       <source>Guessed</source>
       <translation>Tahmin edilen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3786" />
-      <location filename="../QScintilla/MiniEditor.py" line="3768" />
+      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Alternatives</source>
       <translation>Alternatifler</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3783" />
+      <location filename="../QScintilla/MiniEditor.py" line="3779" />
       <source>Alternatives ({0})</source>
       <translation>Alternatifler ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <location filename="../QScintilla/MiniEditor.py" line="3810" />
       <source>Pygments Lexer</source>
       <translation>Pygments Lexer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3815" />
+      <location filename="../QScintilla/MiniEditor.py" line="3811" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Kullanmak için Pygment lexer seç.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4336" />
+      <location filename="../QScintilla/MiniEditor.py" line="4332" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4337" />
+      <location filename="../QScintilla/MiniEditor.py" line="4333" />
       <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>
@@ -52946,564 +52974,604 @@
   <context>
     <name>MiscellaneousChecker</name>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="15" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="16" />
       <source>coding magic comment not found</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="18" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="19" />
       <source>unknown encoding ({0}) found in coding magic comment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="21" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="23" />
       <source>copyright notice not present</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="24" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="26" />
       <source>copyright notice contains invalid author</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="27" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="30" />
       <source>"{0}" is a Python builtin and is being shadowed; consider renaming the variable</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="32" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="35" />
       <source>"{0}" is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="37" />
-      <source>unnecessary generator - rewrite as a list comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="41" />
+      <source>unnecessary generator - rewrite as a list comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="45" />
       <source>unnecessary generator - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="44" />
-      <source>unnecessary generator - rewrite as a dict comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="48" />
-      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
+      <source>unnecessary generator - rewrite as a dict comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="52" />
-      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="56" />
+      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="60" />
       <source>unnecessary {0} call - rewrite as a literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="59" />
-      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="63" />
-      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="67" />
+      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="71" />
       <source>unnecessary {0} call around {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="70" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="74" />
       <source>unnecessary {0} call within {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="73" />
-      <source>unnecessary subscript reversal of iterable within {0}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="77" />
+      <source>unnecessary subscript reversal of iterable within {0}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="81" />
       <source>unnecessary {0} literal - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="80" />
-      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="84" />
-      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
+      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="88" />
-      <source>unnecessary list call - remove the outer call to list()</source>
+      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="92" />
+      <source>unnecessary list call - remove the outer call to list()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="96" />
       <source>unnecessary {0} comprehension - rewrite using {0}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="95" />
-      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="99" />
-      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="103" />
+      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="108" />
       <source>sort keys - '{0}' should be before '{1}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="106" />
-      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="110" />
-      <source>use of 'datetime.datetime.today()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="115" />
-      <source>use of 'datetime.datetime.utcnow()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="120" />
-      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="125" />
-      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="129" />
-      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" />
-      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="112" />
+      <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="117" />
+      <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="122" />
+      <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="127" />
+      <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="131" />
+      <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" />
+      <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" />
-      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
+      <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="143" />
-      <source>use of 'datetime.date()' should be avoided.
-Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <source>multiple decorators were used to declare property '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="148" />
-      <source>use of 'datetime.date.today()' should be avoided.
-Use 'datetime.datetime.now(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="153" />
-      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="158" />
-      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="161" />
-      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="165" />
-      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="169" />
-      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="173" />
-      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="177" />
-      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="152" />
+      <source>use of 'datetime.datetime.today()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="157" />
+      <source>use of 'datetime.datetime.utcnow()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="162" />
+      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" />
+      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" />
+      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" />
+      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="181" />
-      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" />
-      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="188" />
-      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="193" />
-      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="198" />
-      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="202" />
-      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="206" />
-      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="210" />
-      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" />
-      <source>Python does not support the unary prefix increment</source>
+      <source>use of 'datetime.date()' should be avoided.
+Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" />
+      <source>use of 'datetime.date.today()' should be avoided.
+Use 'datetime.datetime.now(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" />
+      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="200" />
+      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" />
+      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="207" />
+      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="212" />
+      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="216" />
+      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="220" />
-      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="225" />
-      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="230" />
-      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="224" />
+      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" />
+      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="231" />
+      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" />
-      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
+      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" />
-      <source>do not call getattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="244" />
-      <source>do not call setattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="247" />
-      <source>do not call assert False since python -O removes these calls</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="251" />
-      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" />
-      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="262" />
-      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="267" />
-      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="272" />
-      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="276" />
-      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" />
+      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" />
+      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="254" />
+      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" />
+      <source>Python does not support the unary prefix increment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="264" />
+      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="269" />
+      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="274" />
+      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="280" />
+      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="285" />
-      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="290" />
-      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="296" />
-      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <source>do not call getattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" />
+      <source>do not call setattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" />
+      <source>do not call assert False since python -O removes these calls</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" />
+      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="301" />
-      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="306" />
-      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" />
-      <source>Function definition does not bind loop variable '{0}'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" />
-      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="322" />
-      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="327" />
-      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
+      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" />
+      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" />
+      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="329" />
+      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" />
-      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" />
-      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="347" />
-      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="352" />
-      <source>Except handlers should only be names of exception classes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="356" />
-      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" />
-      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" />
-      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="372" />
-      <source>unncessary f-string</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" />
-      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" />
-      <source>found {0} formatter</source>
+      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="340" />
+      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="345" />
+      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="350" />
+      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="355" />
+      <source>Function definition does not bind loop variable '{0}'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="359" />
+      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" />
+      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" />
+      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" />
-      <source>format string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="381" />
-      <source>docstring does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="384" />
-      <source>other string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" />
-      <source>format call uses too large index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="390" />
-      <source>format call uses missing keyword ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="393" />
-      <source>format call uses keyword arguments but no named entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="397" />
-      <source>format call uses variable arguments but no numbered entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="401" />
-      <source>format call uses implicit and explicit indexes together</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="405" />
-      <source>format call provides unused index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" />
-      <source>format call provides unused keyword ({0})</source>
+      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" />
+      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="391" />
+      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" />
+      <source>Except handlers should only be names of exception classes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="400" />
+      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="406" />
+      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" />
-      <source>logging statement uses string.format()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="414" />
-      <source>logging statement uses '%'</source>
+      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="417" />
-      <source>logging statement uses '+'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" />
-      <source>logging statement uses f-string</source>
+      <source>unncessary f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="418" />
+      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="423" />
-      <source>logging statement uses 'warn' instead of 'warning'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="426" />
-      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <source>found {0} formatter</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" />
+      <source>format string does contain unindexed parameters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="427" />
+      <source>docstring does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="430" />
-      <source>expected these __future__ imports: {0}; but got none</source>
+      <source>other string does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" />
-      <source>gettext import with alias _ found: {0}</source>
+      <source>format call uses too large index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="436" />
-      <source>print statement found</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" />
-      <source>one element tuple found</source>
+      <source>format call uses missing keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" />
+      <source>format call uses keyword arguments but no named entries</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="440" />
-      <source>mutable default argument of type {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="446" />
-      <source>mutable default argument of function call '{0}'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" />
-      <source>None should not be added at any return if function has no return value except None</source>
+      <source>format call uses variable arguments but no numbered entries</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="447" />
+      <source>format call uses implicit and explicit indexes together</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="451" />
+      <source>format call provides unused index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" />
-      <source>an explicit value at every return should be added if function has a return value except None</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="459" />
-      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <source>format call provides unused keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" />
+      <source>logging statement uses string.format()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="461" />
+      <source>logging statement uses '%'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="464" />
-      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="469" />
-      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <source>logging statement uses '+'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" />
+      <source>logging statement uses f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="470" />
+      <source>logging statement uses 'warn' instead of 'warning'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="474" />
+      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="478" />
+      <source>expected these __future__ imports: {0}; but got none</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="482" />
+      <source>gettext import with alias _ found: {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="486" />
+      <source>print statement found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="488" />
+      <source>one element tuple found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="495" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="492" />
+      <source>mutable default argument of type {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="498" />
+      <source>mutable default argument of function call '{0}'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="502" />
+      <source>None should not be added at any return if function has no return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="507" />
+      <source>an explicit value at every return should be added if function has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="512" />
+      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" />
+      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="523" />
+      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="529" />
       <source>commented code lines should be removed</source>
       <translation type="unfinished" />
     </message>
@@ -56730,103 +56798,103 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="193" />
+      <location filename="../PipInterface/Pip.py" line="195" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="216" />
+      <location filename="../PipInterface/Pip.py" line="220" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="217" />
+      <location filename="../PipInterface/Pip.py" line="221" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="257" />
+      <location filename="../PipInterface/Pip.py" line="261" />
       <source>Install PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="304" />
+      <location filename="../PipInterface/Pip.py" line="308" />
       <source>Repair PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="395" />
+      <location filename="../PipInterface/Pip.py" line="399" />
       <source>Upgrade Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="441" />
+      <location filename="../PipInterface/Pip.py" line="445" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="471" />
+      <location filename="../PipInterface/Pip.py" line="475" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="492" />
+      <location filename="../PipInterface/Pip.py" line="496" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="549" />
-      <location filename="../PipInterface/Pip.py" line="521" />
-      <location filename="../PipInterface/Pip.py" line="512" />
+      <location filename="../PipInterface/Pip.py" line="553" />
+      <location filename="../PipInterface/Pip.py" line="525" />
+      <location filename="../PipInterface/Pip.py" line="516" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="550" />
-      <location filename="../PipInterface/Pip.py" line="513" />
+      <location filename="../PipInterface/Pip.py" line="554" />
+      <location filename="../PipInterface/Pip.py" line="517" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="559" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="912" />
+      <location filename="../PipInterface/Pip.py" line="916" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="938" />
-      <location filename="../PipInterface/Pip.py" line="929" />
+      <location filename="../PipInterface/Pip.py" line="942" />
+      <location filename="../PipInterface/Pip.py" line="933" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="930" />
+      <location filename="../PipInterface/Pip.py" line="934" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="962" />
-      <location filename="../PipInterface/Pip.py" line="955" />
+      <location filename="../PipInterface/Pip.py" line="966" />
+      <location filename="../PipInterface/Pip.py" line="959" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="956" />
+      <location filename="../PipInterface/Pip.py" line="960" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="987" />
-      <location filename="../PipInterface/Pip.py" line="979" />
+      <location filename="../PipInterface/Pip.py" line="991" />
+      <location filename="../PipInterface/Pip.py" line="983" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="980" />
+      <location filename="../PipInterface/Pip.py" line="984" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -56849,12 +56917,12 @@
       <translation type="unfinished">Hatalar</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="153" />
+      <location filename="../PipInterface/PipDialog.py" line="154" />
       <source>Process Generation Error</source>
       <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="154" />
+      <location filename="../PipInterface/PipDialog.py" line="155" />
       <source>The process {0} could not be started.</source>
       <translation type="unfinished" />
     </message>
@@ -57719,30 +57787,30 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="434" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="435" />
       <source>Getting installed packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="448" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="449" />
       <source>Getting outdated packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1202" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1022" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1009" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="973" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
       <source>Search PyPI</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="975" />
       <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../PipInterface/PipPackagesWidget.py" line="989" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="990" />
       <source>%n package(s) found.</source>
       <translation type="unfinished">
         <numerusform />
@@ -57750,195 +57818,203 @@
       </translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="996" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="997" />
       <source>Showing first {0} packages found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1015" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1016" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1011" />
       <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1024" />
       <source>&lt;p&gt;There were no more results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1204" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1222" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1223" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1224" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1225" />
       <source>Install Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1227" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1228" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1230" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1231" />
       <source>Repair Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1237" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1238" />
       <source>Install</source>
       <translation type="unfinished">Kur</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1402" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1239" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1403" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1240" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1242" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1243" />
       <source>Install Local Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1245" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1246" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1252" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1253" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1254" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1255" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1257" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1258" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1260" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1261" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1264" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1265" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1271" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1272" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1273" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1274" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1276" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1277" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1279" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1280" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1282" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1283" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1299" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1300" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1303" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1304" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1307" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1308" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1311" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1312" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1318" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1319" />
       <source>Edit User Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1321" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1322" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1326" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1327" />
       <source>Configure...</source>
       <translation type="unfinished">Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1545" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1532" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1521" />
-      <source>Edit Configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1546" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1533" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1522" />
+      <source>Edit Configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1547" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1534" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1523" />
       <source>No valid configuration path determined. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1714" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1736" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1735" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1757" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1760" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1862" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1843" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1890" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1865" />
       <source>unknown</source>
       <translation type="unfinished">bilinmeyen</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1887" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
   </context>
   <context>
+    <name>PipPackagesWindow</name>
+    <message>
+      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <source>Manage Packages</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>PipPage</name>
     <message>
       <location filename="../Preferences/ConfigurationPages/PipPage.py" line="31" />
@@ -59330,7 +59406,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="471" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -60966,8 +61042,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6671" />
-      <location filename="../Project/Project.py" line="6642" />
+      <location filename="../Project/Project.py" line="6668" />
+      <location filename="../Project/Project.py" line="6639" />
       <location filename="../Project/Project.py" line="6593" />
       <location filename="../Project/Project.py" line="4800" />
       <source>Execute Make</source>
@@ -60989,7 +61065,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6648" />
+      <location filename="../Project/Project.py" line="6645" />
       <location filename="../Project/Project.py" line="4819" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
@@ -61509,22 +61585,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6643" />
+      <location filename="../Project/Project.py" line="6640" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6651" />
+      <location filename="../Project/Project.py" line="6648" />
       <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="6656" />
+      <location filename="../Project/Project.py" line="6653" />
       <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="6672" />
+      <location filename="../Project/Project.py" line="6669" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
@@ -64423,7 +64499,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="424" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="434" />
       <location filename="../DataViews/PyCoverageDialog.py" line="69" />
       <source>LCOV Report</source>
       <translation type="unfinished" />
@@ -64452,12 +64528,12 @@
       </translation>
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="425" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="435" />
       <source>Enter the path of the output file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="429" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="439" />
       <source>LCOV Files (*.lcov);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -64731,7 +64807,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="361" />
+      <location filename="../DataViews/PyProfileDialog.py" line="371" />
       <location filename="../DataViews/PyProfileDialog.py" line="91" />
       <source>Exclude Python Library</source>
       <translation>Dışarda Tutulan Python Kütüphaneleri</translation>
@@ -64782,7 +64858,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="357" />
+      <location filename="../DataViews/PyProfileDialog.py" line="367" />
       <source>Include Python Library</source>
       <translation>Python kütüphanesini içer</translation>
     </message>
@@ -66113,38 +66189,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="213" />
+      <location filename="../UI/PythonAstViewer.py" line="214" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="223" />
+      <location filename="../UI/PythonAstViewer.py" line="224" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="229" />
+      <location filename="../UI/PythonAstViewer.py" line="230" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="247" />
+      <location filename="../UI/PythonAstViewer.py" line="248" />
       <source>Module</source>
       <translation type="unfinished">Modül</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="279" />
+      <location filename="../UI/PythonAstViewer.py" line="280" />
       <source>{0}: {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="296" />
-      <location filename="../UI/PythonAstViewer.py" line="286" />
+      <location filename="../UI/PythonAstViewer.py" line="297" />
+      <location filename="../UI/PythonAstViewer.py" line="287" />
       <source>{0},{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="303" />
+      <location filename="../UI/PythonAstViewer.py" line="304" />
       <source>{0}  -  {1}</source>
       <translation type="unfinished" />
     </message>
@@ -68668,7 +68744,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="716" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="714" />
       <source>Initializing new queue repository</source>
       <translation type="unfinished" />
     </message>
@@ -69646,50 +69722,82 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1341" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1555" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
       <source>Active</source>
       <translation type="unfinished">Aktif</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1345" />
-      <source>Status</source>
-      <translation type="unfinished">Durum</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1349" />
-      <source>Hostname</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1350" />
-      <source>IPv4 Address</source>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1343" />
+      <source>Name</source>
+      <translation type="unfinished">Adı</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1568" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1344" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1347" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Public</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>MTU</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>{0} Bytes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1556" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1559" />
+      <source>Status</source>
+      <translation type="unfinished">Durum</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1563" />
+      <source>Hostname</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1564" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1565" />
       <source>Netmask</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1352" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1566" />
       <source>Gateway</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1353" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1567" />
       <source>DNS</source>
       <translation type="unfinished" />
     </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1354" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
   </context>
   <context>
     <name>RccCompilerOptionsDialog</name>
@@ -70768,7 +70876,7 @@
       <translation>Eşleşme durumu</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SearchWidget.py" line="98" />
+      <location filename="../WebBrowser/SearchWidget.py" line="100" />
       <source>Expression was not found.</source>
       <translation>İfade Bulunmadı.</translation>
     </message>
@@ -72152,46 +72260,46 @@
       <translation>Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2063" />
-      <location filename="../QScintilla/Shell.py" line="1845" />
+      <location filename="../QScintilla/Shell.py" line="2059" />
+      <location filename="../QScintilla/Shell.py" line="1841" />
       <location filename="../QScintilla/Shell.py" line="408" />
       <source>Project</source>
       <translation type="unfinished">Proje</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="810" />
+      <location filename="../QScintilla/Shell.py" line="806" />
       <source>Select History</source>
       <translation>Geçmişi Seç</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="811" />
+      <location filename="../QScintilla/Shell.py" line="807" />
       <source>Select the history entry to execute (most recent shown last).</source>
       <translation>geçmişte yapılanları göster (ençok gösterilenleri seç).</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="876" />
+      <location filename="../QScintilla/Shell.py" line="872" />
       <source>Passive Debug Mode</source>
       <translation>Pasif Hata Ayıklama Modu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="877" />
+      <location filename="../QScintilla/Shell.py" line="873" />
       <source>
 Not connected</source>
       <translation>
 Bağlantı yok</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="880" />
+      <location filename="../QScintilla/Shell.py" line="876" />
       <source>No.</source>
       <translation>NO.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="882" />
+      <location filename="../QScintilla/Shell.py" line="878" />
       <source>{0} on {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="929" />
+      <location filename="../QScintilla/Shell.py" line="925" />
       <source>Exception "{0}"
 {1}
 File: {2}, Line: {3}
@@ -72199,88 +72307,88 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="938" />
+      <location filename="../QScintilla/Shell.py" line="934" />
       <source>Exception "{0}"
 {1}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="958" />
+      <location filename="../QScintilla/Shell.py" line="954" />
       <source>Unspecified syntax error.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="961" />
+      <location filename="../QScintilla/Shell.py" line="957" />
       <source>Syntax error "{1}" in file {0} at line {2}, character {3}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="985" />
+      <location filename="../QScintilla/Shell.py" line="981" />
       <source>Signal "{0}" generated in file {1} at line {2}.
 Function: {3}({4})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1067" />
+      <location filename="../QScintilla/Shell.py" line="1063" />
       <source>StdOut: {0}</source>
       <translation>Stdçıktı:{0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1075" />
+      <location filename="../QScintilla/Shell.py" line="1071" />
       <source>StdErr: {0}</source>
       <translation>stdhata: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1101" />
+      <location filename="../QScintilla/Shell.py" line="1097" />
       <source>&lt;{0}&gt; {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1888" />
+      <location filename="../QScintilla/Shell.py" line="1884" />
       <source>Available Virtual Environments:
 {0}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1931" />
-      <location filename="../QScintilla/Shell.py" line="1895" />
+      <location filename="../QScintilla/Shell.py" line="1927" />
+      <location filename="../QScintilla/Shell.py" line="1891" />
       <source>Current Virtual Environment: '{0}'
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2203" />
+      <location filename="../QScintilla/Shell.py" line="2199" />
       <source>Drop Error</source>
       <translation>Düşme hatası</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2204" />
+      <location filename="../QScintilla/Shell.py" line="2200" />
       <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="2446" />
-      <location filename="../QScintilla/Shell.py" line="2431" />
-      <location filename="../QScintilla/Shell.py" line="2412" />
+      <location filename="../QScintilla/Shell.py" line="2442" />
+      <location filename="../QScintilla/Shell.py" line="2427" />
+      <location filename="../QScintilla/Shell.py" line="2408" />
       <source>Save Shell Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2414" />
+      <location filename="../QScintilla/Shell.py" line="2410" />
       <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="2432" />
+      <location filename="../QScintilla/Shell.py" line="2428" />
       <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="2447" />
+      <location filename="../QScintilla/Shell.py" line="2443" />
       <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>
@@ -72525,335 +72633,335 @@
   <context>
     <name>ShellWindow</name>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1275" />
-      <location filename="../QScintilla/ShellWindow.py" line="54" />
+      <location filename="../QScintilla/ShellWindow.py" line="1279" />
+      <location filename="../QScintilla/ShellWindow.py" line="62" />
       <source>eric Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="220" />
-      <source>Quit</source>
-      <translation type="unfinished">Çık</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="222" />
-      <source>&amp;Quit</source>
-      <translation type="unfinished">&amp;Çıkış</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="223" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished">Ctrl+Q</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="228" />
-      <source>Quit the Shell</source>
-      <translation type="unfinished">IDE den Çık</translation>
+      <source>Quit</source>
+      <translation type="unfinished">Çık</translation>
     </message>
     <message>
       <location filename="../QScintilla/ShellWindow.py" line="230" />
+      <source>&amp;Quit</source>
+      <translation type="unfinished">&amp;Çıkış</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="231" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished">Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="236" />
+      <source>Quit the Shell</source>
+      <translation type="unfinished">IDE den Çık</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="238" />
       <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="237" />
-      <source>New Window</source>
-      <translation type="unfinished">Yeni Pencere</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="239" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished">Yeni &amp;Pencere</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="240" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="245" />
-      <source>Open a new Shell window</source>
-      <translation type="unfinished" />
+      <source>New Window</source>
+      <translation type="unfinished">Yeni Pencere</translation>
     </message>
     <message>
       <location filename="../QScintilla/ShellWindow.py" line="247" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished">Yeni &amp;Pencere</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="248" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="253" />
+      <source>Open a new Shell window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="255" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="258" />
-      <location filename="../QScintilla/ShellWindow.py" line="256" />
-      <source>Restart</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="264" />
-      <source>Restart the shell</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="266" />
+      <location filename="../QScintilla/ShellWindow.py" line="264" />
+      <source>Restart</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="272" />
+      <source>Restart the shell</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="274" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="278" />
-      <location filename="../QScintilla/ShellWindow.py" line="276" />
+      <location filename="../QScintilla/ShellWindow.py" line="286" />
+      <location filename="../QScintilla/ShellWindow.py" line="284" />
       <source>Restart and Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="285" />
+      <location filename="../QScintilla/ShellWindow.py" line="293" />
       <source>Clear the window and restart the shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="288" />
+      <location filename="../QScintilla/ShellWindow.py" line="296" />
       <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="298" />
+      <location filename="../QScintilla/ShellWindow.py" line="306" />
       <source>Save Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="300" />
+      <location filename="../QScintilla/ShellWindow.py" line="308" />
       <source>Save Contents...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="309" />
+      <location filename="../QScintilla/ShellWindow.py" line="317" />
       <source>Save the current contents of the shell to a file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="312" />
+      <location filename="../QScintilla/ShellWindow.py" line="320" />
       <source>&lt;b&gt;Save Contents&lt;/b&gt;&lt;p&gt;Save the current contents of the shell to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="345" />
+      <location filename="../QScintilla/ShellWindow.py" line="353" />
       <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="../QScintilla/ShellWindow.py" line="367" />
+      <location filename="../QScintilla/ShellWindow.py" line="375" />
       <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Kopya&lt;/b&gt;&lt;p&gt;Seçilen metni clipboard kopyala.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="389" />
+      <location filename="../QScintilla/ShellWindow.py" line="397" />
       <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="411" />
+      <location filename="../QScintilla/ShellWindow.py" line="419" />
       <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="709" />
-      <location filename="../QScintilla/ShellWindow.py" line="708" />
+      <location filename="../QScintilla/ShellWindow.py" line="713" />
+      <location filename="../QScintilla/ShellWindow.py" line="712" />
       <source>Move forward one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="721" />
-      <location filename="../QScintilla/ShellWindow.py" line="720" />
+      <location filename="../QScintilla/ShellWindow.py" line="725" />
+      <location filename="../QScintilla/ShellWindow.py" line="724" />
       <source>Move back one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1115" />
+      <location filename="../QScintilla/ShellWindow.py" line="1119" />
       <source>Show History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1117" />
+      <location filename="../QScintilla/ShellWindow.py" line="1121" />
       <source>&amp;Show History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1123" />
-      <source>Show the shell history in a dialog</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1127" />
+      <source>Show the shell history in a dialog</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1131" />
       <source>Clear History</source>
       <translation type="unfinished">Geçmişi Sil</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1129" />
+      <location filename="../QScintilla/ShellWindow.py" line="1133" />
       <source>&amp;Clear History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1135" />
-      <source>Clear the shell history</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1139" />
+      <source>Clear the shell history</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1143" />
       <source>Select History Entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1140" />
+      <location filename="../QScintilla/ShellWindow.py" line="1144" />
       <source>Select History &amp;Entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1147" />
+      <location filename="../QScintilla/ShellWindow.py" line="1151" />
       <source>Select an entry of the shell history</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
+      <location filename="../QScintilla/ShellWindow.py" line="1160" />
       <source>About</source>
       <translation type="unfinished">Hakkında</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
-      <source>&amp;About</source>
-      <translation type="unfinished">H&amp;akkında</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1158" />
-      <source>Display information about this software</source>
-      <translation type="unfinished">Bu yazılım hakkında bilgi göster</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1160" />
+      <source>&amp;About</source>
+      <translation type="unfinished">H&amp;akkında</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1162" />
+      <source>Display information about this software</source>
+      <translation type="unfinished">Bu yazılım hakkında bilgi göster</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1164" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Hakkında&lt;/b&gt;&lt;p&gt;Bu yazılım hakkındaki çeşitli bilgileri gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About Qt</source>
       <translation type="unfinished">Qt Hakkında</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About &amp;Qt</source>
       <translation type="unfinished">&amp;Qt Hakkında</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1172" />
+      <location filename="../QScintilla/ShellWindow.py" line="1176" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished">Qt araçkiti hakkında bilgi göster</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1175" />
+      <location filename="../QScintilla/ShellWindow.py" line="1179" />
       <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Qt Hakkında&lt;/b&gt;&lt;p&gt;Qt Araçkiti hakkında bazı bilgiler gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1184" />
+      <location filename="../QScintilla/ShellWindow.py" line="1188" />
       <source>What's This?</source>
       <translation type="unfinished">Bu nedir?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1186" />
+      <location filename="../QScintilla/ShellWindow.py" line="1190" />
       <source>&amp;What's This?</source>
       <translation type="unfinished">Bu &amp;Nedir?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1187" />
+      <location filename="../QScintilla/ShellWindow.py" line="1191" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1192" />
+      <location filename="../QScintilla/ShellWindow.py" line="1196" />
       <source>Context sensitive help</source>
       <translation type="unfinished">Duyarlı yardım</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1194" />
+      <location filename="../QScintilla/ShellWindow.py" line="1198" />
       <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="../QScintilla/ShellWindow.py" line="1273" />
+      <location filename="../QScintilla/ShellWindow.py" line="1277" />
       <source>eric Shell [{0}]</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="1346" />
       <source>About eric Shell Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1343" />
+      <location filename="../QScintilla/ShellWindow.py" line="1347" />
       <source>The eric Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1370" />
+      <location filename="../QScintilla/ShellWindow.py" line="1374" />
       <source>&amp;File</source>
       <translation type="unfinished">&amp;Dosya</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1381" />
+      <location filename="../QScintilla/ShellWindow.py" line="1385" />
       <source>&amp;Edit</source>
       <translation type="unfinished">Düz&amp;en</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1392" />
+      <location filename="../QScintilla/ShellWindow.py" line="1396" />
       <source>&amp;View</source>
       <translation type="unfinished">&amp;Görünüm</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1399" />
+      <location filename="../QScintilla/ShellWindow.py" line="1403" />
       <source>Histor&amp;y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1406" />
+      <location filename="../QScintilla/ShellWindow.py" line="1410" />
       <source>&amp;Start</source>
       <translation type="unfinished">Ba&amp;şlat</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1412" />
+      <location filename="../QScintilla/ShellWindow.py" line="1416" />
       <source>&amp;Help</source>
       <translation type="unfinished">&amp;Yardım</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1445" />
+      <location filename="../QScintilla/ShellWindow.py" line="1449" />
       <source>File</source>
       <translation type="unfinished">Dosya</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1455" />
+      <location filename="../QScintilla/ShellWindow.py" line="1459" />
       <source>Edit</source>
       <translation type="unfinished">Düzen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1461" />
+      <location filename="../QScintilla/ShellWindow.py" line="1465" />
       <source>Find</source>
       <translation type="unfinished">Bul</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1466" />
+      <location filename="../QScintilla/ShellWindow.py" line="1470" />
       <source>View</source>
       <translation type="unfinished">Görünüm</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1472" />
+      <location filename="../QScintilla/ShellWindow.py" line="1476" />
       <source>History</source>
       <translation type="unfinished">Geçmiş</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1477" />
+      <location filename="../QScintilla/ShellWindow.py" line="1481" />
       <source>Help</source>
       <translation type="unfinished">Yardım</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1499" />
+      <location filename="../QScintilla/ShellWindow.py" line="1503" />
       <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -73211,24 +73319,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="363" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="345" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="324" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
       <source>Edit shortcuts</source>
       <translation>Kısayolları düzenle</translation>
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="326" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="347" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="365" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -76384,329 +76492,329 @@
       <translation>Proje bilgi havuzundan kontrol edilemiyor.&lt;br /&gt;Orjinal içerik eski haline getiriliyor.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="310" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="327" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="312" />
       <source>Importing project into Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="328" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="330" />
       <source>Imported revision {0}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="362" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="364" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="367" />
       <source>Subversion Checkout</source>
       <translation>Altsürüm Kontrolü</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="420" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="433" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="422" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="368" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="389" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="388" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="391" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="390" />
       <source>Checking project out of Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="419" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="432" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="421" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="434" />
       <source>Subversion Export</source>
       <translation>Altsürüm Dışaaktarma</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="443" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="445" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="456" />
       <source>Exporting project from Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="514" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="535" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="516" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="537" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="515" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="517" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="538" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="578" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="580" />
       <source>Commiting changes to Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="614" />
       <source>Committed revision {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="638" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="684" />
       <source>Synchronizing with the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="735" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="793" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="898" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="900" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="859" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="937" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="939" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="918" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="920" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="998" />
       <source>Moving {0}</source>
       <translation>Taşınıyor {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1177" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1148" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1027" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="998" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1292" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1124" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1094" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1179" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1029" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1294" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1265" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1126" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1096" />
       <source>Subversion Error</source>
       <translation>Altsürüm Hatası</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1095" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1001" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1097" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1028" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1125" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1030" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1127" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1062" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1161" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1147" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1149" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1324" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1172" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1326" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1174" />
       <source>Revision {0}.
 </source>
       <translation>Gözden geçirme {0}.
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1106" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1095" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1197" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1108" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1097" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
       <source>Revert changes</source>
       <translation type="unfinished">Değişiklikleri başa döndür</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1096" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1198" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1200" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1107" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1109" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1211" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1113" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1115" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1219" />
       <source>Reverting changes</source>
       <translation>Değişiklikler eski haline alınıyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1149" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1264" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1151" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1266" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1178" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1293" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1180" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1295" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1207" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1318" />
       <source>Switching to {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1416" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1275" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1418" />
       <source>Merging {0}</source>
       <translation>Birleştiriliyor {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1543" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1723" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1544" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1725" />
       <source>Cleaning up {0}</source>
       <translation>Temizle {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1573" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1763" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1765" />
       <source>Subversion command</source>
       <translation>Altsürüm komutu</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1744" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1883" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1747" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1887" />
       <source>Resolving conficts</source>
       <translation>Çelişki çözümleniyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1924" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1928" />
       <source>Copying {0}</source>
       <translation>Kopyalanıyor {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1844" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1823" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2000" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1847" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1987" />
       <source>Subversion Set Property</source>
       <translation>Altsürüm Özelliklerini Ayarla</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1870" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2045" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1988" />
       <source>You have to supply a property name. Aborting.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2023" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2027" />
       <source>Property set.</source>
       <translation>Özellikleri Ayarla.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1887" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1858" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2061" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2044" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1890" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1872" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2048" />
       <source>Subversion Delete Property</source>
       <translation>Altsürüm Silme Önceliği</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2079" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2083" />
       <source>Property deleted.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2114" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2102" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2093" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2294" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2105" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2096" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2310" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2298" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2289" />
       <source>Subversion Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2115" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2307" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2118" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2311" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Dosya &lt;b&gt;{0}&lt;/b&gt; okunamıyor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2348" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2352" />
       <source>Subversion Lock</source>
       <translation>Altsürüm Kilidi</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2349" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2353" />
       <source>Enter lock comment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2165" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2370" />
       <source>Locking in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2192" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2195" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2411" />
       <source>Unlocking in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2217" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2458" />
       <source>Relocating</source>
       <translation>Yeniden konumlandırılıyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2235" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2479" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2238" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2483" />
       <source>Repository Browser</source>
       <translation>Kaynak Havuzu Gözatıcısı</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2236" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2480" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2239" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2484" />
       <source>Enter the repository URL.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2269" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2505" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2309" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2272" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2509" />
       <source>Remove from changelist</source>
       <translation>Değişiklik listesinden çıkar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2285" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2544" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2533" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2548" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2537" />
       <source>Add to changelist</source>
       <translation>Değişiklik listesine ekle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2534" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2289" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2538" />
       <source>Enter name of the changelist:</source>
       <translation>Değişiklik listesi adını giriniz:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2373" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2598" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2602" />
       <source>Upgrade</source>
       <translation type="unfinished" />
     </message>
@@ -76887,7 +76995,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2052" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="181" />
       <source>The svn process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -76898,12 +77006,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1862" />
       <source>Enter property name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2051" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2054" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
@@ -77529,27 +77637,27 @@
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="208" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="284" />
       <source>There is no difference.</source>
       <translation>Herhangi bir farklılık bulunamadı.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="223" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="342" />
       <source>&lt;Start&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="225" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="343" />
       <source>&lt;End&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="410" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="444" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="426" />
@@ -77557,19 +77665,19 @@
       <translation>Farklılıkları Kaydet</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="378" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="428" />
       <source>Patch Files (*.diff)</source>
       <translation>Patch Dosyaları (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="396" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="445" />
       <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Yama dosyası &lt;b&gt;{0}&lt;/b&gt;  zaten var. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="412" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="461" />
       <source>&lt;p&gt;The patch 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;yama kaydedilemedi.&lt;br&gt;Sebep: {1}&lt;/p&gt;</translation>
@@ -77825,7 +77933,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="566" />
@@ -77835,7 +77943,7 @@
       <translation>Gözden Geçirme</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="674" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="563" />
@@ -79838,7 +79946,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="654" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.ui" line="0" />
@@ -80062,8 +80170,8 @@
       <translation>Değişiklik Listesine Ekle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1057" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="129" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="915" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="894" />
@@ -80072,7 +80180,7 @@
       <translation>DEğişiklik listesinden çıkar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="134" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="818" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="134" />
@@ -80080,7 +80188,7 @@
       <translation>Kilitli</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="136" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="837" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="136" />
@@ -80164,7 +80272,7 @@
       <translation>evet</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="491" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="562" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="491" />
@@ -80172,76 +80280,76 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="798" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="655" />
       <source>There are no entries selected to be committed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
-      <source>Add</source>
-      <translation>Ekle</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
+      <source>Add</source>
+      <translation>Ekle</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="840" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="697" />
       <source>There are no unversioned entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="888" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="862" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="720" />
-      <source>Revert</source>
-      <translation>Başa Dönme</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="791" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="769" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="721" />
-      <source>There are no uncommitted changes available/selected.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="720" />
+      <source>Revert</source>
+      <translation>Başa Dönme</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="934" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="912" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="864" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="769" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="721" />
+      <source>There are no uncommitted changes available/selected.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="747" />
       <source>There are no missing entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="768" />
       <source>Differences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="939" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="932" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="797" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="790" />
-      <source>Side-by-Side Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="790" />
+      <source>Side-by-Side Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="941" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="798" />
       <source>Only one file with uncommitted changes must be selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="819" />
       <source>There are no unlocked files available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="981" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="876" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="857" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="838" />
@@ -80249,25 +80357,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="998" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="856" />
       <source>Break Lock</source>
       <translation>Kırma Kilidi</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1017" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="875" />
       <source>Steal Lock</source>
       <translation>Hırsızlık Kilidi</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1038" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="895" />
       <source>There are no files available/selected not belonging to a changelist.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1059" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="916" />
       <source>There are no files available/selected belonging to a changelist.</source>
       <translation type="unfinished" />
@@ -80395,7 +80503,7 @@
   <context>
     <name>SvnStatusMonitorThread</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="141" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="143" />
       <source>Subversion status checked successfully (using pysvn)</source>
       <translation>Altsürüm durumu tam olarak kontrol edildi (pysvn kullanıldı)</translation>
     </message>
@@ -81994,7 +82102,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="187" />
+      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="188" />
       <source>&lt;font color="#FF0000"&gt;&lt;b&gt;Error:&lt;/b&gt; {0}&lt;/font&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -83020,7 +83128,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="565" />
+      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="563" />
       <source>Show Tab Manager</source>
       <translation type="unfinished" />
     </message>
@@ -83586,47 +83694,47 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="743" />
+      <location filename="../Tasks/TaskViewer.py" line="744" />
       <source>Activate task filter</source>
       <translation>Görev süzgeçini etkinleştir</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="744" />
+      <location filename="../Tasks/TaskViewer.py" line="745" />
       <source>The task filter doesn't have any active filters. Do you want to configure the filter settings?</source>
       <translation>Görev süzgeçlerinin etkin olan hiç süzgeçi yok. Bu süzgeçlerin ayarlarını yapmak ister misiniz?</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="778" />
-      <source>Scan Filter Patterns</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="779" />
+      <source>Scan Filter Patterns</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="780" />
       <source>Enter filename patterns of files to be excluded separated by a comma:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="821" />
-      <source>Extracting project tasks...</source>
-      <translation>Proje görevleri çıkarılıyor...</translation>
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="822" />
+      <source>Extracting project tasks...</source>
+      <translation>Proje görevleri çıkarılıyor...</translation>
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="823" />
       <source>Abort</source>
       <translation>Vazgeç</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="825" />
+      <location filename="../Tasks/TaskViewer.py" line="826" />
       <source>%v/%m Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="829" />
+      <location filename="../Tasks/TaskViewer.py" line="830" />
       <source>Tasks</source>
       <translation type="unfinished">Görevler</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="836" />
+      <location filename="../Tasks/TaskViewer.py" line="837" />
       <source>Extracting project tasks...
 {0}</source>
       <translation>Proje görevleri çıkarılıyor...
@@ -83769,7 +83877,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="316" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="318" />
       <location filename="../MicroPython/Devices/TeensyDevices.py" line="154" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -83810,17 +83918,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="317" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="319" />
       <source>&lt;p&gt;Teensy 4.0 and Teensy 4.1 are flashed using the 'Teensy Loader' application. Make sure you downloaded the MicroPython or CircuitPython .hex file.&lt;/p&gt;&lt;p&gt;See &lt;a href="{0}"&gt;the PJRC Teensy web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="339" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="341" />
       <source>Start 'Teensy Loader'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="340" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="342" />
       <source>&lt;p&gt;The 'Teensy Loader' application &lt;b&gt;teensy&lt;/b&gt; could not be started. Ensure it is in the application search path or start it manually.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -84046,78 +84154,78 @@
       <translation>Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="531" />
+      <location filename="../Templates/TemplateViewer.py" line="533" />
       <source>Remove Template</source>
       <translation>Şablonu Kaldır</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="532" />
+      <location filename="../Templates/TemplateViewer.py" line="534" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Gerçekten &lt;b&gt;{0}&lt;/b&gt; ni kaldırmak mı istiyorsunuz?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="560" />
-      <source>Import Templates</source>
-      <translation>Şablonları İçe Aktar</translation>
-    </message>
-    <message>
       <location filename="../Templates/TemplateViewer.py" line="562" />
+      <source>Import Templates</source>
+      <translation>Şablonları İçe Aktar</translation>
+    </message>
+    <message>
+      <location filename="../Templates/TemplateViewer.py" line="564" />
       <source>Templates Files (*.ecj);;XML Templates Files (*.e4c);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="595" />
-      <location filename="../Templates/TemplateViewer.py" line="579" />
+      <location filename="../Templates/TemplateViewer.py" line="597" />
+      <location filename="../Templates/TemplateViewer.py" line="581" />
       <source>Export Templates</source>
       <translation>Şablonları Dışa Aktar</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="581" />
+      <location filename="../Templates/TemplateViewer.py" line="583" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="596" />
+      <location filename="../Templates/TemplateViewer.py" line="598" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="614" />
+      <location filename="../Templates/TemplateViewer.py" line="616" />
       <source>Reload Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="615" />
+      <location filename="../Templates/TemplateViewer.py" line="617" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
       <source>Template Help</source>
       <translation>Şablon Yardımı</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="883" />
+      <location filename="../Templates/TemplateViewer.py" line="885" />
       <source>Edit Template Group</source>
       <translation>Şablon Grubunu Düzenle</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="884" />
+      <location filename="../Templates/TemplateViewer.py" line="886" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1005" />
+      <location filename="../Templates/TemplateViewer.py" line="1007" />
       <source>Read Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1006" />
+      <location filename="../Templates/TemplateViewer.py" line="1008" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;ŞAblon dosyası &lt;b&gt;{0}&lt;/b&gt; okunamıyor.&lt;/p&gt;</translation>
     </message>
@@ -86970,99 +87078,99 @@
   <context>
     <name>UMLGraphicsView</name>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="90" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="94" />
       <source>Delete shapes</source>
       <translation>KAlıpları sil</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="96" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="100" />
       <source>Increase width by {0} points</source>
       <translation>{0} nokta büyüt</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="103" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="107" />
       <source>Increase height by {0} points</source>
       <translation>Yüksekleği {0} nokta büyüt</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="110" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="114" />
       <source>Decrease width by {0} points</source>
       <translation>Genişliği {0} nokta küçült</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="117" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="121" />
       <source>Decrease height by {0} points</source>
       <translation>Yüksekleği {0} nokta küçült</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="123" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="127" />
       <source>Set size</source>
       <translation>Boyutları ayarla</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="128" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="132" />
       <source>Re-Scan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="133" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="137" />
       <source>Re-Layout</source>
       <translation>Yeniden-Yerleşim</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="138" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="142" />
       <source>Align Left</source>
       <translation>Sola Hizala</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="145" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="149" />
       <source>Align Center Horizontal</source>
       <translation>Yatay Ortaya Hizala</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="152" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="156" />
       <source>Align Right</source>
       <translation>Sağa Hizala</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="158" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="162" />
       <source>Align Top</source>
       <translation>Yukarı Hizala</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="165" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="169" />
       <source>Align Center Vertical</source>
       <translation>Dikey Ortaya Hizala</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="172" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="176" />
       <source>Align Bottom</source>
       <translation>Aşağı Hizala</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="235" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="240" />
       <source>Graphics</source>
       <translation>Grafik</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="395" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="382" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="365" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="400" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="387" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="370" />
       <source>Save Diagram</source>
       <translation>Şemayı Kaydet</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="367" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="372" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation>Taşınabilir Şebeke Grafikleri (*.png);;Ölçeklenebilir vektör Grafikleri (*.svg)</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="383" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="388" />
       <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="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="401" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;dosyası kaydedilemedi.&lt;/p&gt;</translation>
     </message>
@@ -87788,7 +87896,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7688" />
+      <location filename="../UI/UserInterface.py" line="7687" />
       <location filename="../UI/UserInterface.py" line="1934" />
       <location filename="../UI/UserInterface.py" line="1927" />
       <source>Load session</source>
@@ -89075,8 +89183,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7373" />
-      <location filename="../UI/UserInterface.py" line="7354" />
+      <location filename="../UI/UserInterface.py" line="7372" />
+      <location filename="../UI/UserInterface.py" line="7353" />
       <location filename="../UI/UserInterface.py" line="3358" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Kılavye Kısa Yollarını Dışa Aktar</translation>
@@ -89097,7 +89205,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7392" />
+      <location filename="../UI/UserInterface.py" line="7391" />
       <location filename="../UI/UserInterface.py" line="3377" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Klavye kısayollarını İçe Aktar</translation>
@@ -89812,185 +89920,185 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6609" />
+      <location filename="../UI/UserInterface.py" line="6610" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6896" />
-      <location filename="../UI/UserInterface.py" line="6834" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6716" />
-      <location filename="../UI/UserInterface.py" line="6652" />
-      <source>Documentation Missing</source>
-      <translation>Eksik Belgeleme</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6897" />
       <location filename="../UI/UserInterface.py" line="6835" />
       <location filename="../UI/UserInterface.py" line="6791" />
       <location filename="../UI/UserInterface.py" line="6717" />
       <location filename="../UI/UserInterface.py" line="6653" />
+      <source>Documentation Missing</source>
+      <translation>Eksik Belgeleme</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6898" />
+      <location filename="../UI/UserInterface.py" line="6836" />
+      <location filename="../UI/UserInterface.py" line="6792" />
+      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6654" />
       <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="6878" />
-      <location filename="../UI/UserInterface.py" line="6760" />
-      <source>Documentation</source>
-      <translation>Belgeleme</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6761" />
-      <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="6879" />
+      <location filename="../UI/UserInterface.py" line="6761" />
+      <source>Documentation</source>
+      <translation>Belgeleme</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6762" />
+      <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="6880" />
       <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="7056" />
+      <location filename="../UI/UserInterface.py" line="6993" />
+      <source>Start Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6994" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7057" />
-      <location filename="../UI/UserInterface.py" line="6994" />
-      <source>Start Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6995" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7058" />
       <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="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7374" />
+      <location filename="../UI/UserInterface.py" line="7373" />
       <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="7394" />
+      <location filename="../UI/UserInterface.py" line="7393" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7576" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7577" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7578" />
       <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
+      <location filename="../UI/UserInterface.py" line="7620" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7649" />
-      <location filename="../UI/UserInterface.py" line="7622" />
-      <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="7648" />
+      <location filename="../UI/UserInterface.py" line="7621" />
+      <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="7647" />
       <source>Read session</source>
       <translation>Oturumu oku</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7665" />
+      <location filename="../UI/UserInterface.py" line="7664" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7667" />
+      <location filename="../UI/UserInterface.py" line="7666" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7690" />
+      <location filename="../UI/UserInterface.py" line="7689" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7735" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7736" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7737" />
       <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="8106" />
+      <source>Drop Error</source>
+      <translation>Düşme hatası</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8107" />
-      <source>Drop Error</source>
-      <translation>Düşme hatası</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8108" />
       <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="8288" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8289" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8290" />
       <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="8346" />
+      <location filename="../UI/UserInterface.py" line="8333" />
+      <source>First time usage</source>
+      <translation>İlk kullanım</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8334" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8347" />
-      <location filename="../UI/UserInterface.py" line="8334" />
-      <source>First time usage</source>
-      <translation>İlk kullanım</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8335" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8348" />
       <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="8371" />
+      <location filename="../UI/UserInterface.py" line="8370" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8530" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8531" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8532" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -90075,7 +90183,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="989" />
+      <location filename="../Utilities/__init__.py" line="991" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;%-alanlarda çeşitli kodları kullanabilirsiniz. Tanımlanan kodlar:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;geçerli düzenleyicinin imlecinin sütunu&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;geçerli düzenleyicinin dizini&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;geçerli düzenleyicinin dosya adı&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;geçerli kullancının ana dizini&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;geçerli düzenleyicinin imlecinin satırı&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;geçerli projenin yolu&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;Geçici kullanıcının kullanıcı adı&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;oran işareti&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -91174,663 +91282,663 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="681" />
-      <location filename="../QScintilla/ShellWindow.py" line="302" />
+      <location filename="../QScintilla/ShellWindow.py" line="310" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation>Ctrl+S</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1032" />
-      <location filename="../QScintilla/ShellWindow.py" line="329" />
+      <location filename="../QScintilla/ShellWindow.py" line="337" />
       <source>Cut</source>
       <translation>Kes</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1034" />
-      <location filename="../QScintilla/ShellWindow.py" line="331" />
+      <location filename="../QScintilla/ShellWindow.py" line="339" />
       <source>Cu&amp;t</source>
       <translation>Ke&amp;s</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1036" />
-      <location filename="../QScintilla/ShellWindow.py" line="333" />
+      <location filename="../QScintilla/ShellWindow.py" line="341" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation>Ctrl+X</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1039" />
-      <location filename="../QScintilla/ShellWindow.py" line="336" />
+      <location filename="../QScintilla/ShellWindow.py" line="344" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation>Shift+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1045" />
-      <location filename="../QScintilla/ShellWindow.py" line="342" />
+      <location filename="../QScintilla/ShellWindow.py" line="350" />
       <source>Cut the selection</source>
       <translation>Seçimi kes</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1059" />
-      <location filename="../QScintilla/ShellWindow.py" line="351" />
+      <location filename="../QScintilla/ShellWindow.py" line="359" />
       <source>Copy</source>
       <translation>Kopyala</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1061" />
-      <location filename="../QScintilla/ShellWindow.py" line="353" />
+      <location filename="../QScintilla/ShellWindow.py" line="361" />
       <source>&amp;Copy</source>
       <translation>&amp;Kopyala</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1063" />
-      <location filename="../QScintilla/ShellWindow.py" line="355" />
+      <location filename="../QScintilla/ShellWindow.py" line="363" />
       <source>Ctrl+C</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+C</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1066" />
-      <location filename="../QScintilla/ShellWindow.py" line="358" />
+      <location filename="../QScintilla/ShellWindow.py" line="366" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1072" />
-      <location filename="../QScintilla/ShellWindow.py" line="364" />
+      <location filename="../QScintilla/ShellWindow.py" line="372" />
       <source>Copy the selection</source>
       <translation>Seçimi kopyala</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1086" />
-      <location filename="../QScintilla/ShellWindow.py" line="373" />
+      <location filename="../QScintilla/ShellWindow.py" line="381" />
       <source>Paste</source>
       <translation>Yapıştır</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1088" />
-      <location filename="../QScintilla/ShellWindow.py" line="375" />
+      <location filename="../QScintilla/ShellWindow.py" line="383" />
       <source>&amp;Paste</source>
       <translation>Ya&amp;pıştır</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1090" />
-      <location filename="../QScintilla/ShellWindow.py" line="377" />
+      <location filename="../QScintilla/ShellWindow.py" line="385" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation>Ctrl+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1093" />
-      <location filename="../QScintilla/ShellWindow.py" line="380" />
+      <location filename="../QScintilla/ShellWindow.py" line="388" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation>Shift+Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1099" />
-      <location filename="../QScintilla/ShellWindow.py" line="386" />
+      <location filename="../QScintilla/ShellWindow.py" line="394" />
       <source>Paste the last cut/copied text</source>
       <translation>En son kesilen/kopyalanan metni yapıştır</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1115" />
       <location filename="../ViewManager/ViewManager.py" line="1113" />
-      <location filename="../QScintilla/ShellWindow.py" line="400" />
-      <location filename="../QScintilla/ShellWindow.py" line="398" />
+      <location filename="../QScintilla/ShellWindow.py" line="408" />
+      <location filename="../QScintilla/ShellWindow.py" line="406" />
       <source>Clear</source>
       <translation>Temizle</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1117" />
-      <location filename="../QScintilla/ShellWindow.py" line="402" />
+      <location filename="../QScintilla/ShellWindow.py" line="410" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation>Alt+Shift+C</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1124" />
-      <location filename="../QScintilla/ShellWindow.py" line="409" />
+      <location filename="../QScintilla/ShellWindow.py" line="417" />
       <source>Clear all text</source>
       <translation>Tüm metni temizle</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
-      <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/ShellWindow.py" line="435" />
-      <location filename="../QScintilla/ShellWindow.py" line="434" />
+      <location filename="../QScintilla/MiniEditor.py" line="1681" />
+      <location filename="../QScintilla/MiniEditor.py" line="1680" />
+      <location filename="../QScintilla/ShellWindow.py" line="439" />
+      <location filename="../QScintilla/ShellWindow.py" line="438" />
       <source>Delete current line</source>
       <translation>Geçerli satırı sil</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1686" />
-      <location filename="../QScintilla/ShellWindow.py" line="436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1682" />
+      <location filename="../QScintilla/ShellWindow.py" line="440" />
       <source>Ctrl+Shift+L</source>
       <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
-      <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/ShellWindow.py" line="447" />
-      <location filename="../QScintilla/ShellWindow.py" line="446" />
+      <location filename="../QScintilla/MiniEditor.py" line="1203" />
+      <location filename="../QScintilla/MiniEditor.py" line="1202" />
+      <location filename="../QScintilla/ShellWindow.py" line="451" />
+      <location filename="../QScintilla/ShellWindow.py" line="450" />
       <source>Indent one level</source>
       <translation>Bir seviye içeri girinti</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1208" />
-      <location filename="../QScintilla/ShellWindow.py" line="448" />
+      <location filename="../QScintilla/MiniEditor.py" line="1204" />
+      <location filename="../QScintilla/ShellWindow.py" line="452" />
       <source>Tab</source>
       <translation>Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
-      <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/ShellWindow.py" line="459" />
-      <location filename="../QScintilla/ShellWindow.py" line="458" />
+      <location filename="../QScintilla/MiniEditor.py" line="1669" />
+      <location filename="../QScintilla/MiniEditor.py" line="1668" />
+      <location filename="../QScintilla/ShellWindow.py" line="463" />
+      <location filename="../QScintilla/ShellWindow.py" line="462" />
       <source>Insert new line</source>
       <translation>Araya yeni satır sok</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
-      <location filename="../QScintilla/ShellWindow.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1670" />
+      <location filename="../QScintilla/ShellWindow.py" line="464" />
       <source>Return</source>
       <translation>Return</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1675" />
-      <location filename="../QScintilla/ShellWindow.py" line="461" />
+      <location filename="../QScintilla/MiniEditor.py" line="1671" />
+      <location filename="../QScintilla/ShellWindow.py" line="465" />
       <source>Enter</source>
       <translation>Enter</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
-      <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/ShellWindow.py" line="471" />
-      <location filename="../QScintilla/ShellWindow.py" line="470" />
+      <location filename="../QScintilla/MiniEditor.py" line="1555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1554" />
+      <location filename="../QScintilla/ShellWindow.py" line="475" />
+      <location filename="../QScintilla/ShellWindow.py" line="474" />
       <source>Delete previous character</source>
       <translation>Önceki karakteri sil</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1560" />
-      <location filename="../QScintilla/ShellWindow.py" line="472" />
+      <location filename="../QScintilla/MiniEditor.py" line="1556" />
+      <location filename="../QScintilla/ShellWindow.py" line="476" />
       <source>Backspace</source>
       <translation>Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1567" />
-      <location filename="../QScintilla/ShellWindow.py" line="479" />
+      <location filename="../QScintilla/MiniEditor.py" line="1563" />
+      <location filename="../QScintilla/ShellWindow.py" line="483" />
       <source>Meta+H</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1572" />
-      <location filename="../QScintilla/ShellWindow.py" line="484" />
+      <location filename="../QScintilla/MiniEditor.py" line="1568" />
+      <location filename="../QScintilla/ShellWindow.py" line="488" />
       <source>Shift+Backspace</source>
       <translation>Shift+Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
-      <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/ShellWindow.py" line="493" />
-      <location filename="../QScintilla/ShellWindow.py" line="492" />
+      <location filename="../QScintilla/MiniEditor.py" line="1593" />
+      <location filename="../QScintilla/MiniEditor.py" line="1592" />
+      <location filename="../QScintilla/ShellWindow.py" line="497" />
+      <location filename="../QScintilla/ShellWindow.py" line="496" />
       <source>Delete current character</source>
       <translation>Gçerli karakteri siler</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1598" />
-      <location filename="../QScintilla/ShellWindow.py" line="494" />
+      <location filename="../QScintilla/MiniEditor.py" line="1594" />
+      <location filename="../QScintilla/ShellWindow.py" line="498" />
       <source>Del</source>
       <translation>Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1605" />
-      <location filename="../QScintilla/ShellWindow.py" line="501" />
+      <location filename="../QScintilla/MiniEditor.py" line="1601" />
+      <location filename="../QScintilla/ShellWindow.py" line="505" />
       <source>Meta+D</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
-      <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/ShellWindow.py" line="509" />
-      <location filename="../QScintilla/ShellWindow.py" line="508" />
+      <location filename="../QScintilla/MiniEditor.py" line="1609" />
+      <location filename="../QScintilla/MiniEditor.py" line="1608" />
+      <location filename="../QScintilla/ShellWindow.py" line="513" />
+      <location filename="../QScintilla/ShellWindow.py" line="512" />
       <source>Delete word to left</source>
       <translation>Kelimeyi sola doğru sil</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1614" />
-      <location filename="../QScintilla/ShellWindow.py" line="510" />
+      <location filename="../QScintilla/MiniEditor.py" line="1610" />
+      <location filename="../QScintilla/ShellWindow.py" line="514" />
       <source>Ctrl+Backspace</source>
       <translation>Ctrl+Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
-      <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/ShellWindow.py" line="521" />
-      <location filename="../QScintilla/ShellWindow.py" line="520" />
+      <location filename="../QScintilla/MiniEditor.py" line="1621" />
+      <location filename="../QScintilla/MiniEditor.py" line="1620" />
+      <location filename="../QScintilla/ShellWindow.py" line="525" />
+      <location filename="../QScintilla/ShellWindow.py" line="524" />
       <source>Delete word to right</source>
       <translation>Kelimeyi sağa doğru sil</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1626" />
-      <location filename="../QScintilla/ShellWindow.py" line="522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1622" />
+      <location filename="../QScintilla/ShellWindow.py" line="526" />
       <source>Ctrl+Del</source>
       <translation>Ctrl+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
-      <location filename="../QScintilla/MiniEditor.py" line="1637" />
-      <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/ShellWindow.py" line="533" />
-      <location filename="../QScintilla/ShellWindow.py" line="532" />
+      <location filename="../QScintilla/MiniEditor.py" line="1633" />
+      <location filename="../QScintilla/MiniEditor.py" line="1632" />
+      <location filename="../QScintilla/ShellWindow.py" line="537" />
+      <location filename="../QScintilla/ShellWindow.py" line="536" />
       <source>Delete line to left</source>
       <translation>Satırı solbaşa kadar sil</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1639" />
-      <location filename="../QScintilla/ShellWindow.py" line="535" />
+      <location filename="../QScintilla/MiniEditor.py" line="1635" />
+      <location filename="../QScintilla/ShellWindow.py" line="539" />
       <source>Ctrl+Shift+Backspace</source>
       <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
-      <location filename="../QScintilla/MiniEditor.py" line="1651" />
-      <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/ShellWindow.py" line="547" />
-      <location filename="../QScintilla/ShellWindow.py" line="546" />
+      <location filename="../QScintilla/MiniEditor.py" line="1647" />
+      <location filename="../QScintilla/MiniEditor.py" line="1646" />
+      <location filename="../QScintilla/ShellWindow.py" line="551" />
+      <location filename="../QScintilla/ShellWindow.py" line="550" />
       <source>Delete line to right</source>
       <translation>Satırı sağbaşa kadar sil</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1659" />
-      <location filename="../QScintilla/ShellWindow.py" line="555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1655" />
+      <location filename="../QScintilla/ShellWindow.py" line="559" />
       <source>Meta+K</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1664" />
-      <location filename="../QScintilla/ShellWindow.py" line="560" />
+      <location filename="../QScintilla/MiniEditor.py" line="1660" />
+      <location filename="../QScintilla/ShellWindow.py" line="564" />
       <source>Ctrl+Shift+Del</source>
       <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
-      <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/ShellWindow.py" line="569" />
-      <location filename="../QScintilla/ShellWindow.py" line="568" />
+      <location filename="../QScintilla/MiniEditor.py" line="891" />
+      <location filename="../QScintilla/MiniEditor.py" line="890" />
+      <location filename="../QScintilla/ShellWindow.py" line="573" />
+      <location filename="../QScintilla/ShellWindow.py" line="572" />
       <source>Move left one character</source>
       <translation>Bir karakter sola taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="896" />
-      <location filename="../QScintilla/ShellWindow.py" line="570" />
+      <location filename="../QScintilla/MiniEditor.py" line="892" />
+      <location filename="../QScintilla/ShellWindow.py" line="574" />
       <source>Left</source>
       <translation>Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="904" />
-      <location filename="../QScintilla/ShellWindow.py" line="578" />
+      <location filename="../QScintilla/MiniEditor.py" line="900" />
+      <location filename="../QScintilla/ShellWindow.py" line="582" />
       <source>Meta+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
-      <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/ShellWindow.py" line="585" />
-      <location filename="../QScintilla/ShellWindow.py" line="584" />
+      <location filename="../QScintilla/MiniEditor.py" line="907" />
+      <location filename="../QScintilla/MiniEditor.py" line="906" />
+      <location filename="../QScintilla/ShellWindow.py" line="589" />
+      <location filename="../QScintilla/ShellWindow.py" line="588" />
       <source>Move right one character</source>
       <translation>Bir karakter sağa taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="912" />
-      <location filename="../QScintilla/ShellWindow.py" line="586" />
+      <location filename="../QScintilla/MiniEditor.py" line="908" />
+      <location filename="../QScintilla/ShellWindow.py" line="590" />
       <source>Right</source>
       <translation>Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="919" />
-      <location filename="../QScintilla/ShellWindow.py" line="593" />
+      <location filename="../QScintilla/MiniEditor.py" line="915" />
+      <location filename="../QScintilla/ShellWindow.py" line="597" />
       <source>Meta+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="991" />
-      <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/ShellWindow.py" line="601" />
-      <location filename="../QScintilla/ShellWindow.py" line="600" />
+      <location filename="../QScintilla/MiniEditor.py" line="987" />
+      <location filename="../QScintilla/MiniEditor.py" line="986" />
+      <location filename="../QScintilla/ShellWindow.py" line="605" />
+      <location filename="../QScintilla/ShellWindow.py" line="604" />
       <source>Move left one word</source>
       <translation>Bir kelime sola taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="999" />
-      <location filename="../QScintilla/MiniEditor.py" line="967" />
-      <location filename="../QScintilla/ShellWindow.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="995" />
+      <location filename="../QScintilla/MiniEditor.py" line="963" />
+      <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Alt+Left</source>
       <translation>Alt+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1059" />
-      <location filename="../QScintilla/MiniEditor.py" line="1003" />
-      <location filename="../QScintilla/ShellWindow.py" line="613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1055" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/ShellWindow.py" line="617" />
       <source>Ctrl+Left</source>
       <translation>Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
-      <location filename="../QScintilla/MiniEditor.py" line="1011" />
-      <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/ShellWindow.py" line="621" />
-      <location filename="../QScintilla/ShellWindow.py" line="620" />
+      <location filename="../QScintilla/MiniEditor.py" line="1007" />
+      <location filename="../QScintilla/MiniEditor.py" line="1006" />
+      <location filename="../QScintilla/ShellWindow.py" line="625" />
+      <location filename="../QScintilla/ShellWindow.py" line="624" />
       <source>Move right one word</source>
       <translation>Bir kelime sağa taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="1023" />
-      <location filename="../QScintilla/ShellWindow.py" line="629" />
+      <location filename="../QScintilla/MiniEditor.py" line="1809" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/ShellWindow.py" line="633" />
       <source>Ctrl+Right</source>
       <translation>Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1033" />
-      <location filename="../QScintilla/MiniEditor.py" line="1030" />
-      <location filename="../QScintilla/ShellWindow.py" line="639" />
-      <location filename="../QScintilla/ShellWindow.py" line="636" />
+      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1026" />
+      <location filename="../QScintilla/ShellWindow.py" line="643" />
+      <location filename="../QScintilla/ShellWindow.py" line="640" />
       <source>Move to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2074" />
-      <location filename="../QScintilla/MiniEditor.py" line="1043" />
-      <location filename="../QScintilla/ShellWindow.py" line="649" />
+      <location filename="../QScintilla/MiniEditor.py" line="2070" />
+      <location filename="../QScintilla/MiniEditor.py" line="1039" />
+      <location filename="../QScintilla/ShellWindow.py" line="653" />
       <source>Home</source>
       <translation>Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
-      <location filename="../QScintilla/MiniEditor.py" line="1071" />
-      <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/ShellWindow.py" line="657" />
-      <location filename="../QScintilla/ShellWindow.py" line="656" />
+      <location filename="../QScintilla/MiniEditor.py" line="1067" />
+      <location filename="../QScintilla/MiniEditor.py" line="1066" />
+      <location filename="../QScintilla/ShellWindow.py" line="661" />
+      <location filename="../QScintilla/ShellWindow.py" line="660" />
       <source>Move to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1079" />
-      <location filename="../QScintilla/ShellWindow.py" line="665" />
+      <location filename="../QScintilla/MiniEditor.py" line="1075" />
+      <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>Meta+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1083" />
-      <location filename="../QScintilla/ShellWindow.py" line="669" />
+      <location filename="../QScintilla/MiniEditor.py" line="2087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
+      <location filename="../QScintilla/ShellWindow.py" line="673" />
       <source>End</source>
       <translation>End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
-      <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/ShellWindow.py" line="677" />
-      <location filename="../QScintilla/ShellWindow.py" line="676" />
+      <location filename="../QScintilla/MiniEditor.py" line="923" />
+      <location filename="../QScintilla/MiniEditor.py" line="922" />
+      <location filename="../QScintilla/ShellWindow.py" line="681" />
+      <location filename="../QScintilla/ShellWindow.py" line="680" />
       <source>Move up one line</source>
       <translation>Bir satır üste taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="928" />
-      <location filename="../QScintilla/ShellWindow.py" line="678" />
+      <location filename="../QScintilla/MiniEditor.py" line="924" />
+      <location filename="../QScintilla/ShellWindow.py" line="682" />
       <source>Up</source>
       <translation>Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="935" />
-      <location filename="../QScintilla/ShellWindow.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="689" />
       <source>Meta+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
-      <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/ShellWindow.py" line="693" />
-      <location filename="../QScintilla/ShellWindow.py" line="692" />
+      <location filename="../QScintilla/MiniEditor.py" line="939" />
+      <location filename="../QScintilla/MiniEditor.py" line="938" />
+      <location filename="../QScintilla/ShellWindow.py" line="697" />
+      <location filename="../QScintilla/ShellWindow.py" line="696" />
       <source>Move down one line</source>
       <translation>Bir satır aşağı taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="944" />
-      <location filename="../QScintilla/ShellWindow.py" line="694" />
+      <location filename="../QScintilla/MiniEditor.py" line="940" />
+      <location filename="../QScintilla/ShellWindow.py" line="698" />
       <source>Down</source>
       <translation>Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="951" />
-      <location filename="../QScintilla/ShellWindow.py" line="701" />
+      <location filename="../QScintilla/MiniEditor.py" line="947" />
+      <location filename="../QScintilla/ShellWindow.py" line="705" />
       <source>Meta+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1195" />
-      <location filename="../QScintilla/MiniEditor.py" line="1092" />
-      <location filename="../QScintilla/ShellWindow.py" line="710" />
+      <location filename="../QScintilla/MiniEditor.py" line="1191" />
+      <location filename="../QScintilla/MiniEditor.py" line="1088" />
+      <location filename="../QScintilla/ShellWindow.py" line="714" />
       <source>Ctrl+Down</source>
       <translation>Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1175" />
-      <location filename="../QScintilla/MiniEditor.py" line="1104" />
-      <location filename="../QScintilla/ShellWindow.py" line="722" />
+      <location filename="../QScintilla/MiniEditor.py" line="1171" />
+      <location filename="../QScintilla/MiniEditor.py" line="1100" />
+      <location filename="../QScintilla/ShellWindow.py" line="726" />
       <source>Ctrl+Up</source>
       <translation>Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
-      <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/ShellWindow.py" line="733" />
-      <location filename="../QScintilla/ShellWindow.py" line="732" />
+      <location filename="../QScintilla/MiniEditor.py" line="1135" />
+      <location filename="../QScintilla/MiniEditor.py" line="1134" />
+      <location filename="../QScintilla/ShellWindow.py" line="737" />
+      <location filename="../QScintilla/ShellWindow.py" line="736" />
       <source>Move up one page</source>
       <translation>Bir sayfa yukarı taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1140" />
-      <location filename="../QScintilla/ShellWindow.py" line="734" />
+      <location filename="../QScintilla/MiniEditor.py" line="1136" />
+      <location filename="../QScintilla/ShellWindow.py" line="738" />
       <source>PgUp</source>
       <translation>PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/ShellWindow.py" line="745" />
-      <location filename="../QScintilla/ShellWindow.py" line="744" />
+      <location filename="../QScintilla/MiniEditor.py" line="1147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1146" />
+      <location filename="../QScintilla/ShellWindow.py" line="749" />
+      <location filename="../QScintilla/ShellWindow.py" line="748" />
       <source>Move down one page</source>
       <translation>Bir sayfa aşağı taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1152" />
-      <location filename="../QScintilla/ShellWindow.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="1148" />
+      <location filename="../QScintilla/ShellWindow.py" line="750" />
       <source>PgDown</source>
       <translation>PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1159" />
-      <location filename="../QScintilla/ShellWindow.py" line="753" />
+      <location filename="../QScintilla/MiniEditor.py" line="1155" />
+      <location filename="../QScintilla/ShellWindow.py" line="757" />
       <source>Meta+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
-      <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/ShellWindow.py" line="761" />
-      <location filename="../QScintilla/ShellWindow.py" line="760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1855" />
+      <location filename="../QScintilla/MiniEditor.py" line="1854" />
+      <location filename="../QScintilla/ShellWindow.py" line="765" />
+      <location filename="../QScintilla/ShellWindow.py" line="764" />
       <source>Escape</source>
       <translation>Kaçış</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1860" />
-      <location filename="../QScintilla/ShellWindow.py" line="762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1856" />
+      <location filename="../QScintilla/ShellWindow.py" line="766" />
       <source>Esc</source>
       <translation>Esc</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1233" />
-      <location filename="../QScintilla/MiniEditor.py" line="1230" />
-      <location filename="../QScintilla/ShellWindow.py" line="775" />
-      <location filename="../QScintilla/ShellWindow.py" line="772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1226" />
+      <location filename="../QScintilla/ShellWindow.py" line="779" />
+      <location filename="../QScintilla/ShellWindow.py" line="776" />
       <source>Extend selection left one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1236" />
-      <location filename="../QScintilla/ShellWindow.py" line="778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1232" />
+      <location filename="../QScintilla/ShellWindow.py" line="782" />
       <source>Shift+Left</source>
       <translation>Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1243" />
-      <location filename="../QScintilla/ShellWindow.py" line="785" />
+      <location filename="../QScintilla/MiniEditor.py" line="1239" />
+      <location filename="../QScintilla/ShellWindow.py" line="789" />
       <source>Meta+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1253" />
-      <location filename="../QScintilla/MiniEditor.py" line="1250" />
-      <location filename="../QScintilla/ShellWindow.py" line="795" />
-      <location filename="../QScintilla/ShellWindow.py" line="792" />
+      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1246" />
+      <location filename="../QScintilla/ShellWindow.py" line="799" />
+      <location filename="../QScintilla/ShellWindow.py" line="796" />
       <source>Extend selection right one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1256" />
-      <location filename="../QScintilla/ShellWindow.py" line="798" />
+      <location filename="../QScintilla/MiniEditor.py" line="1252" />
+      <location filename="../QScintilla/ShellWindow.py" line="802" />
       <source>Shift+Right</source>
       <translation>Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1263" />
-      <location filename="../QScintilla/ShellWindow.py" line="805" />
+      <location filename="../QScintilla/MiniEditor.py" line="1259" />
+      <location filename="../QScintilla/ShellWindow.py" line="809" />
       <source>Meta+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
-      <location filename="../QScintilla/MiniEditor.py" line="1347" />
-      <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/ShellWindow.py" line="813" />
-      <location filename="../QScintilla/ShellWindow.py" line="812" />
+      <location filename="../QScintilla/MiniEditor.py" line="1343" />
+      <location filename="../QScintilla/MiniEditor.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="817" />
+      <location filename="../QScintilla/ShellWindow.py" line="816" />
       <source>Extend selection left one word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1356" />
-      <location filename="../QScintilla/MiniEditor.py" line="1316" />
-      <location filename="../QScintilla/ShellWindow.py" line="822" />
+      <location filename="../QScintilla/MiniEditor.py" line="1352" />
+      <location filename="../QScintilla/MiniEditor.py" line="1312" />
+      <location filename="../QScintilla/ShellWindow.py" line="826" />
       <source>Alt+Shift+Left</source>
       <translation>Alt+Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2277" />
-      <location filename="../QScintilla/MiniEditor.py" line="1362" />
-      <location filename="../QScintilla/ShellWindow.py" line="828" />
+      <location filename="../QScintilla/MiniEditor.py" line="2273" />
+      <location filename="../QScintilla/MiniEditor.py" line="1358" />
+      <location filename="../QScintilla/ShellWindow.py" line="832" />
       <source>Ctrl+Shift+Left</source>
       <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1373" />
-      <location filename="../QScintilla/MiniEditor.py" line="1370" />
-      <location filename="../QScintilla/ShellWindow.py" line="839" />
-      <location filename="../QScintilla/ShellWindow.py" line="836" />
+      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1366" />
+      <location filename="../QScintilla/ShellWindow.py" line="843" />
+      <location filename="../QScintilla/ShellWindow.py" line="840" />
       <source>Extend selection right one word</source>
       <translation type="unfinished" />
     </message>
@@ -91838,60 +91946,60 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1384" />
-      <location filename="../QScintilla/MiniEditor.py" line="1338" />
-      <location filename="../QScintilla/ShellWindow.py" line="850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1380" />
+      <location filename="../QScintilla/MiniEditor.py" line="1334" />
+      <location filename="../QScintilla/ShellWindow.py" line="854" />
       <source>Alt+Shift+Right</source>
       <translation>Alt+Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1838" />
-      <location filename="../QScintilla/MiniEditor.py" line="1390" />
-      <location filename="../QScintilla/ShellWindow.py" line="856" />
+      <location filename="../QScintilla/MiniEditor.py" line="1834" />
+      <location filename="../QScintilla/MiniEditor.py" line="1386" />
+      <location filename="../QScintilla/ShellWindow.py" line="860" />
       <source>Ctrl+Shift+Right</source>
       <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1402" />
       <location filename="../QScintilla/MiniEditor.py" line="1398" />
+      <location filename="../QScintilla/MiniEditor.py" line="1394" />
+      <location filename="../QScintilla/ShellWindow.py" line="872" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
-      <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1413" />
-      <location filename="../QScintilla/ShellWindow.py" line="879" />
+      <location filename="../QScintilla/MiniEditor.py" line="1409" />
+      <location filename="../QScintilla/ShellWindow.py" line="883" />
       <source>Shift+Home</source>
       <translation>Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1423" />
-      <location filename="../QScintilla/MiniEditor.py" line="1420" />
-      <location filename="../QScintilla/ShellWindow.py" line="889" />
-      <location filename="../QScintilla/ShellWindow.py" line="886" />
+      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1416" />
+      <location filename="../QScintilla/ShellWindow.py" line="893" />
+      <location filename="../QScintilla/ShellWindow.py" line="890" />
       <source>Extend selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1433" />
-      <location filename="../QScintilla/ShellWindow.py" line="899" />
+      <location filename="../QScintilla/MiniEditor.py" line="1429" />
+      <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Meta+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1437" />
-      <location filename="../QScintilla/ShellWindow.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
+      <location filename="../QScintilla/ShellWindow.py" line="907" />
       <source>Shift+End</source>
       <translation>Shift+End</translation>
     </message>
@@ -91899,255 +92007,255 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2533" />
-      <location filename="../QScintilla/ShellWindow.py" line="917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2529" />
+      <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Search</source>
       <translation>Ara</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2535" />
-      <location filename="../QScintilla/ShellWindow.py" line="919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2531" />
+      <location filename="../QScintilla/ShellWindow.py" line="923" />
       <source>&amp;Search...</source>
       <translation>A&amp;ra...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2537" />
-      <location filename="../QScintilla/ShellWindow.py" line="921" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
+      <location filename="../QScintilla/ShellWindow.py" line="925" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
       <translation>Ctrl+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2544" />
-      <location filename="../QScintilla/ShellWindow.py" line="928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2540" />
+      <location filename="../QScintilla/ShellWindow.py" line="932" />
       <source>Search for a text</source>
       <translation>Metin olarak ara</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="935" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2559" />
-      <location filename="../QScintilla/ShellWindow.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="2555" />
+      <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>Search next</source>
       <translation>Sonrakini ara</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2561" />
-      <location filename="../QScintilla/ShellWindow.py" line="945" />
+      <location filename="../QScintilla/MiniEditor.py" line="2557" />
+      <location filename="../QScintilla/ShellWindow.py" line="949" />
       <source>Search &amp;next</source>
       <translation>So&amp;nrakini ara</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2563" />
-      <location filename="../QScintilla/ShellWindow.py" line="947" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
+      <location filename="../QScintilla/ShellWindow.py" line="951" />
       <source>F3</source>
       <comment>Search|Search next</comment>
       <translation>F3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2570" />
-      <location filename="../QScintilla/ShellWindow.py" line="954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2566" />
+      <location filename="../QScintilla/ShellWindow.py" line="958" />
       <source>Search next occurrence of text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="957" />
+      <location filename="../QScintilla/ShellWindow.py" line="961" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2585" />
-      <location filename="../QScintilla/ShellWindow.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="2581" />
+      <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Search previous</source>
       <translation>Öncekini ara</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2587" />
-      <location filename="../QScintilla/ShellWindow.py" line="973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2583" />
+      <location filename="../QScintilla/ShellWindow.py" line="977" />
       <source>Search &amp;previous</source>
       <translation>Öncekini a&amp;ra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2589" />
-      <location filename="../QScintilla/ShellWindow.py" line="975" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
+      <location filename="../QScintilla/ShellWindow.py" line="979" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
       <translation>Shift+F3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2598" />
-      <location filename="../QScintilla/ShellWindow.py" line="984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2594" />
+      <location filename="../QScintilla/ShellWindow.py" line="988" />
       <source>Search previous occurrence of text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="989" />
+      <location filename="../QScintilla/ShellWindow.py" line="993" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2758" />
-      <location filename="../QScintilla/ShellWindow.py" line="1010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2754" />
+      <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Zoom in</source>
       <translation>Büyüt</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2760" />
-      <location filename="../QScintilla/ShellWindow.py" line="1012" />
+      <location filename="../QScintilla/MiniEditor.py" line="2756" />
+      <location filename="../QScintilla/ShellWindow.py" line="1016" />
       <source>Zoom &amp;in</source>
       <translation>Bü&amp;yült</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2762" />
-      <location filename="../QScintilla/ShellWindow.py" line="1014" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
+      <location filename="../QScintilla/ShellWindow.py" line="1018" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
       <translation>Ctrl++</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2765" />
-      <location filename="../QScintilla/ShellWindow.py" line="1017" />
+      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/ShellWindow.py" line="1021" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2771" />
-      <location filename="../QScintilla/ShellWindow.py" line="1023" />
+      <location filename="../QScintilla/MiniEditor.py" line="2767" />
+      <location filename="../QScintilla/ShellWindow.py" line="1027" />
       <source>Zoom in on the text</source>
       <translation>MEtni Büyüt</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2774" />
-      <location filename="../QScintilla/ShellWindow.py" line="1026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/ShellWindow.py" line="1030" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Büyüt&lt;/b&gt;&lt;p&gt;Metin içinde büyüt. Bu metni daha  büyük yapar.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2784" />
-      <location filename="../QScintilla/ShellWindow.py" line="1036" />
+      <location filename="../QScintilla/MiniEditor.py" line="2780" />
+      <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Zoom out</source>
       <translation>Küçült</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2786" />
-      <location filename="../QScintilla/ShellWindow.py" line="1038" />
+      <location filename="../QScintilla/MiniEditor.py" line="2782" />
+      <location filename="../QScintilla/ShellWindow.py" line="1042" />
       <source>Zoom &amp;out</source>
       <translation>Küçü&amp;lt</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2788" />
-      <location filename="../QScintilla/ShellWindow.py" line="1040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
+      <location filename="../QScintilla/ShellWindow.py" line="1044" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
       <translation>Ctrl+-</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2791" />
-      <location filename="../QScintilla/ShellWindow.py" line="1043" />
+      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/ShellWindow.py" line="1047" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2797" />
-      <location filename="../QScintilla/ShellWindow.py" line="1049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2793" />
+      <location filename="../QScintilla/ShellWindow.py" line="1053" />
       <source>Zoom out on the text</source>
       <translation>Metin üzerinde küçült</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2800" />
-      <location filename="../QScintilla/ShellWindow.py" line="1052" />
+      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/ShellWindow.py" line="1056" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Küçült&lt;/b&gt;&lt;p&gt;Metin üzerinde küçült. Bu metni daha küçük yapar.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2810" />
-      <location filename="../QScintilla/ShellWindow.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="2806" />
+      <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Zoom reset</source>
       <translation type="unfinished">Büyütmeyi sıfırla</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2812" />
-      <location filename="../QScintilla/ShellWindow.py" line="1064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2808" />
+      <location filename="../QScintilla/ShellWindow.py" line="1068" />
       <source>Zoom &amp;reset</source>
       <translation type="unfinished">Büyütmeyi sıfı&amp;rla</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2814" />
-      <location filename="../QScintilla/ShellWindow.py" line="1066" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
+      <location filename="../QScintilla/ShellWindow.py" line="1070" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
       <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2821" />
-      <location filename="../QScintilla/ShellWindow.py" line="1073" />
+      <location filename="../QScintilla/MiniEditor.py" line="2817" />
+      <location filename="../QScintilla/ShellWindow.py" line="1077" />
       <source>Reset the zoom of the text</source>
       <translation type="unfinished">Metin büyütme durumunu sıfırla</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2824" />
-      <location filename="../QScintilla/ShellWindow.py" line="1076" />
+      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/ShellWindow.py" line="1080" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Büyütmeyi başa döndür&lt;/b&gt;&lt;p&gt;Metin büyütmesini sıfırla. Bu büyütme katsayısını 100% e ayarlar.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2835" />
-      <location filename="../QScintilla/ShellWindow.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="2831" />
+      <location filename="../QScintilla/ShellWindow.py" line="1091" />
       <source>Zoom</source>
       <translation>Büyüt</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2837" />
-      <location filename="../QScintilla/ShellWindow.py" line="1089" />
+      <location filename="../QScintilla/MiniEditor.py" line="2833" />
+      <location filename="../QScintilla/ShellWindow.py" line="1093" />
       <source>&amp;Zoom</source>
       <translation>Büyü&amp;t</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2844" />
-      <location filename="../QScintilla/ShellWindow.py" line="1096" />
+      <location filename="../QScintilla/MiniEditor.py" line="2840" />
+      <location filename="../QScintilla/ShellWindow.py" line="1100" />
       <source>Zoom the text</source>
       <translation>Metni büyüt</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2847" />
-      <location filename="../QScintilla/ShellWindow.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/ShellWindow.py" line="1103" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -92161,977 +92269,977 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
-      <location filename="../QScintilla/MiniEditor.py" line="959" />
-      <location filename="../QScintilla/MiniEditor.py" line="958" />
+      <location filename="../QScintilla/MiniEditor.py" line="955" />
+      <location filename="../QScintilla/MiniEditor.py" line="954" />
       <source>Move left one word part</source>
       <translation>Bir kelime parçası sola taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
-      <location filename="../QScintilla/MiniEditor.py" line="975" />
-      <location filename="../QScintilla/MiniEditor.py" line="974" />
+      <location filename="../QScintilla/MiniEditor.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="970" />
       <source>Move right one word part</source>
       <translation>bir kelime parçası sağa taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2129" />
-      <location filename="../QScintilla/MiniEditor.py" line="1019" />
-      <location filename="../QScintilla/MiniEditor.py" line="983" />
+      <location filename="../QScintilla/MiniEditor.py" line="2125" />
+      <location filename="../QScintilla/MiniEditor.py" line="1015" />
+      <location filename="../QScintilla/MiniEditor.py" line="979" />
       <source>Alt+Right</source>
       <translation>Alt+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
-      <location filename="../QScintilla/MiniEditor.py" line="1051" />
-      <location filename="../QScintilla/MiniEditor.py" line="1050" />
+      <location filename="../QScintilla/MiniEditor.py" line="1047" />
+      <location filename="../QScintilla/MiniEditor.py" line="1046" />
       <source>Move to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1063" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
       <source>Alt+Home</source>
       <translation>Alt+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1090" />
+      <location filename="../QScintilla/MiniEditor.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1086" />
       <source>Scroll view down one line</source>
       <translation>Görüntüyü bir satır aşağı kaydır</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
-      <location filename="../QScintilla/MiniEditor.py" line="1102" />
+      <location filename="../QScintilla/MiniEditor.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="1098" />
       <source>Scroll view up one line</source>
       <translation>Görüntüyü bir satır yukarı kaydır</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
-      <location filename="../QScintilla/MiniEditor.py" line="1114" />
+      <location filename="../QScintilla/MiniEditor.py" line="1111" />
+      <location filename="../QScintilla/MiniEditor.py" line="1110" />
       <source>Move up one paragraph</source>
       <translation>Bir paragraf yukarı taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1116" />
+      <location filename="../QScintilla/MiniEditor.py" line="1112" />
       <source>Alt+Up</source>
       <translation>Alt+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
-      <location filename="../QScintilla/MiniEditor.py" line="1126" />
+      <location filename="../QScintilla/MiniEditor.py" line="1123" />
+      <location filename="../QScintilla/MiniEditor.py" line="1122" />
       <source>Move down one paragraph</source>
       <translation>Bir paragraf aşağı taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1128" />
+      <location filename="../QScintilla/MiniEditor.py" line="1124" />
       <source>Alt+Down</source>
       <translation>Alt+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
-      <location filename="../QScintilla/MiniEditor.py" line="1167" />
-      <location filename="../QScintilla/MiniEditor.py" line="1166" />
+      <location filename="../QScintilla/MiniEditor.py" line="1163" />
+      <location filename="../QScintilla/MiniEditor.py" line="1162" />
       <source>Move to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1179" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
       <source>Ctrl+Home</source>
       <translation>Ctrl+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
-      <location filename="../QScintilla/MiniEditor.py" line="1187" />
-      <location filename="../QScintilla/MiniEditor.py" line="1186" />
+      <location filename="../QScintilla/MiniEditor.py" line="1183" />
+      <location filename="../QScintilla/MiniEditor.py" line="1182" />
       <source>Move to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1199" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
       <source>Ctrl+End</source>
       <translation>Ctrl+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
-      <location filename="../QScintilla/MiniEditor.py" line="1218" />
+      <location filename="../QScintilla/MiniEditor.py" line="1215" />
+      <location filename="../QScintilla/MiniEditor.py" line="1214" />
       <source>Unindent one level</source>
       <translation>Girintisiz birinci seviye</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1220" />
+      <location filename="../QScintilla/MiniEditor.py" line="1216" />
       <source>Shift+Tab</source>
       <translation>Shift+Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
-      <location filename="../QScintilla/MiniEditor.py" line="1270" />
+      <location filename="../QScintilla/MiniEditor.py" line="1267" />
+      <location filename="../QScintilla/MiniEditor.py" line="1266" />
       <source>Extend selection up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1272" />
+      <location filename="../QScintilla/MiniEditor.py" line="1268" />
       <source>Shift+Up</source>
       <translation>Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1279" />
+      <location filename="../QScintilla/MiniEditor.py" line="1275" />
       <source>Meta+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
-      <location filename="../QScintilla/MiniEditor.py" line="1286" />
+      <location filename="../QScintilla/MiniEditor.py" line="1283" />
+      <location filename="../QScintilla/MiniEditor.py" line="1282" />
       <source>Extend selection down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1288" />
+      <location filename="../QScintilla/MiniEditor.py" line="1284" />
       <source>Shift+Down</source>
       <translation>Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1291" />
       <source>Meta+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1305" />
-      <location filename="../QScintilla/MiniEditor.py" line="1302" />
+      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1298" />
       <source>Extend selection left one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1327" />
-      <location filename="../QScintilla/MiniEditor.py" line="1324" />
+      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1320" />
       <source>Extend selection right one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1447" />
-      <location filename="../QScintilla/MiniEditor.py" line="1444" />
+      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1440" />
       <source>Extend selection up one paragraph</source>
       <translation>Seçimi bir paragraf yukarı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1450" />
+      <location filename="../QScintilla/MiniEditor.py" line="1446" />
       <source>Alt+Shift+Up</source>
       <translation>Alt+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1463" />
-      <location filename="../QScintilla/MiniEditor.py" line="1460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1456" />
       <source>Extend selection down one paragraph</source>
       <translation>Seçimi bir paragraf aşağı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1466" />
+      <location filename="../QScintilla/MiniEditor.py" line="1462" />
       <source>Alt+Shift+Down</source>
       <translation>Alt+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
-      <location filename="../QScintilla/MiniEditor.py" line="1476" />
+      <location filename="../QScintilla/MiniEditor.py" line="1473" />
+      <location filename="../QScintilla/MiniEditor.py" line="1472" />
       <source>Extend selection up one page</source>
       <translation>Seçimi bir sayfa yukarı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1478" />
+      <location filename="../QScintilla/MiniEditor.py" line="1474" />
       <source>Shift+PgUp</source>
       <translation>Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
-      <location filename="../QScintilla/MiniEditor.py" line="1488" />
+      <location filename="../QScintilla/MiniEditor.py" line="1485" />
+      <location filename="../QScintilla/MiniEditor.py" line="1484" />
       <source>Extend selection down one page</source>
       <translation>Seçimi bir sayfa aşağı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1490" />
+      <location filename="../QScintilla/MiniEditor.py" line="1486" />
       <source>Shift+PgDown</source>
       <translation>Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1497" />
+      <location filename="../QScintilla/MiniEditor.py" line="1493" />
       <source>Meta+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1507" />
-      <location filename="../QScintilla/MiniEditor.py" line="1504" />
+      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1500" />
       <source>Extend selection to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1517" />
+      <location filename="../QScintilla/MiniEditor.py" line="1513" />
       <source>Ctrl+Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1518" />
       <source>Ctrl+Shift+Home</source>
       <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1533" />
-      <location filename="../QScintilla/MiniEditor.py" line="1530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1526" />
       <source>Extend selection to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1544" />
+      <location filename="../QScintilla/MiniEditor.py" line="1540" />
       <source>Ctrl+Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1550" />
+      <location filename="../QScintilla/MiniEditor.py" line="1546" />
       <source>Ctrl+Shift+End</source>
       <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1583" />
-      <location filename="../QScintilla/MiniEditor.py" line="1580" />
+      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1576" />
       <source>Delete previous character if not at start of line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
-      <location filename="../QScintilla/MiniEditor.py" line="1696" />
+      <location filename="../QScintilla/MiniEditor.py" line="1693" />
+      <location filename="../QScintilla/MiniEditor.py" line="1692" />
       <source>Duplicate current line</source>
       <translation>Geçerli satırı çiftle</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1698" />
+      <location filename="../QScintilla/MiniEditor.py" line="1694" />
       <source>Ctrl+D</source>
       <translation>Ctrl+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1711" />
-      <location filename="../QScintilla/MiniEditor.py" line="1708" />
+      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1704" />
       <source>Swap current and previous lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1714" />
+      <location filename="../QScintilla/MiniEditor.py" line="1710" />
       <source>Ctrl+T</source>
       <translation>Ctrl+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
-      <location filename="../QScintilla/MiniEditor.py" line="1724" />
+      <location filename="../QScintilla/MiniEditor.py" line="1721" />
+      <location filename="../QScintilla/MiniEditor.py" line="1720" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1726" />
+      <location filename="../QScintilla/MiniEditor.py" line="1722" />
       <source>Meta+Alt+R</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
-      <location filename="../QScintilla/MiniEditor.py" line="1736" />
+      <location filename="../QScintilla/MiniEditor.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="1732" />
       <source>Cut current line</source>
       <translation>Geçerli satırı kes</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1738" />
+      <location filename="../QScintilla/MiniEditor.py" line="1734" />
       <source>Alt+Shift+L</source>
       <translation>Alt+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="1748" />
+      <location filename="../QScintilla/MiniEditor.py" line="1745" />
+      <location filename="../QScintilla/MiniEditor.py" line="1744" />
       <source>Copy current line</source>
       <translation>Geçerli satırı kopyala</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1750" />
+      <location filename="../QScintilla/MiniEditor.py" line="1746" />
       <source>Ctrl+Shift+T</source>
       <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
-      <location filename="../QScintilla/MiniEditor.py" line="1760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1757" />
+      <location filename="../QScintilla/MiniEditor.py" line="1756" />
       <source>Toggle insert/overtype</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1758" />
       <source>Ins</source>
       <translation>Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1775" />
-      <location filename="../QScintilla/MiniEditor.py" line="1772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1768" />
       <source>Convert selection to lower case</source>
       <translation>Seçimi küçük olürük değiştir</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1774" />
       <source>Alt+Shift+U</source>
       <translation>Alt+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1791" />
-      <location filename="../QScintilla/MiniEditor.py" line="1788" />
+      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1784" />
       <source>Convert selection to upper case</source>
       <translation>Seçimi büyük olarak değiştir</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1794" />
+      <location filename="../QScintilla/MiniEditor.py" line="1790" />
       <source>Ctrl+Shift+U</source>
       <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
-      <location filename="../QScintilla/MiniEditor.py" line="1805" />
-      <location filename="../QScintilla/MiniEditor.py" line="1804" />
+      <location filename="../QScintilla/MiniEditor.py" line="1801" />
+      <location filename="../QScintilla/MiniEditor.py" line="1800" />
       <source>Move to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1817" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
       <source>Alt+End</source>
       <translation>Alt+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1827" />
-      <location filename="../QScintilla/MiniEditor.py" line="1824" />
+      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1820" />
       <source>Extend selection to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
-      <location filename="../QScintilla/MiniEditor.py" line="1847" />
-      <location filename="../QScintilla/MiniEditor.py" line="1846" />
+      <location filename="../QScintilla/MiniEditor.py" line="1843" />
+      <location filename="../QScintilla/MiniEditor.py" line="1842" />
       <source>Formfeed</source>
       <translation>Süreklibaskı kağıdı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1873" />
-      <location filename="../QScintilla/MiniEditor.py" line="1870" />
+      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1866" />
       <source>Extend rectangular selection down one line</source>
       <translation>Köşeli seçimi bir sayfa aşağı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1876" />
+      <location filename="../QScintilla/MiniEditor.py" line="1872" />
       <source>Alt+Ctrl+Down</source>
       <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1884" />
+      <location filename="../QScintilla/MiniEditor.py" line="1880" />
       <source>Meta+Alt+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1895" />
-      <location filename="../QScintilla/MiniEditor.py" line="1892" />
+      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1888" />
       <source>Extend rectangular selection up one line</source>
       <translation>Köşeli seçimi bir satır yukarı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1898" />
+      <location filename="../QScintilla/MiniEditor.py" line="1894" />
       <source>Alt+Ctrl+Up</source>
       <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1906" />
+      <location filename="../QScintilla/MiniEditor.py" line="1902" />
       <source>Meta+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1917" />
-      <location filename="../QScintilla/MiniEditor.py" line="1914" />
+      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1910" />
       <source>Extend rectangular selection left one character</source>
       <translation>Köşeli seçimi bir karakter sola genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1920" />
+      <location filename="../QScintilla/MiniEditor.py" line="1916" />
       <source>Alt+Ctrl+Left</source>
       <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1928" />
+      <location filename="../QScintilla/MiniEditor.py" line="1924" />
       <source>Meta+Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1939" />
-      <location filename="../QScintilla/MiniEditor.py" line="1936" />
+      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1932" />
       <source>Extend rectangular selection right one character</source>
       <translation>Köşeli seçimi bir karakter sağa genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1942" />
+      <location filename="../QScintilla/MiniEditor.py" line="1938" />
       <source>Alt+Ctrl+Right</source>
       <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1950" />
+      <location filename="../QScintilla/MiniEditor.py" line="1946" />
       <source>Meta+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1963" />
-      <location filename="../QScintilla/MiniEditor.py" line="1958" />
+      <location filename="../QScintilla/MiniEditor.py" line="1959" />
+      <location filename="../QScintilla/MiniEditor.py" line="1954" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1976" />
+      <location filename="../QScintilla/MiniEditor.py" line="1972" />
       <source>Alt+Shift+Home</source>
       <translation>Alt+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1987" />
-      <location filename="../QScintilla/MiniEditor.py" line="1984" />
+      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1980" />
       <source>Extend rectangular selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1998" />
+      <location filename="../QScintilla/MiniEditor.py" line="1994" />
       <source>Meta+Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2003" />
+      <location filename="../QScintilla/MiniEditor.py" line="1999" />
       <source>Alt+Shift+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2013" />
-      <location filename="../QScintilla/MiniEditor.py" line="2010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2006" />
       <source>Extend rectangular selection up one page</source>
       <translation>Köşeli seçimi bir sayfa yukarı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2016" />
+      <location filename="../QScintilla/MiniEditor.py" line="2012" />
       <source>Alt+Shift+PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2029" />
-      <location filename="../QScintilla/MiniEditor.py" line="2026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2022" />
       <source>Extend rectangular selection down one page</source>
       <translation>Köşeli seçimi bir sayfa aşağı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2032" />
+      <location filename="../QScintilla/MiniEditor.py" line="2028" />
       <source>Alt+Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2036" />
       <source>Meta+Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="2048" />
+      <location filename="../QScintilla/MiniEditor.py" line="2511" />
+      <location filename="../QScintilla/MiniEditor.py" line="2510" />
+      <location filename="../QScintilla/MiniEditor.py" line="2045" />
+      <location filename="../QScintilla/MiniEditor.py" line="2044" />
       <source>Duplicate current selection</source>
       <translation>Geçerli seçimi çoğalt</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2516" />
-      <location filename="../QScintilla/MiniEditor.py" line="2050" />
+      <location filename="../QScintilla/MiniEditor.py" line="2512" />
+      <location filename="../QScintilla/MiniEditor.py" line="2046" />
       <source>Ctrl+Shift+D</source>
       <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2064" />
-      <location filename="../QScintilla/MiniEditor.py" line="2061" />
+      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2057" />
       <source>Scroll to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
-      <location filename="../QScintilla/MiniEditor.py" line="2083" />
-      <location filename="../QScintilla/MiniEditor.py" line="2082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2079" />
+      <location filename="../QScintilla/MiniEditor.py" line="2078" />
       <source>Scroll to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2102" />
-      <location filename="../QScintilla/MiniEditor.py" line="2099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2095" />
       <source>Scroll vertically to center current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2112" />
+      <location filename="../QScintilla/MiniEditor.py" line="2108" />
       <source>Meta+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
-      <location filename="../QScintilla/MiniEditor.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2120" />
+      <location filename="../QScintilla/MiniEditor.py" line="2117" />
+      <location filename="../QScintilla/MiniEditor.py" line="2116" />
       <source>Move to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2140" />
-      <location filename="../QScintilla/MiniEditor.py" line="2137" />
+      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2133" />
       <source>Extend selection to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2163" />
-      <location filename="../QScintilla/MiniEditor.py" line="2160" />
+      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2156" />
       <source>Move to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2180" />
-      <location filename="../QScintilla/MiniEditor.py" line="2177" />
+      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2173" />
       <source>Extend selection to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2197" />
-      <location filename="../QScintilla/MiniEditor.py" line="2194" />
+      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2190" />
       <source>Move to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2207" />
+      <location filename="../QScintilla/MiniEditor.py" line="2203" />
       <source>Meta+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2218" />
-      <location filename="../QScintilla/MiniEditor.py" line="2215" />
+      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2211" />
       <source>Extend selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2229" />
+      <location filename="../QScintilla/MiniEditor.py" line="2225" />
       <source>Meta+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2242" />
       <location filename="../QScintilla/MiniEditor.py" line="2238" />
+      <location filename="../QScintilla/MiniEditor.py" line="2234" />
       <source>Extend rectangular selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2254" />
+      <location filename="../QScintilla/MiniEditor.py" line="2250" />
       <source>Meta+Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2266" />
-      <location filename="../QScintilla/MiniEditor.py" line="2263" />
+      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2259" />
       <source>Extend selection to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2289" />
-      <location filename="../QScintilla/MiniEditor.py" line="2286" />
+      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2282" />
       <source>Move to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2307" />
       <location filename="../QScintilla/MiniEditor.py" line="2303" />
+      <location filename="../QScintilla/MiniEditor.py" line="2299" />
       <source>Extend selection to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2326" />
       <location filename="../QScintilla/MiniEditor.py" line="2322" />
+      <location filename="../QScintilla/MiniEditor.py" line="2318" />
       <source>Move to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2346" />
-      <location filename="../QScintilla/MiniEditor.py" line="2341" />
+      <location filename="../QScintilla/MiniEditor.py" line="2342" />
+      <location filename="../QScintilla/MiniEditor.py" line="2337" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2365" />
-      <location filename="../QScintilla/MiniEditor.py" line="2362" />
+      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2358" />
       <source>Move to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2382" />
-      <location filename="../QScintilla/MiniEditor.py" line="2379" />
+      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2375" />
       <source>Extend selection to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
-      <location filename="../QScintilla/MiniEditor.py" line="2397" />
-      <location filename="../QScintilla/MiniEditor.py" line="2396" />
+      <location filename="../QScintilla/MiniEditor.py" line="2393" />
+      <location filename="../QScintilla/MiniEditor.py" line="2392" />
       <source>Stuttered move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2412" />
-      <location filename="../QScintilla/MiniEditor.py" line="2409" />
+      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2405" />
       <source>Stuttered extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2429" />
-      <location filename="../QScintilla/MiniEditor.py" line="2426" />
+      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2422" />
       <source>Stuttered move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2446" />
-      <location filename="../QScintilla/MiniEditor.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2439" />
       <source>Stuttered extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2463" />
-      <location filename="../QScintilla/MiniEditor.py" line="2460" />
+      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2456" />
       <source>Delete right to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2473" />
+      <location filename="../QScintilla/MiniEditor.py" line="2469" />
       <source>Alt+Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2484" />
-      <location filename="../QScintilla/MiniEditor.py" line="2481" />
+      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2477" />
       <source>Move selected lines up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2501" />
-      <location filename="../QScintilla/MiniEditor.py" line="2498" />
+      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2494" />
       <source>Move selected lines down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2547" />
+      <location filename="../QScintilla/MiniEditor.py" line="2543" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2573" />
+      <location filename="../QScintilla/MiniEditor.py" line="2569" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2603" />
+      <location filename="../QScintilla/MiniEditor.py" line="2599" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2617" />
-      <location filename="../QScintilla/MiniEditor.py" line="2615" />
+      <location filename="../QScintilla/MiniEditor.py" line="2613" />
+      <location filename="../QScintilla/MiniEditor.py" line="2611" />
       <source>Clear search markers</source>
       <translation>Arama işaretlerini temizle</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2619" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation>Ctrl+3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2628" />
+      <location filename="../QScintilla/MiniEditor.py" line="2624" />
       <source>Clear all displayed search markers</source>
       <translation>Gösterilen tüm arama işaretlerin temizle</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2633" />
+      <location filename="../QScintilla/MiniEditor.py" line="2629" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2639" />
       <source>Replace</source>
       <translation>Yerdeğiştir</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2644" />
+      <location filename="../QScintilla/MiniEditor.py" line="2640" />
       <source>&amp;Replace...</source>
       <translation>&amp;Yerdeğiştir...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2646" />
+      <location filename="../QScintilla/MiniEditor.py" line="2642" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation>Ctrl+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2653" />
+      <location filename="../QScintilla/MiniEditor.py" line="2649" />
       <source>Replace some text</source>
       <translation>Bazı metinleri değiştir</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2656" />
+      <location filename="../QScintilla/MiniEditor.py" line="2652" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2670" />
-      <location filename="../QScintilla/MiniEditor.py" line="2668" />
+      <location filename="../QScintilla/MiniEditor.py" line="2666" />
+      <location filename="../QScintilla/MiniEditor.py" line="2664" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2672" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2681" />
+      <location filename="../QScintilla/MiniEditor.py" line="2677" />
       <source>Replace the found text and search the next occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2686" />
+      <location filename="../QScintilla/MiniEditor.py" line="2682" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2702" />
-      <location filename="../QScintilla/MiniEditor.py" line="2700" />
+      <location filename="../QScintilla/MiniEditor.py" line="2698" />
+      <location filename="../QScintilla/MiniEditor.py" line="2696" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2704" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2713" />
+      <location filename="../QScintilla/MiniEditor.py" line="2709" />
       <source>Replace the found text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2716" />
+      <location filename="../QScintilla/MiniEditor.py" line="2712" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2729" />
-      <location filename="../QScintilla/MiniEditor.py" line="2727" />
+      <location filename="../QScintilla/MiniEditor.py" line="2725" />
+      <location filename="../QScintilla/MiniEditor.py" line="2723" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2731" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2740" />
+      <location filename="../QScintilla/MiniEditor.py" line="2736" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2743" />
+      <location filename="../QScintilla/MiniEditor.py" line="2739" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -95069,29 +95177,29 @@
       <translation>Düz&amp;en...</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7350" />
-      <location filename="../ViewManager/ViewManager.py" line="7336" />
-      <location filename="../ViewManager/ViewManager.py" line="7304" />
+      <location filename="../ViewManager/ViewManager.py" line="7349" />
+      <location filename="../ViewManager/ViewManager.py" line="7335" />
+      <location filename="../ViewManager/ViewManager.py" line="7303" />
       <source>Edit Spelling Dictionary</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7307" />
+      <location filename="../ViewManager/ViewManager.py" line="7306" />
       <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="7323" />
+      <location filename="../ViewManager/ViewManager.py" line="7322" />
       <source>Editing {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7339" />
+      <location filename="../ViewManager/ViewManager.py" line="7338" />
       <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="7353" />
+      <location filename="../ViewManager/ViewManager.py" line="7352" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation type="unfinished" />
     </message>
@@ -96152,7 +96260,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="135" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="136" />
       <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="96" />
       <source>Failed
 
@@ -96160,46 +96268,46 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="144" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="145" />
       <source>
 pyvenv finished.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="159" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="160" />
       <source>No suitable pyvenv program could be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="222" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="223" />
       <source>
 Writing log file '{0}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="226" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="227" />
       <source>Output:
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="231" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="232" />
       <source>Errors:
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="235" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="236" />
       <source>The logfile '{0}' could not be written.
 Reason: {1}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="239" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="240" />
       <source>Done.
 </source>
       <translation type="unfinished" />
@@ -98388,32 +98496,32 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2312" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2341" />
       <source>Quota Request</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2313" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2342" />
       <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="2389" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2385" />
       <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="2397" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2393" />
       <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="2402" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2398" />
       <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="2409" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2405" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -101403,28 +101511,28 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="143" />
       <source>No current editor</source>
       <translation type="unfinished">Geçerli düzenleyici yok</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="145" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
       <source>Please open or create a file first.</source>
       <translation type="unfinished">Lütfen ilkönce bir dosya açın yada oluşturun.</translation>
     </message>
     <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="182" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="166" />
+      <source>Create Package</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
+      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; Paket dizini oluşturulamadı. İptal edildi...&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Plugins/PluginWizardEricPlugin.py" line="183" />
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
-      <source>Create Package</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="168" />
-      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; Paket dizini oluşturulamadı. İptal edildi...&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="184" />
       <source>&lt;p&gt;The package file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; Paket dosyası oluşturulamadı. İptal ediliyor...&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
@@ -101689,32 +101797,32 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1270" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1274" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esas #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Değişiklik seti&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1801" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1282" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&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;Etiketler&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1807" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1284" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1811" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1288" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1814" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1291" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1295" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&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;Branşlar&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1297" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1301" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
@@ -101723,7 +101831,7 @@
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Teslim zamnanı&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1320" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -101734,35 +101842,35 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1775" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1779" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1782" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1786" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1793" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;İp ucu&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1794" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1798" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&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;DEğişiklik seti&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1825" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&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;Esas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1831" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -102446,17 +102554,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1814" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
       <source>unknown</source>
       <translation>bilinmeyen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1822" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;KAynak Havuzu Bilgisi&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Altsürümn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Altsürüm API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Geçerli Gözden Geçirme&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Teslim edilen gözden geçirme&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Teslim tarihi&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Teslim zamanı&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Son yazar&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1667" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1670" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Kaynak Havuzu Bilgisi&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Altsürüm V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Geçerli Gözden Geçirme&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Teslim edilen gözden geçirme&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Teslim Tarihi&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Teslim Zamanı&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Son yazar&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_zh_CN.ts	Sun May 28 14:40:38 2023 +0200
+++ b/src/eric7/i18n/eric7_zh_CN.ts	Sun Jul 02 17:39:33 2023 +0200
@@ -1344,6 +1344,16 @@
       <source>type annotation is too long ({0} &gt; {1})</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="76" />
+      <source>'typing.Union' is deprecated, use '|' instead (see PEP 604)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Annotations/translations.py" line="80" />
+      <source>'typing.{0}' is deprecated, use '{1}' instead (see PEP 585)</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>ApplicationDiagramBuilder</name>
@@ -1781,42 +1791,42 @@
       <translation>{0} 未被配置。</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
+      <location filename="../Utilities/BackgroundService.py" line="217" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="219" />
+      <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>Restart background client?</source>
+      <translation>重启后台客户端?</translation>
+    </message>
+    <message>
       <location filename="../Utilities/BackgroundService.py" line="232" />
-      <source>Restart background client?</source>
-      <translation>重启后台客户端?</translation>
-    </message>
-    <message>
-      <location filename="../Utilities/BackgroundService.py" line="233" />
       <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="262" />
+      <location filename="../Utilities/BackgroundService.py" line="261" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="497" />
+      <location filename="../Utilities/BackgroundService.py" line="502" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation>Erics 后台客户端因未知原因断开连接。</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="506" />
+      <location filename="../Utilities/BackgroundService.py" line="511" />
       <source>Background client disconnected.</source>
       <translation>后台客户端已断开连接。</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="507" />
+      <location filename="../Utilities/BackgroundService.py" line="512" />
       <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>
@@ -1879,22 +1889,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>Yes</source>
       <translation type="unfinished">是</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1820" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1824" />
       <source>No</source>
       <translation type="unfinished">否</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>yes</source>
       <translation type="unfinished">是</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1822" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1826" />
       <source>no</source>
       <translation type="unfinished">否</translation>
     </message>
@@ -2316,26 +2326,31 @@
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="97" />
-      <source>Complete {0}-bit Service UUID: {1}</source>
+      <source>Complete {0}-bit Service UUID: {1}{2}</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="99" />
-      <source>Incomplete {0}-bit Service UUID: {1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="110" />
-      <source>Manufacturer ID: 0x{0:x} ({1})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="114" />
+      <source>Incomplete {0}-bit Service UUID: {1}{2}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="107" />
+      <source> - {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="121" />
+      <source>Manufacturer ID: 0x{0:x} - {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="125" />
       <source>Manufacturer ID: 0x{0:x}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="123" />
+      <location filename="../MicroPython/BluetoothDialogs/BluetoothScanWindow.py" line="134" />
       <source>Tx Power Level [dBm]: {0}</source>
       <translation type="unfinished" />
     </message>
@@ -2836,17 +2851,17 @@
       <translation>新文件夹(&amp;F)…</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="335" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
       <source>New Bookmark Folder</source>
       <translation>新书签文件夹</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="336" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="337" />
       <source>Enter title for new bookmark folder:</source>
       <translation>为书签文件夹输入标题:</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="343" />
       <source>New Folder</source>
       <translation>新文件夹</translation>
     </message>
@@ -2950,22 +2965,22 @@
       <translation>书签菜单</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="543" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="541" />
       <source>Remove Bookmark</source>
       <translation>移除书签</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="585" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="583" />
       <source>Insert Bookmark</source>
       <translation>插入书签</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="626" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="624" />
       <source>Name Change</source>
       <translation>名称变更</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="630" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="628" />
       <source>Address Change</source>
       <translation>地址改变</translation>
     </message>
@@ -3002,22 +3017,22 @@
       <translation>将书签保存至 &lt;b&gt;{0}&lt;/b&gt; 时出错。</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="399" />
       <source>Export Bookmarks</source>
       <translation>导出书签</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="403" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="401" />
       <source>XBEL bookmarks (*.xbel);;XBEL bookmarks (*.xml);;HTML Bookmarks (*.html)</source>
       <translation>XBEL 书签 (*.xbel);;XBEL 书签 (*.xml);;HTML 书签 (*.html)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="429" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="427" />
       <source>Exporting Bookmarks</source>
       <translation>正在导出书签</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="430" />
+      <location filename="../WebBrowser/Bookmarks/BookmarksManager.py" line="428" />
       <source>Error exporting bookmarks to &lt;b&gt;{0}&lt;/b&gt;.</source>
       <translation>将书签导出至 &lt;b&gt;{0}&lt;/b&gt; 时出错。</translation>
     </message>
@@ -3275,231 +3290,231 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="238" />
+      <location filename="../UI/Browser.py" line="239" />
       <source>Show Hidden Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="244" />
+      <location filename="../UI/Browser.py" line="245" />
       <source>New</source>
       <translation type="unfinished">新建</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="246" />
+      <location filename="../UI/Browser.py" line="247" />
       <source>Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="249" />
+      <location filename="../UI/Browser.py" line="250" />
       <source>File</source>
       <translation type="unfinished">文件</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="323" />
-      <location filename="../UI/Browser.py" line="285" />
-      <location filename="../UI/Browser.py" line="255" />
+      <location filename="../UI/Browser.py" line="324" />
+      <location filename="../UI/Browser.py" line="286" />
+      <location filename="../UI/Browser.py" line="256" />
       <source>Open</source>
       <translation>打开</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="258" />
+      <location filename="../UI/Browser.py" line="259" />
       <source>Run Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="622" />
-      <location filename="../UI/Browser.py" line="614" />
-      <location filename="../UI/Browser.py" line="604" />
-      <location filename="../UI/Browser.py" line="595" />
-      <location filename="../UI/Browser.py" line="305" />
-      <location filename="../UI/Browser.py" line="262" />
-      <source>Show Mime-Type</source>
-      <translation>显示 MIME 类型</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="266" />
-      <source>Refresh Source File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="361" />
-      <location filename="../UI/Browser.py" line="309" />
-      <location filename="../UI/Browser.py" line="271" />
-      <source>Copy Path to Clipboard</source>
-      <translation>将路径复制到剪贴板</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="369" />
-      <location filename="../UI/Browser.py" line="329" />
-      <location filename="../UI/Browser.py" line="317" />
-      <location filename="../UI/Browser.py" line="279" />
-      <source>Delete</source>
-      <translation type="unfinished">删除</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="288" />
-      <source>Open in Hex Editor</source>
-      <translation>在十六进制编辑器中打开</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="292" />
-      <source>Open in Icon Editor</source>
-      <translation>在图标编辑器中打开</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="296" />
-      <source>Open in Editor</source>
-      <translation type="unfinished">在编辑器中打开</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="300" />
-      <source>Open in PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="388" />
-      <location filename="../UI/Browser.py" line="379" />
-      <location filename="../UI/Browser.py" line="335" />
-      <source>New toplevel directory...</source>
-      <translation>新顶层文件夹…</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="339" />
-      <source>Add as toplevel directory</source>
-      <translation>添加为顶层文件夹</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="343" />
-      <source>Remove from toplevel</source>
-      <translation>从顶层移除</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="348" />
-      <source>Refresh directory</source>
-      <translation>刷新目录</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="353" />
-      <source>Find in this directory</source>
-      <translation>在该文件夹中查找</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="357" />
-      <source>Find &amp;&amp; Replace in this directory</source>
-      <translation>在此目录中查找 &amp;&amp; 替换</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="373" />
-      <source>Goto</source>
-      <translation>跳转</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="491" />
-      <source>Line {0}</source>
-      <translation>行 {0}</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="596" />
-      <source>The mime type of the file could not be determined.</source>
-      <translation>文件 MIME 类型无法确定。</translation>
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="615" />
-      <location filename="../UI/Browser.py" line="605" />
-      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
-      <translation>文件的 MIME 类型为 &lt;b&gt;{0}&lt;/b&gt;。</translation>
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="623" />
+      <location filename="../UI/Browser.py" line="615" />
+      <location filename="../UI/Browser.py" line="605" />
+      <location filename="../UI/Browser.py" line="596" />
+      <location filename="../UI/Browser.py" line="306" />
+      <location filename="../UI/Browser.py" line="263" />
+      <source>Show Mime-Type</source>
+      <translation>显示 MIME 类型</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="267" />
+      <source>Refresh Source File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="362" />
+      <location filename="../UI/Browser.py" line="310" />
+      <location filename="../UI/Browser.py" line="272" />
+      <source>Copy Path to Clipboard</source>
+      <translation>将路径复制到剪贴板</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="370" />
+      <location filename="../UI/Browser.py" line="330" />
+      <location filename="../UI/Browser.py" line="318" />
+      <location filename="../UI/Browser.py" line="280" />
+      <source>Delete</source>
+      <translation type="unfinished">删除</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="289" />
+      <source>Open in Hex Editor</source>
+      <translation>在十六进制编辑器中打开</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="293" />
+      <source>Open in Icon Editor</source>
+      <translation>在图标编辑器中打开</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="297" />
+      <source>Open in Editor</source>
+      <translation type="unfinished">在编辑器中打开</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="301" />
+      <source>Open in PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="389" />
+      <location filename="../UI/Browser.py" line="380" />
+      <location filename="../UI/Browser.py" line="336" />
+      <source>New toplevel directory...</source>
+      <translation>新顶层文件夹…</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="340" />
+      <source>Add as toplevel directory</source>
+      <translation>添加为顶层文件夹</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="344" />
+      <source>Remove from toplevel</source>
+      <translation>从顶层移除</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="349" />
+      <source>Refresh directory</source>
+      <translation>刷新目录</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="354" />
+      <source>Find in this directory</source>
+      <translation>在该文件夹中查找</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="358" />
+      <source>Find &amp;&amp; Replace in this directory</source>
+      <translation>在此目录中查找 &amp;&amp; 替换</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="374" />
+      <source>Goto</source>
+      <translation>跳转</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="492" />
+      <source>Line {0}</source>
+      <translation>行 {0}</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="597" />
+      <source>The mime type of the file could not be determined.</source>
+      <translation>文件 MIME 类型无法确定。</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="616" />
+      <location filename="../UI/Browser.py" line="606" />
+      <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
+      <translation>文件的 MIME 类型为 &lt;b&gt;{0}&lt;/b&gt;。</translation>
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="624" />
       <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
       <translation>该文件有 MIME 类型。&lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt;将其添加至文本 MIME 类型列表?</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="731" />
+      <location filename="../UI/Browser.py" line="732" />
       <source>New toplevel directory</source>
       <translation>新建顶层文件夹</translation>
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="967" />
-      <location filename="../UI/Browser.py" line="955" />
-      <location filename="../UI/Browser.py" line="946" />
-      <source>New Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="947" />
-      <source>Name for new directory:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="994" />
-      <location filename="../UI/Browser.py" line="956" />
-      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="968" />
+      <location filename="../UI/Browser.py" line="956" />
+      <location filename="../UI/Browser.py" line="947" />
+      <source>New Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="948" />
+      <source>Name for new directory:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="995" />
+      <location filename="../UI/Browser.py" line="957" />
+      <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="969" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1006" />
-      <location filename="../UI/Browser.py" line="993" />
-      <location filename="../UI/Browser.py" line="984" />
-      <source>New File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="985" />
-      <source>Name for new file:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1007" />
+      <location filename="../UI/Browser.py" line="994" />
+      <location filename="../UI/Browser.py" line="985" />
+      <source>New File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="986" />
+      <source>Name for new file:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1008" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1103" />
-      <location filename="../UI/Browser.py" line="1045" />
-      <location filename="../UI/Browser.py" line="1035" />
-      <source>Delete File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1036" />
-      <source>Do you really want to delete this file?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1104" />
       <location filename="../UI/Browser.py" line="1046" />
+      <location filename="../UI/Browser.py" line="1036" />
+      <source>Delete File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1037" />
+      <source>Do you really want to delete this file?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1105" />
+      <location filename="../UI/Browser.py" line="1047" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1071" />
-      <location filename="../UI/Browser.py" line="1061" />
-      <source>Delete Directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/Browser.py" line="1062" />
-      <source>Do you really want to delete this directory?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1072" />
+      <location filename="../UI/Browser.py" line="1062" />
+      <source>Delete Directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1063" />
+      <source>Do you really want to delete this directory?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1073" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/Browser.py" line="1092" />
-      <source>Delete Files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/Browser.py" line="1093" />
+      <source>Delete Files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/Browser.py" line="1094" />
       <source>Do you really want to delete these files?</source>
       <translation type="unfinished" />
     </message>
@@ -5154,27 +5169,27 @@
       <translation>错误:{0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1210" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1221" />
       <source>{0} (ignored)</source>
       <translation>{0}(已忽略)</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1285" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1296" />
       <source>No issues found.</source>
       <translation>未发现问题。</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1289" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1300" />
       <source>No files found (check your ignore list).</source>
       <translation>找不到文件(检查您忽略的列表)。</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2891" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2935" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2892" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2936" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -5660,6 +5675,16 @@
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Exempted 'typing' symbols:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
+      <source>Enter deprecated symbols of the 'typing' module exempted from PEP-585 checking separated by space</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui" line="0" />
       <source>Security</source>
       <translation type="unfinished">安全</translation>
     </message>
@@ -6556,7 +6581,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="174" />
+      <location filename="../Utilities/__init__.py" line="176" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>跟据所给文本,编码 “{0}” 是错误的。</translation>
     </message>
@@ -7684,374 +7709,377 @@
   <context>
     <name>ConfigurationWidget</name>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="174" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="175" />
       <source>Application</source>
       <translation>应用程序</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="180" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="181" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="182" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="183" />
       <source>Cooperation</source>
       <translation>协作</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="189" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="190" />
       <source>Diff</source>
       <translation type="unfinished">差异</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="196" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="197" />
       <source>Email</source>
       <translation>电子邮件</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="203" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="204" />
       <source>Graphics</source>
       <translation>图形</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="865" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="210" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="866" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="211" />
       <source>Hex Editor</source>
       <translation type="unfinished">十六进制编辑器</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="946" />
       <location filename="../Preferences/ConfigurationDialog.py" line="914" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="882" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="851" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="754" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="639" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="217" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="883" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="852" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="755" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="640" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="218" />
       <source>Icons</source>
       <translation>图标</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="223" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="224" />
       <source>IRC</source>
       <translation>IRC</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="225" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="226" />
       <source>Log-Viewer</source>
       <translation>日志浏览器</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="232" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="233" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="239" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="240" />
       <source>MIME-Types</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="768" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="246" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="769" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="247" />
       <source>Network</source>
       <translation>网络</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="253" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="254" />
       <source>Notifications</source>
       <translation>通知</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="896" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="260" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="897" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="261" />
       <source>PDF Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="267" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="928" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="268" />
       <source>Python Package Management</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="274" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="275" />
       <source>Plugin Manager</source>
       <translation>插件管理器</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="775" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="653" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="281" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="776" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="654" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="282" />
       <source>Printer</source>
       <translation>打印机</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="288" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="289" />
       <source>Python</source>
       <translation>Python</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="294" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="295" />
       <source>Qt</source>
       <translation>Qt</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="782" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="296" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="783" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="297" />
       <source>Security</source>
       <translation>安全</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="303" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="304" />
       <source>Shell</source>
       <translation>命令行</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="309" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="310" />
       <source>Tasks</source>
       <translation>任务</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="311" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="312" />
       <source>Templates</source>
       <translation>模板</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="834" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="318" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="835" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="319" />
       <source>Tray Starter</source>
       <translation>托盘启动器</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="325" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="326" />
       <source>Version Control Systems</source>
       <translation>版本控制系统</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="332" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="333" />
       <source>Debugger</source>
       <translation>调试器</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="667" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="374" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="339" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="668" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="375" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="340" />
       <source>General</source>
       <translation>通用配置</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="346" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="347" />
       <source>Python3</source>
       <translation>Python3</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="660" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="353" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="661" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="354" />
       <source>Editor</source>
       <translation>编辑器</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="360" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="361" />
       <source>APIs</source>
       <translation>API</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="367" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="368" />
       <source>Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="674" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="381" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="675" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="382" />
       <source>Filehandling</source>
       <translation>文件处理</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="681" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="388" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="682" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="389" />
       <source>Searching</source>
       <translation>查找</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="817" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="688" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="617" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="395" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="818" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="689" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="618" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="396" />
       <source>Spell checking</source>
       <translation>拼写检查</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="695" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="402" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="696" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="403" />
       <source>Style</source>
       <translation>风格</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="409" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="410" />
       <source>Code Checkers</source>
       <translation>代码检查器</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="702" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="416" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="703" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="417" />
       <source>Typing</source>
       <translation>键盘输入</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="423" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="424" />
       <source>Exporters</source>
       <translation>输出器</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="430" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="431" />
       <source>Autocompletion</source>
       <translation>自动完成</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="458" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="437" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="459" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="438" />
       <source>QScintilla</source>
       <translation>QScintilla</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="514" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="465" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="444" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="515" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="466" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="445" />
       <source>Jedi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="451" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="452" />
       <source>Calltips</source>
       <translation>调用提示</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="709" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="472" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="710" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="473" />
       <source>Highlighters</source>
       <translation>高亮功能</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="716" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="479" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="717" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="480" />
       <source>Filetype Associations</source>
       <translation>文件类型关联</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="723" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="486" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="724" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="487" />
       <source>Styles</source>
       <translation>风格</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="730" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="493" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="731" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="494" />
       <source>Keywords</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="737" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="500" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="738" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="501" />
       <source>Properties</source>
       <translation>属性</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="507" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="508" />
       <source>Mouse Click Handlers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="520" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="521" />
       <source>Help</source>
       <translation>帮助</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="789" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="522" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="790" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="523" />
       <source>Help Documentation</source>
       <translation>帮助文档</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="529" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="530" />
       <source>Help Viewers</source>
       <translation>帮助浏览器</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="550" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="536" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="551" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="537" />
       <source>Project</source>
       <translation>项目</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="543" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="544" />
       <source>Project Viewer</source>
       <translation>项目浏览器</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="557" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="558" />
       <source>Multiproject</source>
       <translation>多重项目</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationDialog.py" line="953" />
       <location filename="../Preferences/ConfigurationDialog.py" line="921" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="889" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="858" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="761" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="646" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="571" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="564" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="890" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="859" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="762" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="647" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="572" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="565" />
       <source>Interface</source>
       <translation>界面</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="578" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="579" />
       <source>Viewmanager</source>
       <translation>视图管理器</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="589" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="590" />
       <source>Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="796" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="596" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="797" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="597" />
       <source>Appearance</source>
       <translation>外观</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="803" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="603" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="804" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="604" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="810" />
-      <location filename="../Preferences/ConfigurationDialog.py" line="610" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="811" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="611" />
       <source>VirusTotal Interface</source>
       <translation>VirusTotal 界面</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1007" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1039" />
       <source>Enter search text...</source>
       <translation>输入搜索内容…</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1080" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1112" />
       <source>Preferences</source>
       <translation>首选项</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1086" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1118" />
       <source>Please select an entry of the list 
 to display the configuration page.</source>
       <translation>请在左边选择一个列表项以显示配置页面。</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1163" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1195" />
       <source>Configuration Page Error</source>
       <translation>配置页面错误</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationDialog.py" line="1164" />
+      <location filename="../Preferences/ConfigurationDialog.py" line="1196" />
       <source>&lt;p&gt;The configuration page &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;配置页面 &lt;b&gt;{0}&lt;/b&gt; 无法载入。&lt;/p&gt;</translation>
     </message>
@@ -10546,26 +10574,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="317" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
       <source>Add allowed host</source>
       <translation>添加允许的主机</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="342" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="306" />
       <source>Enter the IP address of an allowed host</source>
       <translation>输入允许主机的 IP 地址</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="356" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="319" />
+      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="355" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318" />
-      <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="354" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="340" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="341" />
       <source>Edit allowed host</source>
       <translation>编辑允许的主机</translation>
     </message>
@@ -12080,42 +12108,42 @@
   <context>
     <name>DownloadManager</name>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="111" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="113" />
       <source>Open</source>
       <translation>打开</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="117" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="119" />
       <source>Cancel</source>
       <translation>取消</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="122" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="124" />
       <source>Open Containing Folder</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="125" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="127" />
       <source>Go to Download Page</source>
       <translation>前往下载页面</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="126" />
-      <source>Copy Download Link</source>
-      <translation>复制下载链接</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/Download/DownloadManager.py" line="128" />
+      <source>Copy Download Link</source>
+      <translation>复制下载链接</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="130" />
       <source>Select All</source>
       <translation>全选</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="137" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="139" />
       <source>Remove From List</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="172" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="174" />
       <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
       <translation type="unfinished">
@@ -12123,41 +12151,41 @@
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="264" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="266" />
       <source>Suspicuous URL detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="265" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="267" />
       <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="500" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="502" />
       <source>Downloads finished</source>
       <translation>下载已完成</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="501" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="503" />
       <source>All files have been downloaded.</source>
       <translation>所有文件均已下载。</translation>
     </message>
     <message>
       <location filename="../WebBrowser/Download/DownloadManager.ui" line="0" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="586" />
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="509" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="588" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="511" />
       <source>Download Manager</source>
       <translation>下载管理器</translation>
     </message>
     <message numerus="yes">
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="619" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="621" />
       <source>{0}% of %n file(s) ({1}) {2}</source>
       <translation type="unfinished">
         <numerusform />
       </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/Download/DownloadManager.py" line="627" />
+      <location filename="../WebBrowser/Download/DownloadManager.py" line="629" />
       <source>{0}% - Download Manager</source>
       <translation>{0}% - 下载管理器</translation>
     </message>
@@ -12398,7 +12426,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3335" />
+      <location filename="../QScintilla/Editor.py" line="3334" />
       <location filename="../QScintilla/Editor.py" line="428" />
       <location filename="../QScintilla/Editor.py" line="413" />
       <source>Open File</source>
@@ -12470,7 +12498,7 @@
       <translation>取消注释</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9154" />
+      <location filename="../QScintilla/Editor.py" line="9152" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12743,7 +12771,7 @@
       <translation type="unfinished">拼写法</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8272" />
+      <location filename="../QScintilla/Editor.py" line="8270" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>正在进行拼写检查…</translation>
@@ -12804,7 +12832,7 @@
       <translation>编辑断点…</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5932" />
+      <location filename="../QScintilla/Editor.py" line="5929" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>允许断点</translation>
@@ -12996,398 +13024,398 @@
       <translation>打印失败</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3277" />
+      <location filename="../QScintilla/Editor.py" line="3276" />
       <source>File Modified</source>
       <translation>文件已改变</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3278" />
+      <location filename="../QScintilla/Editor.py" line="3277" />
       <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="3336" />
+      <location filename="../QScintilla/Editor.py" line="3335" />
       <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="3511" />
+      <location filename="../QScintilla/Editor.py" line="3492" />
+      <location filename="../QScintilla/Editor.py" line="3454" />
+      <source>Save File</source>
+      <translation>保存文件</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="3455" />
+      <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="3512" />
-      <location filename="../QScintilla/Editor.py" line="3493" />
-      <location filename="../QScintilla/Editor.py" line="3455" />
-      <source>Save File</source>
-      <translation>保存文件</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3456" />
-      <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="3513" />
       <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="3649" />
+      <location filename="../QScintilla/Editor.py" line="3646" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3650" />
+      <location filename="../QScintilla/Editor.py" line="3647" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5106" />
+      <location filename="../QScintilla/Editor.py" line="5103" />
       <source>Autocompletion</source>
       <translation>自动完成</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5107" />
+      <location filename="../QScintilla/Editor.py" line="5104" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>自动完成无效,没有设定自动完成源。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5235" />
+      <location filename="../QScintilla/Editor.py" line="5232" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5236" />
+      <location filename="../QScintilla/Editor.py" line="5233" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5528" />
+      <location filename="../QScintilla/Editor.py" line="5525" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5529" />
+      <location filename="../QScintilla/Editor.py" line="5526" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5936" />
+      <location filename="../QScintilla/Editor.py" line="5933" />
       <source>Disable breakpoint</source>
       <translation>去除断点</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6315" />
+      <location filename="../QScintilla/Editor.py" line="6312" />
       <source>Code Coverage</source>
       <translation>代码覆盖率</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6316" />
+      <location filename="../QScintilla/Editor.py" line="6313" />
       <source>Please select a coverage file</source>
       <translation>请选择一个覆盖率文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6391" />
-      <location filename="../QScintilla/Editor.py" line="6383" />
+      <location filename="../QScintilla/Editor.py" line="6388" />
+      <location filename="../QScintilla/Editor.py" line="6380" />
       <source>Show Code Coverage Annotations</source>
       <translation>显示代码覆盖率注解</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6384" />
+      <location filename="../QScintilla/Editor.py" line="6381" />
       <source>All lines have been covered.</source>
       <translation>所有行均被已覆盖。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6392" />
+      <location filename="../QScintilla/Editor.py" line="6389" />
       <source>There is no coverage file available.</source>
       <translation>没有有效的覆盖率文件。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6496" />
+      <location filename="../QScintilla/Editor.py" line="6493" />
       <source>Profile Data</source>
       <translation>剖析数据</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6497" />
+      <location filename="../QScintilla/Editor.py" line="6494" />
       <source>Please select a profile file</source>
       <translation>请选择一个剖析文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6658" />
-      <location filename="../QScintilla/Editor.py" line="6652" />
+      <location filename="../QScintilla/Editor.py" line="6655" />
+      <location filename="../QScintilla/Editor.py" line="6649" />
       <source>Syntax Error</source>
       <translation>语法错误</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6659" />
+      <location filename="../QScintilla/Editor.py" line="6656" />
       <source>No syntax error message available.</source>
       <translation>语法错误消息无效。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
-      <location filename="../QScintilla/Editor.py" line="6864" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
+      <location filename="../QScintilla/Editor.py" line="6863" />
       <source>Warning</source>
       <translation>警告</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6869" />
       <source>No warning messages available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6934" />
+      <location filename="../QScintilla/Editor.py" line="6933" />
       <source>Style: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6937" />
+      <location filename="../QScintilla/Editor.py" line="6936" />
       <source>Warning: {0}</source>
       <translation>警告:{0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6944" />
+      <location filename="../QScintilla/Editor.py" line="6943" />
       <source>Error: {0}</source>
       <translation>错误:{0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Macro Name</source>
       <translation>宏名称</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7051" />
+      <location filename="../QScintilla/Editor.py" line="7050" />
       <source>Select a macro name:</source>
       <translation>选择一个宏名称:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7077" />
+      <location filename="../QScintilla/Editor.py" line="7076" />
       <source>Load macro file</source>
       <translation>输入宏文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7123" />
-      <location filename="../QScintilla/Editor.py" line="7079" />
+      <location filename="../QScintilla/Editor.py" line="7122" />
+      <location filename="../QScintilla/Editor.py" line="7078" />
       <source>Macro files (*.macro)</source>
       <translation>宏文件 (*.macro)</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7100" />
+      <location filename="../QScintilla/Editor.py" line="7090" />
+      <source>Error loading macro</source>
+      <translation>载入宏文件出错</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7091" />
+      <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="7101" />
-      <location filename="../QScintilla/Editor.py" line="7091" />
-      <source>Error loading macro</source>
-      <translation>载入宏文件出错</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7092" />
-      <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="7102" />
       <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="7121" />
+      <location filename="../QScintilla/Editor.py" line="7120" />
       <source>Save macro file</source>
       <translation>保存宏文件</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7138" />
+      <source>Save macro</source>
+      <translation>保存宏</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7139" />
-      <source>Save macro</source>
-      <translation>保存宏</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7140" />
       <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="7154" />
+      <source>Error saving macro</source>
+      <translation>保存宏出错</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7155" />
-      <source>Error saving macro</source>
-      <translation>保存宏出错</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7156" />
       <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="7168" />
+      <source>Start Macro Recording</source>
+      <translation>开始宏录制</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7169" />
-      <source>Start Macro Recording</source>
-      <translation>开始宏录制</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7170" />
       <source>Macro recording is already active. Start new?</source>
       <translation>宏录制已激活。开始录制新宏?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7195" />
+      <source>Macro Recording</source>
+      <translation>宏录制</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7196" />
-      <source>Macro Recording</source>
-      <translation>宏录制</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation>输入宏名称:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7348" />
+      <location filename="../QScintilla/Editor.py" line="7346" />
       <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="7354" />
+      <location filename="../QScintilla/Editor.py" line="7352" />
       <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="7361" />
+      <location filename="../QScintilla/Editor.py" line="7359" />
       <source>File changed</source>
       <translation>文件已改变</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7411" />
+      <location filename="../QScintilla/Editor.py" line="7409" />
       <source>{0} (ro)</source>
       <translation>{0}(只读)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7716" />
+      <location filename="../QScintilla/Editor.py" line="7714" />
       <source>Drop Error</source>
       <translation>降落误差</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7717" />
+      <location filename="../QScintilla/Editor.py" line="7715" />
       <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="7735" />
+      <source>Resources</source>
+      <translation>资源</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7737" />
-      <source>Resources</source>
-      <translation>资源</translation>
+      <source>Add file...</source>
+      <translation>添加文件…</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7738" />
+      <source>Add files...</source>
+      <translation>添加文件…</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="7739" />
-      <source>Add file...</source>
-      <translation>添加文件…</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7740" />
-      <source>Add files...</source>
-      <translation>添加文件…</translation>
+      <source>Add aliased file...</source>
+      <translation>添加别名文件…</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="7741" />
-      <source>Add aliased file...</source>
-      <translation>添加别名文件…</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>添加本地资源…</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7746" />
+      <location filename="../QScintilla/Editor.py" line="7744" />
       <source>Add resource frame</source>
       <translation>添加资源结构</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7765" />
+      <location filename="../QScintilla/Editor.py" line="7763" />
       <source>Add file resource</source>
       <translation>添加文件资源</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7777" />
       <source>Add file resources</source>
       <translation>添加多个文件资源</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7797" />
+      <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7795" />
       <source>Add aliased file resource</source>
       <translation>添加别名文件资源</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7804" />
+      <location filename="../QScintilla/Editor.py" line="7802" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7879" />
+      <location filename="../QScintilla/Editor.py" line="7877" />
       <source>Package Diagram</source>
       <translation>程序包图</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7880" />
+      <location filename="../QScintilla/Editor.py" line="7878" />
       <source>Include class attributes?</source>
       <translation>包含类属性?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7900" />
+      <location filename="../QScintilla/Editor.py" line="7898" />
       <source>Imports Diagram</source>
       <translation>引用图</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7901" />
+      <location filename="../QScintilla/Editor.py" line="7899" />
       <source>Include imports from external modules?</source>
       <translation>从外部模块包含引用?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7920" />
+      <location filename="../QScintilla/Editor.py" line="7918" />
       <source>Application Diagram</source>
       <translation>应用程序图</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7921" />
+      <location filename="../QScintilla/Editor.py" line="7919" />
       <source>Include module names?</source>
       <translation>包含模块名?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="8274" />
+      <source>Add to dictionary</source>
+      <translation>添加到文件夹</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8276" />
-      <source>Add to dictionary</source>
-      <translation>添加到文件夹</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>全部忽略</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8696" />
+      <location filename="../QScintilla/Editor.py" line="8694" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8697" />
+      <location filename="../QScintilla/Editor.py" line="8695" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8790" />
+      <location filename="../QScintilla/Editor.py" line="8788" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8791" />
+      <location filename="../QScintilla/Editor.py" line="8789" />
       <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="8887" />
+      <location filename="../QScintilla/Editor.py" line="8885" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8893" />
+      <location filename="../QScintilla/Editor.py" line="8891" />
       <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="8961" />
+      <location filename="../QScintilla/Editor.py" line="8959" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8962" />
+      <location filename="../QScintilla/Editor.py" line="8960" />
       <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>
@@ -15005,7 +15033,7 @@
   <context>
     <name>EditorHighlightersPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="144" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="145" />
       <location filename="../Preferences/ConfigurationPages/EditorHighlightersPage.py" line="51" />
       <source>Alternative</source>
       <translation type="unfinished" />
@@ -20872,8 +20900,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1589" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1573" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1591" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1575" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="196" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -20884,7 +20912,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1674" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1676" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="203" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -20935,8 +20963,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1673" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1632" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1634" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="363" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
@@ -21047,17 +21075,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1574" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1576" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1588" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1590" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1633" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1635" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -21673,27 +21701,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="72" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="67" />
       <source>{0} wants to use desktop notifications.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="98" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="92" />
       <source>Remember</source>
       <translation>记住</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="100" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="94" />
       <source>Allow</source>
       <translation>允许</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="101" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="95" />
       <source>Deny</source>
       <translation>拒绝</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="126" />
+      <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="120" />
       <source>{0} wants to use an unknown feature.</source>
       <translation type="unfinished" />
     </message>
@@ -21910,7 +21938,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="486" />
+      <location filename="../WebBrowser/Feeds/FeedsManager.py" line="487" />
       <source>Error loading feed</source>
       <translation type="unfinished" />
     </message>
@@ -23166,7 +23194,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1643" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="213" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -23187,158 +23215,158 @@
       <translation type="unfinished">无法创建项目仓库。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="281" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="283" />
       <source>Creating Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="296" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="298" />
       <source>Adding files to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="305" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
       <source>Initial commit to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="333" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="335" />
       <source>Cloning project from a Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="428" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="429" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="485" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="546" />
       <source>Switch</source>
       <translation type="unfinished">转换</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="545" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="547" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="575" />
       <source>Synchronizing with the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="619" />
       <source>Adding files/directories to the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="691" />
       <source>Removing files/directories from the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="754" />
       <source>Renaming {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="876" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="929" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="918" />
       <source>Revert changes</source>
       <translation type="unfinished">还原改变</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="919" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="930" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="936" />
       <source>Reverting changes</source>
       <translation type="unfinished">还原改变</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="988" />
       <source>Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1012" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1016" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1228" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1232" />
       <source>Git Command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1330" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1336" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1334" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1340" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1346" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1352" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1357" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1356" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1362" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1361" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1367" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1366" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1372" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1371" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1377" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1383" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -23348,459 +23376,459 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1458" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. 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="../Plugins/VcsPlugins/vcsGit/git.py" line="1517" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1500" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1506" />
       <source>Git Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1507" />
       <source>&lt;p&gt;Copying the directory &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="../Plugins/VcsPlugins/vcsGit/git.py" line="1518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
       <source>&lt;p&gt;Copying the file &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="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2726" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1645" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1707" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1694" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1683" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1713" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1689" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1708" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1714" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&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="../Plugins/VcsPlugins/vcsGit/git.py" line="1760" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1766" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1796" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1802" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1835" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1841" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1869" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1894" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1924" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1951" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1957" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1954" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1960" />
       <source>Apply patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2034" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2040" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2284" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2326" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2347" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2348" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2376" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2378" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2395" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2430" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2459" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2525" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2546" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2828" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2672" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2725" />
       <source>Process Generation Error</source>
       <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2771" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2754" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2736" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2738" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2755" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2772" />
       <source>&lt;p&gt;The 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="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2791" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2819" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2793" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2817" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3161" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2991" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3047" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3048" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3183" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3240" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3271" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3294" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3318" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3396" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3598" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3436" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3599" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3559" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3510" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3470" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3437" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3509" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3469" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3483" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3558" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3547" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3548" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3573" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3609" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3610" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3620" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3647" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3707" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3729" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3798" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3804" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3815" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3821" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3839" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3905" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3945" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4012" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
-      <source>All</source>
-      <translation type="unfinished">全部</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
-      <source>Submodule Path</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
+      <source>All</source>
+      <translation type="unfinished">全部</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4029" />
+      <source>Submodule Path</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4030" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4079" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4112" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4143" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4266" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -24213,12 +24241,12 @@
       <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="213" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="214" />
       <source>Changed by skipped commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="215" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="216" />
       <source>Commit cannot be skipped</source>
       <translation type="unfinished" />
     </message>
@@ -25320,7 +25348,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1896" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1891" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="340" />
       <source>Branch</source>
       <translation type="unfinished" />
@@ -25341,9 +25369,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1957" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1868" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1952" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1863" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1840" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="356" />
       <source>Switch</source>
       <translation type="unfinished">转换</translation>
@@ -25354,7 +25382,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1979" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="364" />
       <source>Show Short Log</source>
       <translation type="unfinished" />
@@ -25375,125 +25403,125 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="662" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="664" />
+      <source>Could not start the git executable.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="667" />
-      <source>Could not start the git executable.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="670" />
       <source>Git Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="799" />
       <source>{0} ({1}%)</source>
       <comment>action, confidence</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="869" />
       <source>Process Generation Error</source>
       <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="874" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="870" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1345" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1342" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1359" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1356" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1800" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1958" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1806" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1953" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1801" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1985" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1980" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841" />
       <source>Select a branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1935" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1897" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892" />
       <source>Select a default branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1934" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1929" />
       <source>Branch &amp; Switch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2159" />
       <source>Find Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2160" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2209" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2204" />
       <source>Differences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2221" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2216" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2237" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2232" />
       <source>Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2262" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2257" />
       <source>There is no difference.</source>
       <translation type="unfinished">没有差异。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2429" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2412" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2394" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2424" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2389" />
       <source>Save Diff</source>
       <translation type="unfinished">保存差异</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2391" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished">补丁文件 (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2408" />
       <source>&lt;p&gt;The patch 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="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2425" />
       <source>&lt;p&gt;The patch 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>
@@ -28898,21 +28926,21 @@
       <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="383" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="384" />
       <source>%n file(s) changed</source>
       <translation>
         <numerusform />
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="386" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="387" />
       <source>%n line(s) inserted</source>
       <translation>
         <numerusform />
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="390" />
       <source>%n line(s) deleted</source>
       <translation>
         <numerusform />
@@ -29075,7 +29103,7 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.ui" line="0" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195" />
       <source>Commit</source>
       <translation type="unfinished">提交</translation>
@@ -29106,7 +29134,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210" />
       <source>Add</source>
       <translation type="unfinished">添加</translation>
@@ -29137,7 +29165,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226" />
       <source>Differences</source>
       <translation type="unfinished" />
@@ -29158,7 +29186,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244" />
       <source>Revert</source>
       <translation type="unfinished">还原</translation>
@@ -29169,7 +29197,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253" />
       <source>Forget Missing</source>
       <translation type="unfinished" />
@@ -29180,7 +29208,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="837" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257" />
       <source>Restore Missing</source>
       <translation type="unfinished" />
@@ -29227,98 +29255,98 @@
       <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="604" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="605" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="468" />
       <source>all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="675" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="676" />
       <source>There are no entries selected to be committed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="719" />
       <source>There are no unversioned entries available/selected.</source>
       <translation type="unfinished">没有未版本化的条目可用或被选择。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="741" />
-      <source>Stage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="742" />
+      <source>Stage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="743" />
       <source>There are no stageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="765" />
-      <source>Unstage</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="766" />
+      <source>Unstage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="767" />
       <source>There are no unstageable entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="790" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="791" />
       <source>There are no missing entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810" />
       <source>There are no uncommitted, unstaged changes available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="874" />
       <source>There are no uncommitted changes available/selected.</source>
       <translation type="unfinished">没有未提交的更改可用或被选择。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="923" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="899" />
-      <source>Working Tree to Staging Area</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
-      <source>Staging Area to HEAD Commit</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="924" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="900" />
+      <source>Working Tree to Staging Area</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="901" />
+      <source>Staging Area to HEAD Commit</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="925" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="902" />
       <source>Working Tree to HEAD Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="928" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="905" />
-      <source>Differences Side-by-Side</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="929" />
       <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="906" />
+      <source>Differences Side-by-Side</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="930" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="907" />
       <source>Select the compare method.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1239" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1240" />
       <source>Revert selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1241" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1242" />
       <source>Revert hunk</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1247" />
       <source>Are you sure you want to revert the selected changes?</source>
       <translation type="unfinished" />
     </message>
@@ -29975,12 +30003,12 @@
       <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="336" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="337" />
       <source>current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="340" />
       <source>checked out in linked worktree</source>
       <translation type="unfinished" />
     </message>
@@ -30466,101 +30494,101 @@
       <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="516" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="533" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="552" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="534" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="535" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="553" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="576" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="577" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="578" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="612" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="595" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="596" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="597" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="614" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="634" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="636" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="642" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="669" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="723" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="699" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="724" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="700" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="701" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="725" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="750" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="762" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="751" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="752" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="763" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -30616,27 +30644,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="199" />
+      <location filename="../Globals/__init__.py" line="197" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="202" />
+      <location filename="../Globals/__init__.py" line="200" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="205" />
+      <location filename="../Globals/__init__.py" line="203" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="208" />
+      <location filename="../Globals/__init__.py" line="206" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="211" />
+      <location filename="../Globals/__init__.py" line="209" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -31435,37 +31463,37 @@
   <context>
     <name>HelpSearchWidget</name>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="166" />
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
       <source>Open Link</source>
       <translation>打开链接</translation>
     </message>
     <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="168" />
-      <source>Open Link in New Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="169" />
-      <source>Open Link in Background Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="171" />
-      <source>Open Link in New Tab</source>
-      <translation>在新选项卡中打开链接</translation>
+      <source>Open Link in New Page</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="172" />
-      <source>Open Link in Background Tab</source>
-      <translation>在后台选项卡中打开链接</translation>
-    </message>
-    <message>
-      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="173" />
-      <source>Open Link in New Window</source>
-      <translation>在新窗口中打开链接</translation>
+      <source>Open Link in Background Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="174" />
+      <source>Open Link in New Tab</source>
+      <translation>在新选项卡中打开链接</translation>
     </message>
     <message>
       <location filename="../QtHelpInterface/HelpSearchWidget.py" line="175" />
+      <source>Open Link in Background Tab</source>
+      <translation>在后台选项卡中打开链接</translation>
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="176" />
+      <source>Open Link in New Window</source>
+      <translation>在新窗口中打开链接</translation>
+    </message>
+    <message>
+      <location filename="../QtHelpInterface/HelpSearchWidget.py" line="178" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -31790,104 +31818,104 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="442" />
+      <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="443" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished">Python 3 文档</translation>
-    </message>
-    <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Qt5 文档</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Qt5 文档 {6 ?}</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished">Python 3 文档</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">PyQt5 文档</translation>
+      <source>Qt5 Documentation</source>
+      <translation type="unfinished">Qt5 文档</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>PyQt6 Documentation</source>
-      <translation type="unfinished">PyQt5 文档 {6 ?}</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Qt5 文档 {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
+      <source>PyQt5 Documentation</source>
+      <translation type="unfinished">PyQt5 文档</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
+      <source>PyQt6 Documentation</source>
+      <translation type="unfinished">PyQt5 文档 {6 ?}</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="506" />
-      <source>Open HTML File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <source>Open HTML File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
       <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="699" />
       <source>Help Engine</source>
       <translation type="unfinished">帮助引擎</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="723" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="732" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="734" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="759" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="762" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="767" />
       <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="860" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="840" />
       <source>Clear History</source>
       <translation type="unfinished">清除历史记录</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="968" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="970" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1026" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1028" />
       <source>Filtered by: </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1062" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1057" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1064" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1059" />
       <source>Unfiltered</source>
       <translation type="unfinished" />
     </message>
@@ -33293,446 +33321,446 @@
       <translation>无法创建项目仓库。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="311" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="313" />
       <source>Creating Mercurial repository</source>
       <translation>创建 Mercurial 仓库</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="330" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="332" />
       <source>Initial commit to Mercurial repository</source>
       <translation>向 Mercurial 仓库进行初始提交</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="368" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="370" />
       <source>Cloning project from a Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="468" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="470" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="469" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="471" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="531" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="533" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="623" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="625" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="653" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="708" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="754" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="756" />
       <source>Renaming {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="879" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="881" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="925" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="914" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="927" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="916" />
       <source>Revert changes</source>
       <translation type="unfinished">还原改变</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="917" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="928" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="932" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="934" />
       <source>Reverting changes</source>
       <translation type="unfinished">还原改变</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="977" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="979" />
       <source>Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1017" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1007" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1009" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1008" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1010" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1020" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1021" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1023" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1044" />
       <source>Current branch tip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1216" />
       <source>Mercurial command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1373" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1377" />
       <source>Copying {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1612" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1600" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1591" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1604" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1595" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1613" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1617" />
       <source>&lt;p&gt;The 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="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2274" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2263" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2253" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1688" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2267" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2257" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1692" />
       <source>Apply changegroups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1691" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1695" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1733" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1875" />
       <source>Marking as 'unresolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1877" />
       <source>Marking as 'resolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1895" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1899" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1918" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1922" />
       <source>Creating branch in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1930" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
       <source>Showing current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2022" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2026" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2035" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2039" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2050" />
       <source>Showing aliases for remote repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2061" />
       <source>Recovering from interrupted transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2068" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2072" />
       <source>Identifying project directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2114" />
       <source>Create .hgignore file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2111" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2115" />
       <source>&lt;p&gt;The 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="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2212" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2186" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2216" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2190" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2172" />
       <source>Create changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2170" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2174" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2187" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2191" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Preview changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2255" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2259" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2232" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2264" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2268" />
       <source>Shall the working directory be updated?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2300" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2320" />
       <source>Mercurial Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
       <source>Removing files from the Mercurial repository only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2383" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2364" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2387" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2368" />
       <source>Backing out changeset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2365" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
       <source>No revision given. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2403" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2398" />
+      <source>Rollback last transaction</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2399" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2394" />
-      <source>Rollback last transaction</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2461" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2465" />
       <source>Import Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2513" />
       <source>Export Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2553" />
       <source>Change Phase</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2607" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2646" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2656" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2662" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2666" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2685" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2689" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2703" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2700" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2704" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2789" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2769" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2793" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2762" />
       <source>Add Sub-repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2828" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2759" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2832" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2774" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2846" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2790" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2850" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2794" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2827" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2813" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2849" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2831" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2817" />
       <source>Remove Sub-repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2818" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3062" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2925" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3066" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2929" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2926" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2930" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3063" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3067" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3179" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3183" />
       <source>Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3195" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3199" />
       <source>Delete Bookmark</source>
       <translation type="unfinished">删除书签</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3200" />
       <source>Select the bookmark to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3210" />
       <source>Delete Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3235" />
       <source>Rename Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3268" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3272" />
       <source>Move Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3341" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3345" />
       <source>Pull Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3342" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
       <source>Select the bookmark to be pulled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3354" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3358" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3380" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3384" />
       <source>Push Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3385" />
       <source>Select the bookmark to be push:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3396" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3400" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
@@ -34575,42 +34603,42 @@
   <context>
     <name>HgClient</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="91" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="98" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="140" />
-      <source>Did not receive the 'hello' message.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="142" />
-      <source>Received data on unexpected channel.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="147" />
+      <source>Did not receive the 'hello' message.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="149" />
+      <source>Received data on unexpected channel.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="154" />
       <source>Bad 'hello' message, expected 'capabilities: ' but got '{0}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="152" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="159" />
       <source>'capabilities' message did not contain any capability.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="168" />
       <source>Bad 'hello' message, expected 'encoding: ' but got '{0}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="166" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="173" />
       <source>'encoding' message did not contain any encoding.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="377" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="385" />
       <source>For message see output dialog.</source>
       <translation type="unfinished" />
     </message>
@@ -36021,7 +36049,7 @@
       <translation type="unfinished">复制自</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2690" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2686" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="0" />
       <source>Differences</source>
       <translation type="unfinished" />
@@ -36152,7 +36180,7 @@
       <translation type="unfinished">书签</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2150" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2146" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
@@ -36209,8 +36237,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2244" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2240" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2223" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343" />
       <source>Switch</source>
       <translation type="unfinished">转换</translation>
@@ -36241,8 +36269,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2362" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1562" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2358" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1558" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371" />
       <source>Pull Changes</source>
       <translation type="unfinished" />
@@ -36299,7 +36327,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2501" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="424" />
       <source>Apply Changegroup</source>
       <translation type="unfinished" />
@@ -36330,7 +36358,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2408" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2404" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="454" />
       <source>Strip Changesets</source>
       <translation type="unfinished" />
@@ -36351,117 +36379,117 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="889" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="866" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="886" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="837" />
       <source>Mercurial Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1214" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1210" />
       <source>{0} (large file)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1472" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1468" />
       <source>Side-by-Side Diff to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1479" />
       <source>&lt;a href="sbsdiff:{0}_{1}"&gt;Side-by-Side Compare&lt;/a&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1641" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1560" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1637" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1556" />
       <source>Pull Selected Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2409" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2363" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2245" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2151" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2498" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2405" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2359" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2147" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2224" />
       <source>Select bookmark to switch to (leave empty to use revision):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2273" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2269" />
       <source>Define Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2274" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2270" />
       <source>Enter bookmark name for changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2303" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2299" />
       <source>Move Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2300" />
       <source>Select the bookmark to be moved  to changeset "{0}":</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2637" />
       <source>Find Commit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2638" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2689" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2685" />
       <source>Generating differences ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2701" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2697" />
       <source>Differences to Parent {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2713" />
       <source>Diff to Parent {0}{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2740" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2736" />
       <source>There is no difference.</source>
       <translation type="unfinished">没有差异。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2891" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2875" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2857" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2871" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2853" />
       <source>Save Diff</source>
       <translation type="unfinished">保存差异</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2859" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2855" />
       <source>Patch Files (*.diff)</source>
       <translation type="unfinished">补丁文件 (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2876" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2872" />
       <source>&lt;p&gt;The patch 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="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2892" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2888" />
       <source>&lt;p&gt;The patch 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>
@@ -41337,22 +41365,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="85" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="110" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="161" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -46115,9 +46143,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <location filename="../Network/IRC/IrcWidget.py" line="266" />
       <location filename="../Network/IRC/IrcWidget.py" line="261" />
       <location filename="../Network/IRC/IrcWidget.py" line="254" />
@@ -46152,260 +46180,260 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="520" />
+      <location filename="../Network/IRC/IrcWidget.py" line="519" />
       <source>Server found,connecting...</source>
       <translation>服务器已找到,正在连接…</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="529" />
+      <location filename="../Network/IRC/IrcWidget.py" line="528" />
       <source>Connected,logging in...</source>
       <translation>已连接,正在登录…</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="564" />
+      <location filename="../Network/IRC/IrcWidget.py" line="563" />
       <source>Server disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="607" />
+      <source>Message Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="608" />
-      <source>Message Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="609" />
       <source>Unknown message received from server:&lt;br/&gt;{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1032" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1022" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1014" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1006" />
-      <location filename="../Network/IRC/IrcWidget.py" line="651" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1030" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1020" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1012" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1004" />
+      <location filename="../Network/IRC/IrcWidget.py" line="650" />
+      <location filename="../Network/IRC/IrcWidget.py" line="642" />
+      <source>CTCP</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="643" />
-      <source>CTCP</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="644" />
       <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="652" />
+      <location filename="../Network/IRC/IrcWidget.py" line="651" />
       <source>Received unknown CTCP-{0} response from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="678" />
+      <location filename="../Network/IRC/IrcWidget.py" line="677" />
       <source>Notice</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="688" />
+      <location filename="../Network/IRC/IrcWidget.py" line="687" />
       <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="692" />
+      <location filename="../Network/IRC/IrcWidget.py" line="691" />
       <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="696" />
+      <location filename="../Network/IRC/IrcWidget.py" line="695" />
       <source>Mode</source>
       <translation type="unfinished">模式</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="704" />
+      <location filename="../Network/IRC/IrcWidget.py" line="703" />
       <source>You have left channel {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="716" />
+      <location filename="../Network/IRC/IrcWidget.py" line="715" />
       <source>You are now known as {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="722" />
+      <location filename="../Network/IRC/IrcWidget.py" line="721" />
       <source>User {0} is now known as {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="728" />
+      <location filename="../Network/IRC/IrcWidget.py" line="727" />
       <source>Received PONG from {0}</source>
       <translation>收到了来自 {0} 的 PONG</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="733" />
+      <location filename="../Network/IRC/IrcWidget.py" line="732" />
       <source>Server Error</source>
       <translation>服务器错误</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="767" />
+      <location filename="../Network/IRC/IrcWidget.py" line="765" />
       <source>Error</source>
       <translation>错误</translation>
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="780" />
+      <source>Welcome</source>
+      <translation>欢迎</translation>
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="782" />
-      <source>Welcome</source>
-      <translation>欢迎</translation>
+      <source>Support</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="784" />
-      <source>Support</source>
+      <source>User</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="786" />
-      <source>User</source>
+      <source>MOTD</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="788" />
-      <source>MOTD</source>
-      <translation type="unfinished" />
+      <source>Away</source>
+      <translation>离开</translation>
     </message>
     <message>
       <location filename="../Network/IRC/IrcWidget.py" line="790" />
-      <source>Away</source>
-      <translation>离开</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="792" />
       <source>Info ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="794" />
+      <source>Message of the day</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="796" />
-      <source>Message of the day</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="798" />
       <source>End of message of the day</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="801" />
+      <location filename="../Network/IRC/IrcWidget.py" line="799" />
       <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="806" />
+      <location filename="../Network/IRC/IrcWidget.py" line="804" />
       <source>Current users on {0}: {1}, max. {2}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="811" />
+      <location filename="../Network/IRC/IrcWidget.py" line="809" />
       <source>Current users on the network: {0}, max. {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="813" />
+      <source>You are no longer marked as being away.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="815" />
-      <source>You are no longer marked as being away.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="817" />
       <source>You have been marked as being away.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="947" />
-      <location filename="../Network/IRC/IrcWidget.py" line="931" />
-      <location filename="../Network/IRC/IrcWidget.py" line="880" />
+      <location filename="../Network/IRC/IrcWidget.py" line="945" />
+      <location filename="../Network/IRC/IrcWidget.py" line="929" />
+      <location filename="../Network/IRC/IrcWidget.py" line="878" />
       <source>SSL Error</source>
       <translation>SSL 错误</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="881" />
+      <location filename="../Network/IRC/IrcWidget.py" line="879" />
       <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
-      <location filename="../Network/IRC/IrcWidget.py" line="910" />
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
-      <location filename="../Network/IRC/IrcWidget.py" line="897" />
-      <location filename="../Network/IRC/IrcWidget.py" line="889" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
+      <location filename="../Network/IRC/IrcWidget.py" line="908" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
+      <location filename="../Network/IRC/IrcWidget.py" line="895" />
+      <location filename="../Network/IRC/IrcWidget.py" line="887" />
       <source>Socket Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="890" />
+      <location filename="../Network/IRC/IrcWidget.py" line="888" />
       <source>The host was not found. Please check the host name and port settings.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="898" />
+      <location filename="../Network/IRC/IrcWidget.py" line="896" />
       <source>The connection was refused by the peer. Please check the host name and port settings.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="905" />
+      <location filename="../Network/IRC/IrcWidget.py" line="903" />
       <source>The SSL handshake failed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="911" />
+      <location filename="../Network/IRC/IrcWidget.py" line="909" />
       <source>The following network error occurred:&lt;br/&gt;{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="917" />
+      <location filename="../Network/IRC/IrcWidget.py" line="915" />
       <source>A network error occurred.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="932" />
+      <location filename="../Network/IRC/IrcWidget.py" line="930" />
       <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 type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="948" />
+      <location filename="../Network/IRC/IrcWidget.py" line="946" />
       <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1007" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1005" />
       <source>Received Version request from {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1015" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1013" />
       <source>Received CTCP-PING request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1023" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1021" />
       <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1033" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1031" />
       <source>Received unknown CTCP-{0} request from {1}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1049" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1047" />
       <source>{0} ({1})</source>
       <comment>channel name, users count</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1071" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1069" />
       <source>Critical</source>
       <translation type="unfinished">危险</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1072" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1070" />
       <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1091" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1089" />
       <source>The given nickname is already in use.</source>
       <translation type="unfinished" />
     </message>
@@ -47416,7 +47444,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/LexerAssociationDialog.py" line="131" />
+      <location filename="../Project/LexerAssociationDialog.py" line="132" />
       <location filename="../Project/LexerAssociationDialog.py" line="45" />
       <source>Alternative</source>
       <translation type="unfinished" />
@@ -49270,13 +49298,13 @@
       <translation type="unfinished">将路径复制到剪贴板</translation>
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="485" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="487" />
       <source>Untitled {0}</source>
       <translation type="unfinished">无标题 {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="627" />
-      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="491" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="629" />
+      <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="493" />
       <source>{0} (ro)</source>
       <translation>{0}(只读)</translation>
     </message>
@@ -52679,317 +52707,317 @@
       <translation>&lt;b&gt;清除&lt;/b&gt;&lt;p&gt;删除当前编辑器中的所有文本。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2862" />
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
       <source>About</source>
       <translation>关于</translation>
     </message>
     <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2858" />
+      <source>&amp;About</source>
+      <translation>关于(&amp;A)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2860" />
+      <source>Display information about this software</source>
+      <translation>显示软件信息</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2862" />
-      <source>&amp;About</source>
-      <translation>关于(&amp;A)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2864" />
-      <source>Display information about this software</source>
-      <translation>显示软件信息</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation>&lt;b&gt;关于&lt;/b&gt;&lt;p&gt;显示与本软件有关的部分信息。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About Qt</source>
       <translation>关于 Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2875" />
+      <location filename="../QScintilla/MiniEditor.py" line="2871" />
       <source>About &amp;Qt</source>
       <translation>关于 &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2878" />
+      <location filename="../QScintilla/MiniEditor.py" line="2874" />
       <source>Display information about the Qt toolkit</source>
       <translation>显示 Qt 工具包信息</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2881" />
+      <location filename="../QScintilla/MiniEditor.py" line="2877" />
       <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
       <translation>&lt;b&gt;关于 Qt&lt;/b&gt;&lt;p&gt;显示 Qt 工具包的部分相关信息。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2890" />
+      <location filename="../QScintilla/MiniEditor.py" line="2886" />
       <source>What's This?</source>
       <translation>这是什么?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <location filename="../QScintilla/MiniEditor.py" line="2888" />
       <source>&amp;What's This?</source>
       <translation>这是什么(&amp;W)?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2893" />
+      <location filename="../QScintilla/MiniEditor.py" line="2889" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2898" />
+      <location filename="../QScintilla/MiniEditor.py" line="2894" />
       <source>Context sensitive help</source>
       <translation>背景帮助</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2900" />
+      <location filename="../QScintilla/MiniEditor.py" line="2896" />
       <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="../QScintilla/MiniEditor.py" line="2918" />
+      <location filename="../QScintilla/MiniEditor.py" line="2914" />
       <source>Preferences</source>
       <translation type="unfinished">首选项</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2920" />
+      <location filename="../QScintilla/MiniEditor.py" line="2916" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished">首选项(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2926" />
+      <location filename="../QScintilla/MiniEditor.py" line="2922" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">设定偏好配置</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2924" />
       <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;首选项&lt;/b&gt;&lt;p&gt;将应用程序的配置项设定为你喜欢的值。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2942" />
+      <location filename="../QScintilla/MiniEditor.py" line="2938" />
       <source>&amp;File</source>
       <translation>文件(&amp;F)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2950" />
       <source>&amp;Edit</source>
       <translation>编辑(&amp;E)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2964" />
+      <location filename="../QScintilla/MiniEditor.py" line="2960" />
       <source>&amp;Search</source>
       <translation type="unfinished">搜索(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2974" />
+      <location filename="../QScintilla/MiniEditor.py" line="2970" />
       <source>&amp;View</source>
       <translation type="unfinished">视图(&amp;V)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2980" />
+      <location filename="../QScintilla/MiniEditor.py" line="2976" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished">设置(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2985" />
+      <location filename="../QScintilla/MiniEditor.py" line="2981" />
       <source>&amp;Help</source>
       <translation>帮助(&amp;H)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2997" />
+      <location filename="../QScintilla/MiniEditor.py" line="2993" />
       <source>File</source>
       <translation>文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3009" />
+      <location filename="../QScintilla/MiniEditor.py" line="3005" />
       <source>Edit</source>
       <translation>编辑</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3018" />
+      <location filename="../QScintilla/MiniEditor.py" line="3014" />
       <source>Search</source>
       <translation type="unfinished">搜索</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3024" />
+      <location filename="../QScintilla/MiniEditor.py" line="3020" />
       <source>View</source>
       <translation type="unfinished">视图</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3030" />
+      <location filename="../QScintilla/MiniEditor.py" line="3026" />
       <source>Settings</source>
       <translation type="unfinished">设置</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3033" />
+      <location filename="../QScintilla/MiniEditor.py" line="3029" />
       <source>Help</source>
       <translation>帮助</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3046" />
+      <location filename="../QScintilla/MiniEditor.py" line="3042" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3056" />
+      <location filename="../QScintilla/MiniEditor.py" line="3052" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;状态条的这一部分显示编辑器文件是否为可写。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3065" />
+      <location filename="../QScintilla/MiniEditor.py" line="3061" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;状态条的这一部分显示编辑器的行号。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3074" />
+      <location filename="../QScintilla/MiniEditor.py" line="3070" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;状态条的这一部分显示编辑的光标位置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3088" />
+      <location filename="../QScintilla/MiniEditor.py" line="3084" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3095" />
+      <location filename="../QScintilla/MiniEditor.py" line="3091" />
       <source>Ready</source>
       <translation>就绪</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <location filename="../QScintilla/MiniEditor.py" line="3166" />
       <source>eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3171" />
+      <location filename="../QScintilla/MiniEditor.py" line="3167" />
       <source>The document has unsaved changes.</source>
       <translation>文档有未保存的更改。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="3194" />
       <source>Open File</source>
       <translation>打开文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3199" />
+      <location filename="../QScintilla/MiniEditor.py" line="3195" />
       <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/MiniEditor.py" line="3227" />
+      <location filename="../QScintilla/MiniEditor.py" line="3223" />
       <source>File loaded</source>
       <translation>文件已载入</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <location filename="../QScintilla/MiniEditor.py" line="3304" />
       <source>Save File</source>
       <translation>保存文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3309" />
+      <location filename="../QScintilla/MiniEditor.py" line="3305" />
       <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/MiniEditor.py" line="3315" />
+      <location filename="../QScintilla/MiniEditor.py" line="3311" />
       <source>File saved</source>
       <translation>文件已保存</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>[*] - {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
-      <location filename="../QScintilla/MiniEditor.py" line="3327" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
+      <location filename="../QScintilla/MiniEditor.py" line="3323" />
       <source>Mini Editor</source>
       <translation>迷你编辑器</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="3655" />
-      <location filename="../QScintilla/MiniEditor.py" line="3339" />
+      <location filename="../QScintilla/MiniEditor.py" line="3680" />
+      <location filename="../QScintilla/MiniEditor.py" line="3651" />
+      <location filename="../QScintilla/MiniEditor.py" line="3335" />
       <source>Untitled</source>
       <translation>未命名</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3341" />
       <source>{0}[*] - {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3650" />
+      <location filename="../QScintilla/MiniEditor.py" line="3646" />
       <source>Printing...</source>
       <translation>打印中…</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3666" />
+      <location filename="../QScintilla/MiniEditor.py" line="3662" />
       <source>Printing completed</source>
       <translation>打印已完成</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3668" />
+      <location filename="../QScintilla/MiniEditor.py" line="3664" />
       <source>Error while printing</source>
       <translation>打印时出错</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3671" />
+      <location filename="../QScintilla/MiniEditor.py" line="3667" />
       <source>Printing aborted</source>
       <translation>打印失败</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <location filename="../QScintilla/MiniEditor.py" line="3721" />
       <source>Select all</source>
       <translation>全选</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3726" />
+      <location filename="../QScintilla/MiniEditor.py" line="3722" />
       <source>Deselect all</source>
       <translation>全部取消选择</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3739" />
+      <location filename="../QScintilla/MiniEditor.py" line="3735" />
       <source>Languages</source>
       <translation>语言</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3742" />
+      <location filename="../QScintilla/MiniEditor.py" line="3738" />
       <source>No Language</source>
       <translation>无语言</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3764" />
+      <location filename="../QScintilla/MiniEditor.py" line="3760" />
       <source>Guessed</source>
       <translation>猜测</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3786" />
-      <location filename="../QScintilla/MiniEditor.py" line="3768" />
+      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Alternatives</source>
       <translation>备选</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3783" />
+      <location filename="../QScintilla/MiniEditor.py" line="3779" />
       <source>Alternatives ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <location filename="../QScintilla/MiniEditor.py" line="3810" />
       <source>Pygments Lexer</source>
       <translation>Pygments 词法分析器</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3815" />
+      <location filename="../QScintilla/MiniEditor.py" line="3811" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>选择要应用的 Pygments 词法分析器。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4336" />
+      <location filename="../QScintilla/MiniEditor.py" line="4332" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4337" />
+      <location filename="../QScintilla/MiniEditor.py" line="4333" />
       <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>
@@ -53070,564 +53098,604 @@
   <context>
     <name>MiscellaneousChecker</name>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="15" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="16" />
       <source>coding magic comment not found</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="18" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="19" />
       <source>unknown encoding ({0}) found in coding magic comment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="21" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="23" />
       <source>copyright notice not present</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="24" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="26" />
       <source>copyright notice contains invalid author</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="27" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="30" />
       <source>"{0}" is a Python builtin and is being shadowed; consider renaming the variable</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="32" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="35" />
       <source>"{0}" is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="37" />
-      <source>unnecessary generator - rewrite as a list comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="41" />
+      <source>unnecessary generator - rewrite as a list comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="45" />
       <source>unnecessary generator - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="44" />
-      <source>unnecessary generator - rewrite as a dict comprehension</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="48" />
-      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
+      <source>unnecessary generator - rewrite as a dict comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="52" />
-      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <source>unnecessary list comprehension - rewrite as a set comprehension</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="56" />
+      <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="60" />
       <source>unnecessary {0} call - rewrite as a literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="59" />
-      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="63" />
-      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <source>unnecessary {0} call around {1}() - toggle reverse argument to sorted()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="67" />
+      <source>unnecessary {0} call around {1}() - use sorted(..., reverse={2})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="71" />
       <source>unnecessary {0} call around {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="70" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="74" />
       <source>unnecessary {0} call within {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="73" />
-      <source>unnecessary subscript reversal of iterable within {0}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="77" />
+      <source>unnecessary subscript reversal of iterable within {0}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="81" />
       <source>unnecessary {0} literal - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="80" />
-      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="84" />
-      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
+      <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="88" />
-      <source>unnecessary list call - remove the outer call to list()</source>
+      <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="92" />
+      <source>unnecessary list call - remove the outer call to list()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="96" />
       <source>unnecessary {0} comprehension - rewrite using {0}()</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="95" />
-      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="99" />
-      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="103" />
+      <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="108" />
       <source>sort keys - '{0}' should be before '{1}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="106" />
-      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="110" />
-      <source>use of 'datetime.datetime.today()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="115" />
-      <source>use of 'datetime.datetime.utcnow()' should be avoided.
-Use 'datetime.datetime.now(tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="120" />
-      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="125" />
-      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="129" />
-      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" />
-      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="112" />
+      <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="117" />
+      <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="122" />
+      <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="127" />
+      <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="131" />
+      <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" />
+      <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" />
-      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
+      <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="143" />
-      <source>use of 'datetime.date()' should be avoided.
-Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <source>multiple decorators were used to declare property '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="148" />
-      <source>use of 'datetime.date.today()' should be avoided.
-Use 'datetime.datetime.now(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="153" />
-      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
-Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="158" />
-      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="161" />
-      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="165" />
-      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="169" />
-      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="173" />
-      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="177" />
-      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="152" />
+      <source>use of 'datetime.datetime.today()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="157" />
+      <source>use of 'datetime.datetime.utcnow()' should be avoided.
+Use 'datetime.datetime.now(tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="162" />
+      <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(, tz=)' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" />
+      <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" />
+      <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" />
+      <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="181" />
-      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <source>use of 'datetime.datetime.fromordinal()' should be avoided</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" />
-      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="188" />
-      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="193" />
-      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="198" />
-      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="202" />
-      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="206" />
-      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="210" />
-      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" />
-      <source>Python does not support the unary prefix increment</source>
+      <source>use of 'datetime.date()' should be avoided.
+Use 'datetime.datetime(, tzinfo=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" />
+      <source>use of 'datetime.date.today()' should be avoided.
+Use 'datetime.datetime.now(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" />
+      <source>use of 'datetime.date.fromtimestamp()' should be avoided.
+Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="200" />
+      <source>use of 'datetime.date.fromordinal()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" />
+      <source>use of 'datetime.date.fromisoformat()' should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="207" />
+      <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="212" />
+      <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="216" />
+      <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="220" />
-      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="225" />
-      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="230" />
-      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="224" />
+      <source>'sys.version_info[0] == 3' referenced (Python 4), use '&gt;='</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" />
+      <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="231" />
+      <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" />
-      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
+      <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" />
-      <source>do not call getattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="244" />
-      <source>do not call setattr with a constant attribute value</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="247" />
-      <source>do not call assert False since python -O removes these calls</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="251" />
-      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" />
-      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="262" />
-      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="267" />
-      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="272" />
-      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="276" />
-      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" />
+      <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" />
+      <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="254" />
+      <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer 'except Exception:'. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" />
+      <source>Python does not support the unary prefix increment</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="264" />
+      <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="269" />
+      <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="274" />
+      <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="280" />
+      <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="285" />
-      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="290" />
-      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="296" />
-      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <source>do not call getattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" />
+      <source>do not call setattr with a constant attribute value</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" />
+      <source>do not call assert False since python -O removes these calls</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" />
+      <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="301" />
-      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="306" />
-      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" />
-      <source>Function definition does not bind loop variable '{0}'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" />
-      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="322" />
-      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="327" />
-      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
+      <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" />
+      <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" />
+      <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="329" />
+      <source>Found useless expression. Consider either assigning it to a variable or removing it.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" />
-      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" />
-      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="347" />
-      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="352" />
-      <source>Except handlers should only be names of exception classes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="356" />
-      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" />
-      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" />
-      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="372" />
-      <source>unncessary f-string</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" />
-      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" />
-      <source>found {0} formatter</source>
+      <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="340" />
+      <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="345" />
+      <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="350" />
+      <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="355" />
+      <source>Function definition does not bind loop variable '{0}'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="359" />
+      <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" />
+      <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" />
+      <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" />
-      <source>format string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="381" />
-      <source>docstring does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="384" />
-      <source>other string does contain unindexed parameters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" />
-      <source>format call uses too large index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="390" />
-      <source>format call uses missing keyword ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="393" />
-      <source>format call uses keyword arguments but no named entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="397" />
-      <source>format call uses variable arguments but no numbered entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="401" />
-      <source>format call uses implicit and explicit indexes together</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="405" />
-      <source>format call provides unused index ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" />
-      <source>format call provides unused keyword ({0})</source>
+      <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" />
+      <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="391" />
+      <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" />
+      <source>Except handlers should only be names of exception classes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="400" />
+      <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="406" />
+      <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" />
-      <source>logging statement uses string.format()</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="414" />
-      <source>logging statement uses '%'</source>
+      <source>Sets should not contain duplicate items. Duplicate items will be replaced with a single item at runtime.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="417" />
-      <source>logging statement uses '+'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" />
-      <source>logging statement uses f-string</source>
+      <source>unncessary f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="418" />
+      <source>cannot use 'self.__class__' as first argument of 'super()' call</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="423" />
-      <source>logging statement uses 'warn' instead of 'warning'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="426" />
-      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <source>found {0} formatter</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" />
+      <source>format string does contain unindexed parameters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="427" />
+      <source>docstring does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="430" />
-      <source>expected these __future__ imports: {0}; but got none</source>
+      <source>other string does contain unindexed parameters</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" />
-      <source>gettext import with alias _ found: {0}</source>
+      <source>format call uses too large index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="436" />
-      <source>print statement found</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" />
-      <source>one element tuple found</source>
+      <source>format call uses missing keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" />
+      <source>format call uses keyword arguments but no named entries</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="440" />
-      <source>mutable default argument of type {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="446" />
-      <source>mutable default argument of function call '{0}'</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" />
-      <source>None should not be added at any return if function has no return value except None</source>
+      <source>format call uses variable arguments but no numbered entries</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="447" />
+      <source>format call uses implicit and explicit indexes together</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="451" />
+      <source>format call provides unused index ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" />
-      <source>an explicit value at every return should be added if function has a return value except None</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="459" />
-      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <source>format call provides unused keyword ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" />
+      <source>logging statement uses string.format()</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="461" />
+      <source>logging statement uses '%'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="464" />
-      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="469" />
-      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <source>logging statement uses '+'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" />
+      <source>logging statement uses f-string</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="470" />
+      <source>logging statement uses 'warn' instead of 'warning'</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="474" />
+      <source>expected these __future__ imports: {0}; but only got: {1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="478" />
+      <source>expected these __future__ imports: {0}; but got none</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="482" />
+      <source>gettext import with alias _ found: {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="486" />
+      <source>print statement found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="488" />
+      <source>one element tuple found</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="495" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="492" />
+      <source>mutable default argument of type {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="498" />
+      <source>mutable default argument of function call '{0}'</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="502" />
+      <source>None should not be added at any return if function has no return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="507" />
+      <source>an explicit value at every return should be added if function has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="512" />
+      <source>an explicit return at the end of the function should be added if it has a return value except None</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" />
+      <source>a value should not be assigned to a variable if it will be used as a return value only</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="523" />
+      <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="529" />
       <source>commented code lines should be removed</source>
       <translation type="unfinished" />
     </message>
@@ -56859,103 +56927,103 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="193" />
+      <location filename="../PipInterface/Pip.py" line="195" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="216" />
+      <location filename="../PipInterface/Pip.py" line="220" />
       <source>Interpreter for Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="217" />
+      <location filename="../PipInterface/Pip.py" line="221" />
       <source>No interpreter configured for the selected virtual environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="257" />
+      <location filename="../PipInterface/Pip.py" line="261" />
       <source>Install PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="304" />
+      <location filename="../PipInterface/Pip.py" line="308" />
       <source>Repair PIP</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="395" />
+      <location filename="../PipInterface/Pip.py" line="399" />
       <source>Upgrade Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="441" />
+      <location filename="../PipInterface/Pip.py" line="445" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="471" />
+      <location filename="../PipInterface/Pip.py" line="475" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="492" />
+      <location filename="../PipInterface/Pip.py" line="496" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="549" />
-      <location filename="../PipInterface/Pip.py" line="521" />
-      <location filename="../PipInterface/Pip.py" line="512" />
+      <location filename="../PipInterface/Pip.py" line="553" />
+      <location filename="../PipInterface/Pip.py" line="525" />
+      <location filename="../PipInterface/Pip.py" line="516" />
       <source>Uninstall Packages</source>
       <translation type="unfinished">卸载包</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="550" />
-      <location filename="../PipInterface/Pip.py" line="513" />
+      <location filename="../PipInterface/Pip.py" line="554" />
+      <location filename="../PipInterface/Pip.py" line="517" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="559" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="912" />
+      <location filename="../PipInterface/Pip.py" line="916" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="938" />
-      <location filename="../PipInterface/Pip.py" line="929" />
+      <location filename="../PipInterface/Pip.py" line="942" />
+      <location filename="../PipInterface/Pip.py" line="933" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="930" />
+      <location filename="../PipInterface/Pip.py" line="934" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="962" />
-      <location filename="../PipInterface/Pip.py" line="955" />
+      <location filename="../PipInterface/Pip.py" line="966" />
+      <location filename="../PipInterface/Pip.py" line="959" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="956" />
+      <location filename="../PipInterface/Pip.py" line="960" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="987" />
-      <location filename="../PipInterface/Pip.py" line="979" />
+      <location filename="../PipInterface/Pip.py" line="991" />
+      <location filename="../PipInterface/Pip.py" line="983" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="980" />
+      <location filename="../PipInterface/Pip.py" line="984" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -56978,12 +57046,12 @@
       <translation type="unfinished">错误</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="153" />
+      <location filename="../PipInterface/PipDialog.py" line="154" />
       <source>Process Generation Error</source>
       <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipDialog.py" line="154" />
+      <location filename="../PipInterface/PipDialog.py" line="155" />
       <source>The process {0} could not be started.</source>
       <translation type="unfinished" />
     </message>
@@ -57848,225 +57916,233 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="434" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="435" />
       <source>Getting installed packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="448" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="449" />
       <source>Getting outdated packages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1202" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1022" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1009" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="973" />
-      <source>Search PyPI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
-      <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message numerus="yes">
-      <location filename="../PipInterface/PipPackagesWidget.py" line="989" />
-      <source>%n package(s) found.</source>
-      <translation type="unfinished">
-        <numerusform />
-      </translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="996" />
-      <source>Showing first {0} packages found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1015" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
-      <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
-      <source>&lt;p&gt;There were no more results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1203" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1023" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1010" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="974" />
+      <source>Search PyPI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="975" />
+      <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message numerus="yes">
+      <location filename="../PipInterface/PipPackagesWidget.py" line="990" />
+      <source>%n package(s) found.</source>
+      <translation type="unfinished">
+        <numerusform />
+      </translation>
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="997" />
+      <source>Showing first {0} packages found.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1016" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1011" />
+      <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1024" />
+      <source>&lt;p&gt;There were no more results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1204" />
       <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1222" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1223" />
       <source>Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1224" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1225" />
       <source>Install Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1227" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1228" />
       <source>Install Pip to User-Site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1230" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1231" />
       <source>Repair Pip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1237" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1238" />
       <source>Install</source>
       <translation type="unfinished">安装</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1402" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1239" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1403" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1240" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1242" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1243" />
       <source>Install Local Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1245" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1246" />
       <source>Re-Install Selected Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1252" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1253" />
       <source>Requirements/Constraints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1254" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1255" />
       <source>Install Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1257" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1258" />
       <source>Uninstall Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1260" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1261" />
       <source>Generate Requirements...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1264" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1265" />
       <source>Generate Constraints...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1271" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1272" />
       <source>Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1273" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1274" />
       <source>Show Cache Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1276" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1277" />
       <source>Show Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1279" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1280" />
       <source>Remove Cached Files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1282" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1283" />
       <source>Purge Cache...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1299" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1300" />
       <source>Show Licenses...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1303" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1304" />
       <source>Check Vulnerabilities</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1307" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1308" />
       <source>Update Vulnerability Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1311" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1312" />
       <source>Create SBOM file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1318" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1319" />
       <source>Edit User Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1321" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1322" />
       <source>Edit Environment Configuration...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1326" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1327" />
       <source>Configure...</source>
       <translation type="unfinished">配置…</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1545" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1532" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1521" />
-      <source>Edit Configuration</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../PipInterface/PipPackagesWidget.py" line="1546" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1533" />
       <location filename="../PipInterface/PipPackagesWidget.py" line="1522" />
+      <source>Edit Configuration</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1547" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1534" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1523" />
       <source>No valid configuration path determined. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1714" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1736" />
       <source>{0} {1}</source>
       <comment>package name, package version</comment>
       <translation type="unfinished">{0} {1}</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1735" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1757" />
       <source>Affected Version:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1738" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1760" />
       <source>Advisory:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1862" />
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1843" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1890" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1865" />
       <source>unknown</source>
       <translation type="unfinished">未知</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackagesWidget.py" line="1859" />
+      <location filename="../PipInterface/PipPackagesWidget.py" line="1887" />
       <source>any</source>
       <translation type="unfinished" />
     </message>
   </context>
   <context>
+    <name>PipPackagesWindow</name>
+    <message>
+      <location filename="../PipInterface/PipPackagesWindow.py" line="56" />
+      <source>Manage Packages</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>PipPage</name>
     <message>
       <location filename="../Preferences/ConfigurationPages/PipPage.py" line="31" />
@@ -59459,7 +59535,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="470" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="471" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -61094,8 +61170,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6671" />
-      <location filename="../Project/Project.py" line="6642" />
+      <location filename="../Project/Project.py" line="6668" />
+      <location filename="../Project/Project.py" line="6639" />
       <location filename="../Project/Project.py" line="6593" />
       <location filename="../Project/Project.py" line="4800" />
       <source>Execute Make</source>
@@ -61117,7 +61193,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6648" />
+      <location filename="../Project/Project.py" line="6645" />
       <location filename="../Project/Project.py" line="4819" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
@@ -61637,22 +61713,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6643" />
+      <location filename="../Project/Project.py" line="6640" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6651" />
+      <location filename="../Project/Project.py" line="6648" />
       <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="6656" />
+      <location filename="../Project/Project.py" line="6653" />
       <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="6672" />
+      <location filename="../Project/Project.py" line="6669" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
@@ -64563,7 +64639,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="424" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="434" />
       <location filename="../DataViews/PyCoverageDialog.py" line="69" />
       <source>LCOV Report</source>
       <translation type="unfinished" />
@@ -64591,12 +64667,12 @@
       </translation>
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="425" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="435" />
       <source>Enter the path of the output file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyCoverageDialog.py" line="429" />
+      <location filename="../DataViews/PyCoverageDialog.py" line="439" />
       <source>LCOV Files (*.lcov);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -64873,7 +64949,7 @@
       <translation type="unfinished">%v/%m 文件</translation>
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="361" />
+      <location filename="../DataViews/PyProfileDialog.py" line="371" />
       <location filename="../DataViews/PyProfileDialog.py" line="91" />
       <source>Exclude Python Library</source>
       <translation>排除 Python 库</translation>
@@ -64924,7 +65000,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../DataViews/PyProfileDialog.py" line="357" />
+      <location filename="../DataViews/PyProfileDialog.py" line="367" />
       <source>Include Python Library</source>
       <translation>包含 Python 库</translation>
     </message>
@@ -66309,38 +66385,38 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="213" />
+      <location filename="../UI/PythonAstViewer.py" line="214" />
       <source>No editor has been opened.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="223" />
+      <location filename="../UI/PythonAstViewer.py" line="224" />
       <source>The current editor does not contain any source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="229" />
+      <location filename="../UI/PythonAstViewer.py" line="230" />
       <source>The current editor does not contain Python source code.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="247" />
+      <location filename="../UI/PythonAstViewer.py" line="248" />
       <source>Module</source>
       <translation type="unfinished">模块</translation>
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="279" />
+      <location filename="../UI/PythonAstViewer.py" line="280" />
       <source>{0}: {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="296" />
-      <location filename="../UI/PythonAstViewer.py" line="286" />
+      <location filename="../UI/PythonAstViewer.py" line="297" />
+      <location filename="../UI/PythonAstViewer.py" line="287" />
       <source>{0},{1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/PythonAstViewer.py" line="303" />
+      <location filename="../UI/PythonAstViewer.py" line="304" />
       <source>{0}  -  {1}</source>
       <translation type="unfinished" />
     </message>
@@ -68918,7 +68994,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="716" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="714" />
       <source>Initializing new queue repository</source>
       <translation type="unfinished" />
     </message>
@@ -69896,50 +69972,82 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1341" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1555" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
       <source>Active</source>
       <translation type="unfinished">活动的</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1342" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1345" />
-      <source>Status</source>
-      <translation type="unfinished">状态</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1349" />
-      <source>Hostname</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1350" />
-      <source>IPv4 Address</source>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1343" />
+      <source>Name</source>
+      <translation type="unfinished">名称</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1568" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1344" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1347" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Public</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1348" />
+      <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>MTU</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1351" />
+      <source>{0} Bytes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1556" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1559" />
+      <source>Status</source>
+      <translation type="unfinished">状态</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1563" />
+      <source>Hostname</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1564" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1565" />
       <source>Netmask</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1352" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1566" />
       <source>Gateway</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1353" />
+      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1567" />
       <source>DNS</source>
       <translation type="unfinished" />
     </message>
-    <message>
-      <location filename="../MicroPython/Devices/RP2040Devices.py" line="1354" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
   </context>
   <context>
     <name>RccCompilerOptionsDialog</name>
@@ -71026,7 +71134,7 @@
       <translation>匹配大小写</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/SearchWidget.py" line="98" />
+      <location filename="../WebBrowser/SearchWidget.py" line="100" />
       <source>Expression was not found.</source>
       <translation>表达式未找到。</translation>
     </message>
@@ -72438,46 +72546,46 @@
       <translation>配置…</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2063" />
-      <location filename="../QScintilla/Shell.py" line="1845" />
+      <location filename="../QScintilla/Shell.py" line="2059" />
+      <location filename="../QScintilla/Shell.py" line="1841" />
       <location filename="../QScintilla/Shell.py" line="408" />
       <source>Project</source>
       <translation type="unfinished">项目</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="810" />
+      <location filename="../QScintilla/Shell.py" line="806" />
       <source>Select History</source>
       <translation>选择历史</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="811" />
+      <location filename="../QScintilla/Shell.py" line="807" />
       <source>Select the history entry to execute (most recent shown last).</source>
       <translation>选择历史条目以执行(最常用的显示在最后)。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="876" />
+      <location filename="../QScintilla/Shell.py" line="872" />
       <source>Passive Debug Mode</source>
       <translation>被动调试模式</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="877" />
+      <location filename="../QScintilla/Shell.py" line="873" />
       <source>
 Not connected</source>
       <translation>
 没有连接</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="880" />
+      <location filename="../QScintilla/Shell.py" line="876" />
       <source>No.</source>
       <translation>No.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="882" />
+      <location filename="../QScintilla/Shell.py" line="878" />
       <source>{0} on {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="929" />
+      <location filename="../QScintilla/Shell.py" line="925" />
       <source>Exception "{0}"
 {1}
 File: {2}, Line: {3}
@@ -72485,88 +72593,88 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="938" />
+      <location filename="../QScintilla/Shell.py" line="934" />
       <source>Exception "{0}"
 {1}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="958" />
+      <location filename="../QScintilla/Shell.py" line="954" />
       <source>Unspecified syntax error.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="961" />
+      <location filename="../QScintilla/Shell.py" line="957" />
       <source>Syntax error "{1}" in file {0} at line {2}, character {3}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="985" />
+      <location filename="../QScintilla/Shell.py" line="981" />
       <source>Signal "{0}" generated in file {1} at line {2}.
 Function: {3}({4})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1067" />
+      <location filename="../QScintilla/Shell.py" line="1063" />
       <source>StdOut: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1075" />
+      <location filename="../QScintilla/Shell.py" line="1071" />
       <source>StdErr: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1101" />
+      <location filename="../QScintilla/Shell.py" line="1097" />
       <source>&lt;{0}&gt; {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1888" />
+      <location filename="../QScintilla/Shell.py" line="1884" />
       <source>Available Virtual Environments:
 {0}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="1931" />
-      <location filename="../QScintilla/Shell.py" line="1895" />
+      <location filename="../QScintilla/Shell.py" line="1927" />
+      <location filename="../QScintilla/Shell.py" line="1891" />
       <source>Current Virtual Environment: '{0}'
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2203" />
+      <location filename="../QScintilla/Shell.py" line="2199" />
       <source>Drop Error</source>
       <translation>降落误差</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2204" />
+      <location filename="../QScintilla/Shell.py" line="2200" />
       <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="2446" />
-      <location filename="../QScintilla/Shell.py" line="2431" />
-      <location filename="../QScintilla/Shell.py" line="2412" />
+      <location filename="../QScintilla/Shell.py" line="2442" />
+      <location filename="../QScintilla/Shell.py" line="2427" />
+      <location filename="../QScintilla/Shell.py" line="2408" />
       <source>Save Shell Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2414" />
+      <location filename="../QScintilla/Shell.py" line="2410" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation type="unfinished">文本文件 (*.txt);;所有文件 (*)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2432" />
+      <location filename="../QScintilla/Shell.py" line="2428" />
       <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="2447" />
+      <location filename="../QScintilla/Shell.py" line="2443" />
       <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>
@@ -72811,335 +72919,335 @@
   <context>
     <name>ShellWindow</name>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1275" />
-      <location filename="../QScintilla/ShellWindow.py" line="54" />
+      <location filename="../QScintilla/ShellWindow.py" line="1279" />
+      <location filename="../QScintilla/ShellWindow.py" line="62" />
       <source>eric Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="220" />
-      <source>Quit</source>
-      <translation type="unfinished">退出</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="222" />
-      <source>&amp;Quit</source>
-      <translation type="unfinished">退出(&amp;Q)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="223" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished">Ctrl+Q</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="228" />
-      <source>Quit the Shell</source>
-      <translation type="unfinished">退出程序</translation>
+      <source>Quit</source>
+      <translation type="unfinished">退出</translation>
     </message>
     <message>
       <location filename="../QScintilla/ShellWindow.py" line="230" />
+      <source>&amp;Quit</source>
+      <translation type="unfinished">退出(&amp;Q)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="231" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished">Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="236" />
+      <source>Quit the Shell</source>
+      <translation type="unfinished">退出程序</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="238" />
       <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="237" />
+      <location filename="../QScintilla/ShellWindow.py" line="245" />
       <source>New Window</source>
       <translation type="unfinished">新建窗口</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="239" />
+      <location filename="../QScintilla/ShellWindow.py" line="247" />
       <source>New &amp;Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="240" />
+      <location filename="../QScintilla/ShellWindow.py" line="248" />
       <source>Ctrl+Shift+N</source>
       <comment>File|New Window</comment>
       <translation type="unfinished">Ctrl+Shift+N</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="245" />
+      <location filename="../QScintilla/ShellWindow.py" line="253" />
       <source>Open a new Shell window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="247" />
+      <location filename="../QScintilla/ShellWindow.py" line="255" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="258" />
-      <location filename="../QScintilla/ShellWindow.py" line="256" />
-      <source>Restart</source>
-      <translation type="unfinished">重启</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="264" />
-      <source>Restart the shell</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="266" />
+      <location filename="../QScintilla/ShellWindow.py" line="264" />
+      <source>Restart</source>
+      <translation type="unfinished">重启</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="272" />
+      <source>Restart the shell</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="274" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="278" />
-      <location filename="../QScintilla/ShellWindow.py" line="276" />
+      <location filename="../QScintilla/ShellWindow.py" line="286" />
+      <location filename="../QScintilla/ShellWindow.py" line="284" />
       <source>Restart and Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="285" />
+      <location filename="../QScintilla/ShellWindow.py" line="293" />
       <source>Clear the window and restart the shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="288" />
+      <location filename="../QScintilla/ShellWindow.py" line="296" />
       <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="298" />
+      <location filename="../QScintilla/ShellWindow.py" line="306" />
       <source>Save Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="300" />
+      <location filename="../QScintilla/ShellWindow.py" line="308" />
       <source>Save Contents...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="309" />
+      <location filename="../QScintilla/ShellWindow.py" line="317" />
       <source>Save the current contents of the shell to a file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="312" />
+      <location filename="../QScintilla/ShellWindow.py" line="320" />
       <source>&lt;b&gt;Save Contents&lt;/b&gt;&lt;p&gt;Save the current contents of the shell to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="345" />
+      <location filename="../QScintilla/ShellWindow.py" line="353" />
       <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="../QScintilla/ShellWindow.py" line="367" />
+      <location filename="../QScintilla/ShellWindow.py" line="375" />
       <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;复制&lt;/b&gt;&lt;p&gt;将已选文件复制到剪贴板中。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="389" />
+      <location filename="../QScintilla/ShellWindow.py" line="397" />
       <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="411" />
+      <location filename="../QScintilla/ShellWindow.py" line="419" />
       <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="709" />
-      <location filename="../QScintilla/ShellWindow.py" line="708" />
+      <location filename="../QScintilla/ShellWindow.py" line="713" />
+      <location filename="../QScintilla/ShellWindow.py" line="712" />
       <source>Move forward one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="721" />
-      <location filename="../QScintilla/ShellWindow.py" line="720" />
+      <location filename="../QScintilla/ShellWindow.py" line="725" />
+      <location filename="../QScintilla/ShellWindow.py" line="724" />
       <source>Move back one history entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1115" />
+      <location filename="../QScintilla/ShellWindow.py" line="1119" />
       <source>Show History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1117" />
+      <location filename="../QScintilla/ShellWindow.py" line="1121" />
       <source>&amp;Show History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1123" />
-      <source>Show the shell history in a dialog</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1127" />
+      <source>Show the shell history in a dialog</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1131" />
       <source>Clear History</source>
       <translation type="unfinished">清除历史记录</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1129" />
+      <location filename="../QScintilla/ShellWindow.py" line="1133" />
       <source>&amp;Clear History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1135" />
-      <source>Clear the shell history</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1139" />
+      <source>Clear the shell history</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1143" />
       <source>Select History Entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1140" />
+      <location filename="../QScintilla/ShellWindow.py" line="1144" />
       <source>Select History &amp;Entry</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1147" />
+      <location filename="../QScintilla/ShellWindow.py" line="1151" />
       <source>Select an entry of the shell history</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
+      <location filename="../QScintilla/ShellWindow.py" line="1160" />
       <source>About</source>
       <translation type="unfinished">关于</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1156" />
-      <source>&amp;About</source>
-      <translation type="unfinished">关于(&amp;A)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1158" />
-      <source>Display information about this software</source>
-      <translation type="unfinished">显示软件信息</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/ShellWindow.py" line="1160" />
+      <source>&amp;About</source>
+      <translation type="unfinished">关于(&amp;A)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1162" />
+      <source>Display information about this software</source>
+      <translation type="unfinished">显示软件信息</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/ShellWindow.py" line="1164" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;关于&lt;/b&gt;&lt;p&gt;显示与本软件有关的部分信息。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About Qt</source>
       <translation type="unfinished">关于 Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1169" />
+      <location filename="../QScintilla/ShellWindow.py" line="1173" />
       <source>About &amp;Qt</source>
       <translation type="unfinished">关于 &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1172" />
+      <location filename="../QScintilla/ShellWindow.py" line="1176" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1175" />
+      <location filename="../QScintilla/ShellWindow.py" line="1179" />
       <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="../QScintilla/ShellWindow.py" line="1184" />
+      <location filename="../QScintilla/ShellWindow.py" line="1188" />
       <source>What's This?</source>
       <translation type="unfinished">这是什么?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1186" />
+      <location filename="../QScintilla/ShellWindow.py" line="1190" />
       <source>&amp;What's This?</source>
       <translation type="unfinished">这是什么(&amp;W)?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1187" />
+      <location filename="../QScintilla/ShellWindow.py" line="1191" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1192" />
+      <location filename="../QScintilla/ShellWindow.py" line="1196" />
       <source>Context sensitive help</source>
       <translation type="unfinished">背景帮助</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1194" />
+      <location filename="../QScintilla/ShellWindow.py" line="1198" />
       <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="../QScintilla/ShellWindow.py" line="1273" />
+      <location filename="../QScintilla/ShellWindow.py" line="1277" />
       <source>eric Shell [{0}]</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="1346" />
       <source>About eric Shell Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1343" />
+      <location filename="../QScintilla/ShellWindow.py" line="1347" />
       <source>The eric Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1370" />
+      <location filename="../QScintilla/ShellWindow.py" line="1374" />
       <source>&amp;File</source>
       <translation type="unfinished">文件(&amp;F)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1381" />
+      <location filename="../QScintilla/ShellWindow.py" line="1385" />
       <source>&amp;Edit</source>
       <translation type="unfinished">编辑(&amp;E)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1392" />
+      <location filename="../QScintilla/ShellWindow.py" line="1396" />
       <source>&amp;View</source>
       <translation type="unfinished">视图(&amp;V)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1399" />
+      <location filename="../QScintilla/ShellWindow.py" line="1403" />
       <source>Histor&amp;y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1406" />
+      <location filename="../QScintilla/ShellWindow.py" line="1410" />
       <source>&amp;Start</source>
       <translation type="unfinished">开始(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1412" />
+      <location filename="../QScintilla/ShellWindow.py" line="1416" />
       <source>&amp;Help</source>
       <translation type="unfinished">帮助(&amp;H)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1445" />
+      <location filename="../QScintilla/ShellWindow.py" line="1449" />
       <source>File</source>
       <translation type="unfinished">文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1455" />
+      <location filename="../QScintilla/ShellWindow.py" line="1459" />
       <source>Edit</source>
       <translation type="unfinished">编辑</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1461" />
+      <location filename="../QScintilla/ShellWindow.py" line="1465" />
       <source>Find</source>
       <translation type="unfinished">查找</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1466" />
+      <location filename="../QScintilla/ShellWindow.py" line="1470" />
       <source>View</source>
       <translation type="unfinished">视图</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1472" />
+      <location filename="../QScintilla/ShellWindow.py" line="1476" />
       <source>History</source>
       <translation type="unfinished">历史</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1477" />
+      <location filename="../QScintilla/ShellWindow.py" line="1481" />
       <source>Help</source>
       <translation type="unfinished">帮助</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="1499" />
+      <location filename="../QScintilla/ShellWindow.py" line="1503" />
       <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -73497,24 +73605,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="363" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="345" />
-      <location filename="../Preferences/ShortcutsDialog.py" line="324" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
       <source>Edit shortcuts</source>
       <translation>编辑快捷键</translation>
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="325" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="326" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="346" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="347" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ShortcutsDialog.py" line="364" />
+      <location filename="../Preferences/ShortcutsDialog.py" line="365" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -76677,329 +76785,329 @@
       <translation>无法从仓库中校验项目。&lt;br /&gt;恢复原始内容。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="310" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="327" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="312" />
       <source>Importing project into Subversion repository</source>
       <translation>将项目导入到 Subversion 仓库中</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="328" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="330" />
       <source>Imported revision {0}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="362" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="364" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="367" />
       <source>Subversion Checkout</source>
       <translation>Subversion 检出</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="420" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="433" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="422" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="365" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="368" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation>标签必须是标准标签或分支标签。请从列表中选择。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="389" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="388" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="391" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="390" />
       <source>Checking project out of Subversion repository</source>
       <translation>正在从 Subversion 仓库中检出项目</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="419" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="432" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="421" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="434" />
       <source>Subversion Export</source>
       <translation>Subversion 导出</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="443" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="445" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="456" />
       <source>Exporting project from Subversion repository</source>
       <translation>正在从 Subversion 仓库中导出项目</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="514" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="535" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="516" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="537" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="515" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="517" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="538" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="578" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="580" />
       <source>Commiting changes to Subversion repository</source>
       <translation>正在将改变提交到 Subversion 仓库中</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="614" />
       <source>Committed revision {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="638" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="684" />
       <source>Synchronizing with the Subversion repository</source>
       <translation>正在与 Subversion 仓库同步</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="735" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="793" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation>将文件或文件夹添加到 Subversion 仓库</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="898" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="900" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation>将目录树添加到 Subversion 仓库</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="859" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="937" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="939" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation>从Subversion 仓库移除文件或文件夹</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="918" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="920" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="998" />
       <source>Moving {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1177" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1148" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1027" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="998" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1292" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1124" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1094" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1179" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1029" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1294" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1265" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1126" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1096" />
       <source>Subversion Error</source>
       <translation>Subversion 错误</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1095" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1001" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1097" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation>项目仓库的 URL 无法从工作拷贝中获取。标签操作将被终止</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1028" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1125" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1030" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1127" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation>项目仓库的 URL 包含无效格式。标签操作将被终止</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1062" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1161" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1147" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1149" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1324" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1172" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1326" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1174" />
       <source>Revision {0}.
 </source>
       <translation type="unfinished">版本 {0}。
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1106" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1095" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1197" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1108" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1097" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
       <source>Revert changes</source>
       <translation type="unfinished">还原改变</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1096" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1198" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1200" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1107" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1109" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1211" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1113" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1115" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1219" />
       <source>Reverting changes</source>
       <translation>还原改变</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1149" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1264" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1151" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1266" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation>项目仓库的 URL 无法从工作拷贝中检索。转换操作将被终止</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1178" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1293" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1180" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1295" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation>项目仓库的 URL 包含无效格式。转换操作将被终止</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1207" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1209" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1318" />
       <source>Switching to {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1416" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1275" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1418" />
       <source>Merging {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1543" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1723" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1544" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1725" />
       <source>Cleaning up {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1573" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1763" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1765" />
       <source>Subversion command</source>
       <translation>Subversion 命令</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1744" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1883" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1747" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1887" />
       <source>Resolving conficts</source>
       <translation>解析冲突</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1924" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1928" />
       <source>Copying {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1844" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1823" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2000" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1847" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1826" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1987" />
       <source>Subversion Set Property</source>
       <translation>Subversion 设置属性</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1870" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1824" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2045" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1873" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1988" />
       <source>You have to supply a property name. Aborting.</source>
       <translation>您必须提供一个属性名。终止。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2023" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2027" />
       <source>Property set.</source>
       <translation>属性设置。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1887" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1869" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1858" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2061" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2044" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1890" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1872" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1861" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2048" />
       <source>Subversion Delete Property</source>
       <translation>Subversion 删除属性</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2079" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2083" />
       <source>Property deleted.</source>
       <translation>属性已删除。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2114" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2102" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2093" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2294" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2105" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2096" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2310" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2298" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2289" />
       <source>Subversion Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2115" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2307" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2118" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2311" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&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="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2348" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2352" />
       <source>Subversion Lock</source>
       <translation>Subversion 锁定</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2349" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2353" />
       <source>Enter lock comment</source>
       <translation>输入锁定注释</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2165" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2366" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2168" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2370" />
       <source>Locking in the Subversion repository</source>
       <translation>在 Subversion 仓库中锁定</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2192" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2195" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2411" />
       <source>Unlocking in the Subversion repository</source>
       <translation>在 Subversion 仓库中解锁</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2217" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2458" />
       <source>Relocating</source>
       <translation>重新定位</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2235" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2479" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2238" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2483" />
       <source>Repository Browser</source>
       <translation>仓库浏览器</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2236" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2480" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2239" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2484" />
       <source>Enter the repository URL.</source>
       <translation>输入仓库 URL。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2306" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2269" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2505" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2309" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2272" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2509" />
       <source>Remove from changelist</source>
       <translation>从更改列表中移除</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2285" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2544" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2533" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2548" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2537" />
       <source>Add to changelist</source>
       <translation>添加更改列表</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2534" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2289" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2538" />
       <source>Enter name of the changelist:</source>
       <translation>输入更改列表名称:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2373" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2598" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2602" />
       <source>Upgrade</source>
       <translation type="unfinished" />
     </message>
@@ -77180,7 +77288,7 @@
       <translation>svn 进程已结束,返回值为 {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2052" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="181" />
       <source>The svn process did not finish within 30s.</source>
       <translation>svn 进程在 30 秒内未结束。</translation>
@@ -77191,12 +77299,12 @@
       <translation>无法启动 svn 可执行程序。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1862" />
       <source>Enter property name</source>
       <translation>输入属性名</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2051" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2054" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
@@ -77828,27 +77936,27 @@
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="208" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="284" />
       <source>There is no difference.</source>
       <translation>没有差异。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="223" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="342" />
       <source>&lt;Start&gt;</source>
       <translation>&lt;开始&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="224" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="225" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="343" />
       <source>&lt;End&gt;</source>
       <translation>&lt;结束&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="410" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="444" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="426" />
@@ -77856,19 +77964,19 @@
       <translation>保存差异</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="378" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="428" />
       <source>Patch Files (*.diff)</source>
       <translation>补丁文件 (*.diff)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="396" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="445" />
       <source>&lt;p&gt;The patch 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="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="411" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="412" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="461" />
       <source>&lt;p&gt;The patch 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>
@@ -78124,7 +78232,7 @@
       <translation>选择要过滤的区域</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="566" />
@@ -78134,7 +78242,7 @@
       <translation>修订</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="674" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="563" />
@@ -80147,7 +80255,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="0" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="654" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.ui" line="0" />
@@ -80371,8 +80479,8 @@
       <translation>添加更改列表</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1057" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="129" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="915" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="894" />
@@ -80381,7 +80489,7 @@
       <translation>从更改列表中移除</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="134" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="818" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="134" />
@@ -80389,7 +80497,7 @@
       <translation>闭锁</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="136" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="837" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="136" />
@@ -80473,7 +80581,7 @@
       <translation>是</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="491" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="562" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="491" />
@@ -80481,34 +80589,34 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="798" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="655" />
       <source>There are no entries selected to be committed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="838" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
-      <source>Add</source>
-      <translation>添加</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="696" />
+      <source>Add</source>
+      <translation>添加</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="840" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="697" />
       <source>There are no unversioned entries available/selected.</source>
       <translation>没有未版本化的条目可用或被选择。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="888" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="862" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="720" />
       <source>Revert</source>
       <translation>还原</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="863" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="934" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="912" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="864" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="791" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="769" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="721" />
@@ -80516,41 +80624,41 @@
       <translation>没有未提交的更改可用或被选择。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="747" />
       <source>There are no missing entries available/selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="910" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="911" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="768" />
       <source>Differences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="939" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="932" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="797" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="790" />
-      <source>Side-by-Side Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="933" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="790" />
+      <source>Side-by-Side Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="941" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="798" />
       <source>Only one file with uncommitted changes must be selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="961" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="819" />
       <source>There are no unlocked files available/selected.</source>
       <translation>没有未解锁的文件可用或被选择。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="980" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1019" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1000" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="981" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="876" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="857" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="838" />
@@ -80558,25 +80666,25 @@
       <translation>没有闭锁的文件可用或被选择。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="998" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="999" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="856" />
       <source>Break Lock</source>
       <translation>Break Lock</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1017" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1018" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="875" />
       <source>Steal Lock</source>
       <translation>Steal Lock</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1037" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1038" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="895" />
       <source>There are no files available/selected not belonging to a changelist.</source>
       <translation>没有不属于更改列表的文件可用或被选择。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1058" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="1059" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="916" />
       <source>There are no files available/selected belonging to a changelist.</source>
       <translation>没有属于更改列表的文件可用或被选择。</translation>
@@ -80704,7 +80812,7 @@
   <context>
     <name>SvnStatusMonitorThread</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="141" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="143" />
       <source>Subversion status checked successfully (using pysvn)</source>
       <translation>Subversion 状态检查成功(使用 pysvn)</translation>
     </message>
@@ -82310,7 +82418,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="187" />
+      <location filename="../WebBrowser/Sync/SyncCheckPage.py" line="188" />
       <source>&lt;font color="#FF0000"&gt;&lt;b&gt;Error:&lt;/b&gt; {0}&lt;/font&gt;</source>
       <translation type="unfinished">&lt;font color="#FF0000"&gt;&lt;b&gt;错误:&lt;/b&gt;{0}&lt;/font&gt;</translation>
     </message>
@@ -83345,7 +83453,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="565" />
+      <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="563" />
       <source>Show Tab Manager</source>
       <translation type="unfinished" />
     </message>
@@ -83911,47 +84019,47 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="743" />
+      <location filename="../Tasks/TaskViewer.py" line="744" />
       <source>Activate task filter</source>
       <translation>激活任务过滤器</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="744" />
+      <location filename="../Tasks/TaskViewer.py" line="745" />
       <source>The task filter doesn't have any active filters. Do you want to configure the filter settings?</source>
       <translation>任务过滤器不包含任务激活过滤器。要配置过滤器设置吗?</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="778" />
-      <source>Scan Filter Patterns</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="779" />
+      <source>Scan Filter Patterns</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="780" />
       <source>Enter filename patterns of files to be excluded separated by a comma:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="821" />
-      <source>Extracting project tasks...</source>
-      <translation>提取项目任务…</translation>
-    </message>
-    <message>
       <location filename="../Tasks/TaskViewer.py" line="822" />
+      <source>Extracting project tasks...</source>
+      <translation>提取项目任务…</translation>
+    </message>
+    <message>
+      <location filename="../Tasks/TaskViewer.py" line="823" />
       <source>Abort</source>
       <translation>终止</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="825" />
+      <location filename="../Tasks/TaskViewer.py" line="826" />
       <source>%v/%m Files</source>
       <translation type="unfinished">%v/%m 文件</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="829" />
+      <location filename="../Tasks/TaskViewer.py" line="830" />
       <source>Tasks</source>
       <translation type="unfinished">任务</translation>
     </message>
     <message>
-      <location filename="../Tasks/TaskViewer.py" line="836" />
+      <location filename="../Tasks/TaskViewer.py" line="837" />
       <source>Extracting project tasks...
 {0}</source>
       <translation type="unfinished" />
@@ -84093,7 +84201,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="316" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="318" />
       <location filename="../MicroPython/Devices/TeensyDevices.py" line="154" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -84134,17 +84242,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="317" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="319" />
       <source>&lt;p&gt;Teensy 4.0 and Teensy 4.1 are flashed using the 'Teensy Loader' application. Make sure you downloaded the MicroPython or CircuitPython .hex file.&lt;/p&gt;&lt;p&gt;See &lt;a href="{0}"&gt;the PJRC Teensy web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="339" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="341" />
       <source>Start 'Teensy Loader'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/TeensyDevices.py" line="340" />
+      <location filename="../MicroPython/Devices/TeensyDevices.py" line="342" />
       <source>&lt;p&gt;The 'Teensy Loader' application &lt;b&gt;teensy&lt;/b&gt; could not be started. Ensure it is in the application search path or start it manually.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -84373,78 +84481,78 @@
       <translation>配置…</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="531" />
+      <location filename="../Templates/TemplateViewer.py" line="533" />
       <source>Remove Template</source>
       <translation>移除模板</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="532" />
+      <location filename="../Templates/TemplateViewer.py" line="534" />
       <source>&lt;p&gt;Do you really want to remove &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="560" />
-      <source>Import Templates</source>
-      <translation>导入模板</translation>
-    </message>
-    <message>
       <location filename="../Templates/TemplateViewer.py" line="562" />
+      <source>Import Templates</source>
+      <translation>导入模板</translation>
+    </message>
+    <message>
+      <location filename="../Templates/TemplateViewer.py" line="564" />
       <source>Templates Files (*.ecj);;XML Templates Files (*.e4c);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="595" />
-      <location filename="../Templates/TemplateViewer.py" line="579" />
+      <location filename="../Templates/TemplateViewer.py" line="597" />
+      <location filename="../Templates/TemplateViewer.py" line="581" />
       <source>Export Templates</source>
       <translation>导出模板</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="581" />
+      <location filename="../Templates/TemplateViewer.py" line="583" />
       <source>Templates Files (*.ecj);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="596" />
+      <location filename="../Templates/TemplateViewer.py" line="598" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="614" />
+      <location filename="../Templates/TemplateViewer.py" line="616" />
       <source>Reload Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="615" />
+      <location filename="../Templates/TemplateViewer.py" line="617" />
       <source>The templates contain unsaved changes. Shall these changes be discarded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="635" />
+      <location filename="../Templates/TemplateViewer.py" line="637" />
       <source>Template Help</source>
       <translation>模板帮助</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="636" />
+      <location filename="../Templates/TemplateViewer.py" line="638" />
       <source>&lt;p&gt;&lt;b&gt;Template groups&lt;/b&gt; are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Template entries&lt;/b&gt; are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="883" />
+      <location filename="../Templates/TemplateViewer.py" line="885" />
       <source>Edit Template Group</source>
       <translation>编辑模板组</translation>
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="884" />
+      <location filename="../Templates/TemplateViewer.py" line="886" />
       <source>&lt;p&gt;A template group with the name &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1005" />
+      <location filename="../Templates/TemplateViewer.py" line="1007" />
       <source>Read Templates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Templates/TemplateViewer.py" line="1006" />
+      <location filename="../Templates/TemplateViewer.py" line="1008" />
       <source>&lt;p&gt;The templates file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -87301,99 +87409,99 @@
   <context>
     <name>UMLGraphicsView</name>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="90" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="94" />
       <source>Delete shapes</source>
       <translation>删除形状</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="96" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="100" />
       <source>Increase width by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="103" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="107" />
       <source>Increase height by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="110" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="114" />
       <source>Decrease width by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="117" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="121" />
       <source>Decrease height by {0} points</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="123" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="127" />
       <source>Set size</source>
       <translation>设置尺寸</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="128" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="132" />
       <source>Re-Scan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="133" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="137" />
       <source>Re-Layout</source>
       <translation>重新布局</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="138" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="142" />
       <source>Align Left</source>
       <translation>左对齐</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="145" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="149" />
       <source>Align Center Horizontal</source>
       <translation>水平居中对齐</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="152" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="156" />
       <source>Align Right</source>
       <translation>右对齐</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="158" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="162" />
       <source>Align Top</source>
       <translation>顶部对齐</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="165" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="169" />
       <source>Align Center Vertical</source>
       <translation>垂直居中对齐</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="172" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="176" />
       <source>Align Bottom</source>
       <translation>底部对齐</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="235" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="240" />
       <source>Graphics</source>
       <translation>图形</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="395" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="382" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="365" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="400" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="387" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="370" />
       <source>Save Diagram</source>
       <translation>保存图表</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="367" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="372" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation>便携式网络图形 (*.png);;可缩放的向量图形 (*.svg)</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="383" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="388" />
       <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="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="401" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法保存。&lt;/p&gt;</translation>
     </message>
@@ -88119,7 +88227,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7688" />
+      <location filename="../UI/UserInterface.py" line="7687" />
       <location filename="../UI/UserInterface.py" line="1934" />
       <location filename="../UI/UserInterface.py" line="1927" />
       <source>Load session</source>
@@ -89406,8 +89514,8 @@
       <translation>&lt;b&gt;键盘快捷键&lt;/b&gt;&lt;p&gt;将程序的键盘快捷键设置成你喜欢的按键。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7373" />
-      <location filename="../UI/UserInterface.py" line="7354" />
+      <location filename="../UI/UserInterface.py" line="7372" />
+      <location filename="../UI/UserInterface.py" line="7353" />
       <location filename="../UI/UserInterface.py" line="3358" />
       <source>Export Keyboard Shortcuts</source>
       <translation>导出键盘快捷键</translation>
@@ -89428,7 +89536,7 @@
       <translation>&lt;b&gt;导出键盘快捷键&lt;/b&gt;&lt;p&gt;导出程序的键盘快捷键。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7392" />
+      <location filename="../UI/UserInterface.py" line="7391" />
       <location filename="../UI/UserInterface.py" line="3377" />
       <source>Import Keyboard Shortcuts</source>
       <translation>导入键盘快捷键</translation>
@@ -90144,186 +90252,186 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6609" />
+      <location filename="../UI/UserInterface.py" line="6610" />
       <source>Process '{0}' has exited.
 </source>
       <translation>进程“{0}”已退出。
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6896" />
-      <location filename="../UI/UserInterface.py" line="6834" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6716" />
-      <location filename="../UI/UserInterface.py" line="6652" />
-      <source>Documentation Missing</source>
-      <translation>文档缺失</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6897" />
       <location filename="../UI/UserInterface.py" line="6835" />
       <location filename="../UI/UserInterface.py" line="6791" />
       <location filename="../UI/UserInterface.py" line="6717" />
       <location filename="../UI/UserInterface.py" line="6653" />
+      <source>Documentation Missing</source>
+      <translation>文档缺失</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6898" />
+      <location filename="../UI/UserInterface.py" line="6836" />
+      <location filename="../UI/UserInterface.py" line="6792" />
+      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6654" />
       <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="6878" />
-      <location filename="../UI/UserInterface.py" line="6760" />
-      <source>Documentation</source>
-      <translation>文档</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6761" />
-      <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="6879" />
+      <location filename="../UI/UserInterface.py" line="6761" />
+      <source>Documentation</source>
+      <translation>文档</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6762" />
+      <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="6880" />
       <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="7056" />
+      <location filename="../UI/UserInterface.py" line="6993" />
+      <source>Start Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6994" />
+      <source>The eric web browser could not be started.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7057" />
-      <location filename="../UI/UserInterface.py" line="6994" />
-      <source>Start Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6995" />
-      <source>The eric web browser could not be started.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7058" />
       <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="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Open Browser</source>
       <translation>打开浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7100" />
+      <location filename="../UI/UserInterface.py" line="7099" />
       <source>Could not start a web browser</source>
       <translation>无法启动网络浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7356" />
+      <location filename="../UI/UserInterface.py" line="7355" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7374" />
+      <location filename="../UI/UserInterface.py" line="7373" />
       <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="7394" />
+      <location filename="../UI/UserInterface.py" line="7393" />
       <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7576" />
+      <source>Read Tasks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7577" />
-      <source>Read Tasks</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7578" />
       <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;任务文件 &lt;b&gt;{0}&lt;/b&gt; 无法读取。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7621" />
+      <location filename="../UI/UserInterface.py" line="7620" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7649" />
-      <location filename="../UI/UserInterface.py" line="7622" />
-      <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="7648" />
+      <location filename="../UI/UserInterface.py" line="7621" />
+      <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="7647" />
       <source>Read session</source>
       <translation>读取会话</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7665" />
+      <location filename="../UI/UserInterface.py" line="7664" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7667" />
+      <location filename="../UI/UserInterface.py" line="7666" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7690" />
+      <location filename="../UI/UserInterface.py" line="7689" />
       <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7735" />
+      <source>Crash Session found!</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="7736" />
-      <source>Crash Session found!</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7737" />
       <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="8106" />
+      <source>Drop Error</source>
+      <translation>降落误差</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8107" />
-      <source>Drop Error</source>
-      <translation>降落误差</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8108" />
       <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="8288" />
+      <source>Upgrade available</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8289" />
-      <source>Upgrade available</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8290" />
       <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="8346" />
+      <location filename="../UI/UserInterface.py" line="8333" />
+      <source>First time usage</source>
+      <translation>第一次使用</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="8334" />
+      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8347" />
-      <location filename="../UI/UserInterface.py" line="8334" />
-      <source>First time usage</source>
-      <translation>第一次使用</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8335" />
-      <source>eric7 has not been configured yet but an eric6 configuration was found. Shall this be imported?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8348" />
       <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="8371" />
+      <location filename="../UI/UserInterface.py" line="8370" />
       <source>Select Workspace Directory</source>
       <translation>选择工作区目录</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="8530" />
+      <source>Unsaved Data Detected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="8531" />
-      <source>Unsaved Data Detected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="8532" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -90408,7 +90516,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="989" />
+      <location filename="../Utilities/__init__.py" line="991" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;可以在字符串中使用“%-代码”作为占位符。支持的代码有:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;当前编辑器的光标所在列&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;当前编辑器的文件夹&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;当前编辑器的文件名&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;当前用户的根目录&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;当前编辑器的光标所在行&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;当前项目的路径&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;当前编辑器中选择的文本&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;当前用户的用户名&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;百分比符号&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -91520,663 +91628,663 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="681" />
-      <location filename="../QScintilla/ShellWindow.py" line="302" />
+      <location filename="../QScintilla/ShellWindow.py" line="310" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation>Ctrl+S</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1032" />
-      <location filename="../QScintilla/ShellWindow.py" line="329" />
+      <location filename="../QScintilla/ShellWindow.py" line="337" />
       <source>Cut</source>
       <translation>剪切</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1034" />
-      <location filename="../QScintilla/ShellWindow.py" line="331" />
+      <location filename="../QScintilla/ShellWindow.py" line="339" />
       <source>Cu&amp;t</source>
       <translation>剪切(&amp;t)</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1036" />
-      <location filename="../QScintilla/ShellWindow.py" line="333" />
+      <location filename="../QScintilla/ShellWindow.py" line="341" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation>Ctrl+X</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1039" />
-      <location filename="../QScintilla/ShellWindow.py" line="336" />
+      <location filename="../QScintilla/ShellWindow.py" line="344" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation>Shift+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1045" />
-      <location filename="../QScintilla/ShellWindow.py" line="342" />
+      <location filename="../QScintilla/ShellWindow.py" line="350" />
       <source>Cut the selection</source>
       <translation>剪切所选内容</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1059" />
-      <location filename="../QScintilla/ShellWindow.py" line="351" />
+      <location filename="../QScintilla/ShellWindow.py" line="359" />
       <source>Copy</source>
       <translation>复制</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1061" />
-      <location filename="../QScintilla/ShellWindow.py" line="353" />
+      <location filename="../QScintilla/ShellWindow.py" line="361" />
       <source>&amp;Copy</source>
       <translation>复制(&amp;C)</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1063" />
-      <location filename="../QScintilla/ShellWindow.py" line="355" />
+      <location filename="../QScintilla/ShellWindow.py" line="363" />
       <source>Ctrl+C</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+C</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1066" />
-      <location filename="../QScintilla/ShellWindow.py" line="358" />
+      <location filename="../QScintilla/ShellWindow.py" line="366" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1072" />
-      <location filename="../QScintilla/ShellWindow.py" line="364" />
+      <location filename="../QScintilla/ShellWindow.py" line="372" />
       <source>Copy the selection</source>
       <translation>复制所选内容</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1086" />
-      <location filename="../QScintilla/ShellWindow.py" line="373" />
+      <location filename="../QScintilla/ShellWindow.py" line="381" />
       <source>Paste</source>
       <translation>粘贴</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1088" />
-      <location filename="../QScintilla/ShellWindow.py" line="375" />
+      <location filename="../QScintilla/ShellWindow.py" line="383" />
       <source>&amp;Paste</source>
       <translation>粘贴(&amp;P)</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1090" />
-      <location filename="../QScintilla/ShellWindow.py" line="377" />
+      <location filename="../QScintilla/ShellWindow.py" line="385" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation>Ctrl+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1093" />
-      <location filename="../QScintilla/ShellWindow.py" line="380" />
+      <location filename="../QScintilla/ShellWindow.py" line="388" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation>Shift+Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1099" />
-      <location filename="../QScintilla/ShellWindow.py" line="386" />
+      <location filename="../QScintilla/ShellWindow.py" line="394" />
       <source>Paste the last cut/copied text</source>
       <translation>粘贴最近剪切或复制的文本</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1115" />
       <location filename="../ViewManager/ViewManager.py" line="1113" />
-      <location filename="../QScintilla/ShellWindow.py" line="400" />
-      <location filename="../QScintilla/ShellWindow.py" line="398" />
+      <location filename="../QScintilla/ShellWindow.py" line="408" />
+      <location filename="../QScintilla/ShellWindow.py" line="406" />
       <source>Clear</source>
       <translation>清除</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1117" />
-      <location filename="../QScintilla/ShellWindow.py" line="402" />
+      <location filename="../QScintilla/ShellWindow.py" line="410" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation>Alt+Shift+C</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1124" />
-      <location filename="../QScintilla/ShellWindow.py" line="409" />
+      <location filename="../QScintilla/ShellWindow.py" line="417" />
       <source>Clear all text</source>
       <translation>清除所有文本</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
-      <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/ShellWindow.py" line="435" />
-      <location filename="../QScintilla/ShellWindow.py" line="434" />
+      <location filename="../QScintilla/MiniEditor.py" line="1681" />
+      <location filename="../QScintilla/MiniEditor.py" line="1680" />
+      <location filename="../QScintilla/ShellWindow.py" line="439" />
+      <location filename="../QScintilla/ShellWindow.py" line="438" />
       <source>Delete current line</source>
       <translation>删除当前行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1686" />
-      <location filename="../QScintilla/ShellWindow.py" line="436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1682" />
+      <location filename="../QScintilla/ShellWindow.py" line="440" />
       <source>Ctrl+Shift+L</source>
       <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
-      <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/ShellWindow.py" line="447" />
-      <location filename="../QScintilla/ShellWindow.py" line="446" />
+      <location filename="../QScintilla/MiniEditor.py" line="1203" />
+      <location filename="../QScintilla/MiniEditor.py" line="1202" />
+      <location filename="../QScintilla/ShellWindow.py" line="451" />
+      <location filename="../QScintilla/ShellWindow.py" line="450" />
       <source>Indent one level</source>
       <translation>缩进一级</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1208" />
-      <location filename="../QScintilla/ShellWindow.py" line="448" />
+      <location filename="../QScintilla/MiniEditor.py" line="1204" />
+      <location filename="../QScintilla/ShellWindow.py" line="452" />
       <source>Tab</source>
       <translation>Tab 键</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
-      <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/ShellWindow.py" line="459" />
-      <location filename="../QScintilla/ShellWindow.py" line="458" />
+      <location filename="../QScintilla/MiniEditor.py" line="1669" />
+      <location filename="../QScintilla/MiniEditor.py" line="1668" />
+      <location filename="../QScintilla/ShellWindow.py" line="463" />
+      <location filename="../QScintilla/ShellWindow.py" line="462" />
       <source>Insert new line</source>
       <translation>插入新行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
-      <location filename="../QScintilla/ShellWindow.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1670" />
+      <location filename="../QScintilla/ShellWindow.py" line="464" />
       <source>Return</source>
       <translation>Return</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1675" />
-      <location filename="../QScintilla/ShellWindow.py" line="461" />
+      <location filename="../QScintilla/MiniEditor.py" line="1671" />
+      <location filename="../QScintilla/ShellWindow.py" line="465" />
       <source>Enter</source>
       <translation>Enter</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
-      <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/ShellWindow.py" line="471" />
-      <location filename="../QScintilla/ShellWindow.py" line="470" />
+      <location filename="../QScintilla/MiniEditor.py" line="1555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1554" />
+      <location filename="../QScintilla/ShellWindow.py" line="475" />
+      <location filename="../QScintilla/ShellWindow.py" line="474" />
       <source>Delete previous character</source>
       <translation>删除前一个字符</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1560" />
-      <location filename="../QScintilla/ShellWindow.py" line="472" />
+      <location filename="../QScintilla/MiniEditor.py" line="1556" />
+      <location filename="../QScintilla/ShellWindow.py" line="476" />
       <source>Backspace</source>
       <translation>Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1567" />
-      <location filename="../QScintilla/ShellWindow.py" line="479" />
+      <location filename="../QScintilla/MiniEditor.py" line="1563" />
+      <location filename="../QScintilla/ShellWindow.py" line="483" />
       <source>Meta+H</source>
       <translation>Meta+H</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1572" />
-      <location filename="../QScintilla/ShellWindow.py" line="484" />
+      <location filename="../QScintilla/MiniEditor.py" line="1568" />
+      <location filename="../QScintilla/ShellWindow.py" line="488" />
       <source>Shift+Backspace</source>
       <translation>Shift+Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
-      <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/ShellWindow.py" line="493" />
-      <location filename="../QScintilla/ShellWindow.py" line="492" />
+      <location filename="../QScintilla/MiniEditor.py" line="1593" />
+      <location filename="../QScintilla/MiniEditor.py" line="1592" />
+      <location filename="../QScintilla/ShellWindow.py" line="497" />
+      <location filename="../QScintilla/ShellWindow.py" line="496" />
       <source>Delete current character</source>
       <translation>删除当前字符</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1598" />
-      <location filename="../QScintilla/ShellWindow.py" line="494" />
+      <location filename="../QScintilla/MiniEditor.py" line="1594" />
+      <location filename="../QScintilla/ShellWindow.py" line="498" />
       <source>Del</source>
       <translation>Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1605" />
-      <location filename="../QScintilla/ShellWindow.py" line="501" />
+      <location filename="../QScintilla/MiniEditor.py" line="1601" />
+      <location filename="../QScintilla/ShellWindow.py" line="505" />
       <source>Meta+D</source>
       <translation>Meta+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
-      <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/ShellWindow.py" line="509" />
-      <location filename="../QScintilla/ShellWindow.py" line="508" />
+      <location filename="../QScintilla/MiniEditor.py" line="1609" />
+      <location filename="../QScintilla/MiniEditor.py" line="1608" />
+      <location filename="../QScintilla/ShellWindow.py" line="513" />
+      <location filename="../QScintilla/ShellWindow.py" line="512" />
       <source>Delete word to left</source>
       <translation>向左删除一个单词</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1614" />
-      <location filename="../QScintilla/ShellWindow.py" line="510" />
+      <location filename="../QScintilla/MiniEditor.py" line="1610" />
+      <location filename="../QScintilla/ShellWindow.py" line="514" />
       <source>Ctrl+Backspace</source>
       <translation>Ctrl+Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
-      <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/ShellWindow.py" line="521" />
-      <location filename="../QScintilla/ShellWindow.py" line="520" />
+      <location filename="../QScintilla/MiniEditor.py" line="1621" />
+      <location filename="../QScintilla/MiniEditor.py" line="1620" />
+      <location filename="../QScintilla/ShellWindow.py" line="525" />
+      <location filename="../QScintilla/ShellWindow.py" line="524" />
       <source>Delete word to right</source>
       <translation>向右删除一个单词</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1626" />
-      <location filename="../QScintilla/ShellWindow.py" line="522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1622" />
+      <location filename="../QScintilla/ShellWindow.py" line="526" />
       <source>Ctrl+Del</source>
       <translation>Ctrl+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
-      <location filename="../QScintilla/MiniEditor.py" line="1637" />
-      <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/ShellWindow.py" line="533" />
-      <location filename="../QScintilla/ShellWindow.py" line="532" />
+      <location filename="../QScintilla/MiniEditor.py" line="1633" />
+      <location filename="../QScintilla/MiniEditor.py" line="1632" />
+      <location filename="../QScintilla/ShellWindow.py" line="537" />
+      <location filename="../QScintilla/ShellWindow.py" line="536" />
       <source>Delete line to left</source>
       <translation>向左删除一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1639" />
-      <location filename="../QScintilla/ShellWindow.py" line="535" />
+      <location filename="../QScintilla/MiniEditor.py" line="1635" />
+      <location filename="../QScintilla/ShellWindow.py" line="539" />
       <source>Ctrl+Shift+Backspace</source>
       <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
-      <location filename="../QScintilla/MiniEditor.py" line="1651" />
-      <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/ShellWindow.py" line="547" />
-      <location filename="../QScintilla/ShellWindow.py" line="546" />
+      <location filename="../QScintilla/MiniEditor.py" line="1647" />
+      <location filename="../QScintilla/MiniEditor.py" line="1646" />
+      <location filename="../QScintilla/ShellWindow.py" line="551" />
+      <location filename="../QScintilla/ShellWindow.py" line="550" />
       <source>Delete line to right</source>
       <translation>向右删除一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1659" />
-      <location filename="../QScintilla/ShellWindow.py" line="555" />
+      <location filename="../QScintilla/MiniEditor.py" line="1655" />
+      <location filename="../QScintilla/ShellWindow.py" line="559" />
       <source>Meta+K</source>
       <translation>Meta+K</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1664" />
-      <location filename="../QScintilla/ShellWindow.py" line="560" />
+      <location filename="../QScintilla/MiniEditor.py" line="1660" />
+      <location filename="../QScintilla/ShellWindow.py" line="564" />
       <source>Ctrl+Shift+Del</source>
       <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
-      <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/ShellWindow.py" line="569" />
-      <location filename="../QScintilla/ShellWindow.py" line="568" />
+      <location filename="../QScintilla/MiniEditor.py" line="891" />
+      <location filename="../QScintilla/MiniEditor.py" line="890" />
+      <location filename="../QScintilla/ShellWindow.py" line="573" />
+      <location filename="../QScintilla/ShellWindow.py" line="572" />
       <source>Move left one character</source>
       <translation>左移一个字符</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="896" />
-      <location filename="../QScintilla/ShellWindow.py" line="570" />
+      <location filename="../QScintilla/MiniEditor.py" line="892" />
+      <location filename="../QScintilla/ShellWindow.py" line="574" />
       <source>Left</source>
       <translation>Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="904" />
-      <location filename="../QScintilla/ShellWindow.py" line="578" />
+      <location filename="../QScintilla/MiniEditor.py" line="900" />
+      <location filename="../QScintilla/ShellWindow.py" line="582" />
       <source>Meta+B</source>
       <translation>Meta+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
-      <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/ShellWindow.py" line="585" />
-      <location filename="../QScintilla/ShellWindow.py" line="584" />
+      <location filename="../QScintilla/MiniEditor.py" line="907" />
+      <location filename="../QScintilla/MiniEditor.py" line="906" />
+      <location filename="../QScintilla/ShellWindow.py" line="589" />
+      <location filename="../QScintilla/ShellWindow.py" line="588" />
       <source>Move right one character</source>
       <translation>右移一个字符</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="912" />
-      <location filename="../QScintilla/ShellWindow.py" line="586" />
+      <location filename="../QScintilla/MiniEditor.py" line="908" />
+      <location filename="../QScintilla/ShellWindow.py" line="590" />
       <source>Right</source>
       <translation>Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="919" />
-      <location filename="../QScintilla/ShellWindow.py" line="593" />
+      <location filename="../QScintilla/MiniEditor.py" line="915" />
+      <location filename="../QScintilla/ShellWindow.py" line="597" />
       <source>Meta+F</source>
       <translation>Meta+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="991" />
-      <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/ShellWindow.py" line="601" />
-      <location filename="../QScintilla/ShellWindow.py" line="600" />
+      <location filename="../QScintilla/MiniEditor.py" line="987" />
+      <location filename="../QScintilla/MiniEditor.py" line="986" />
+      <location filename="../QScintilla/ShellWindow.py" line="605" />
+      <location filename="../QScintilla/ShellWindow.py" line="604" />
       <source>Move left one word</source>
       <translation>左移一个词距</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="999" />
-      <location filename="../QScintilla/MiniEditor.py" line="967" />
-      <location filename="../QScintilla/ShellWindow.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="995" />
+      <location filename="../QScintilla/MiniEditor.py" line="963" />
+      <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Alt+Left</source>
       <translation>Alt+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1059" />
-      <location filename="../QScintilla/MiniEditor.py" line="1003" />
-      <location filename="../QScintilla/ShellWindow.py" line="613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1055" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/ShellWindow.py" line="617" />
       <source>Ctrl+Left</source>
       <translation>Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
-      <location filename="../QScintilla/MiniEditor.py" line="1011" />
-      <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/ShellWindow.py" line="621" />
-      <location filename="../QScintilla/ShellWindow.py" line="620" />
+      <location filename="../QScintilla/MiniEditor.py" line="1007" />
+      <location filename="../QScintilla/MiniEditor.py" line="1006" />
+      <location filename="../QScintilla/ShellWindow.py" line="625" />
+      <location filename="../QScintilla/ShellWindow.py" line="624" />
       <source>Move right one word</source>
       <translation>右移一个词距</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1813" />
-      <location filename="../QScintilla/MiniEditor.py" line="1023" />
-      <location filename="../QScintilla/ShellWindow.py" line="629" />
+      <location filename="../QScintilla/MiniEditor.py" line="1809" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/ShellWindow.py" line="633" />
       <source>Ctrl+Right</source>
       <translation>Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1033" />
-      <location filename="../QScintilla/MiniEditor.py" line="1030" />
-      <location filename="../QScintilla/ShellWindow.py" line="639" />
-      <location filename="../QScintilla/ShellWindow.py" line="636" />
+      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1026" />
+      <location filename="../QScintilla/ShellWindow.py" line="643" />
+      <location filename="../QScintilla/ShellWindow.py" line="640" />
       <source>Move to first visible character in document line</source>
       <translation>移动至文档行的第一个可见字符</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2074" />
-      <location filename="../QScintilla/MiniEditor.py" line="1043" />
-      <location filename="../QScintilla/ShellWindow.py" line="649" />
+      <location filename="../QScintilla/MiniEditor.py" line="2070" />
+      <location filename="../QScintilla/MiniEditor.py" line="1039" />
+      <location filename="../QScintilla/ShellWindow.py" line="653" />
       <source>Home</source>
       <translation>Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
-      <location filename="../QScintilla/MiniEditor.py" line="1071" />
-      <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/ShellWindow.py" line="657" />
-      <location filename="../QScintilla/ShellWindow.py" line="656" />
+      <location filename="../QScintilla/MiniEditor.py" line="1067" />
+      <location filename="../QScintilla/MiniEditor.py" line="1066" />
+      <location filename="../QScintilla/ShellWindow.py" line="661" />
+      <location filename="../QScintilla/ShellWindow.py" line="660" />
       <source>Move to end of document line</source>
       <translation>移动至文档行的末尾</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1079" />
-      <location filename="../QScintilla/ShellWindow.py" line="665" />
+      <location filename="../QScintilla/MiniEditor.py" line="1075" />
+      <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>Meta+E</source>
       <translation>Meta+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1083" />
-      <location filename="../QScintilla/ShellWindow.py" line="669" />
+      <location filename="../QScintilla/MiniEditor.py" line="2087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
+      <location filename="../QScintilla/ShellWindow.py" line="673" />
       <source>End</source>
       <translation>End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
-      <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/ShellWindow.py" line="677" />
-      <location filename="../QScintilla/ShellWindow.py" line="676" />
+      <location filename="../QScintilla/MiniEditor.py" line="923" />
+      <location filename="../QScintilla/MiniEditor.py" line="922" />
+      <location filename="../QScintilla/ShellWindow.py" line="681" />
+      <location filename="../QScintilla/ShellWindow.py" line="680" />
       <source>Move up one line</source>
       <translation>上移一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="928" />
-      <location filename="../QScintilla/ShellWindow.py" line="678" />
+      <location filename="../QScintilla/MiniEditor.py" line="924" />
+      <location filename="../QScintilla/ShellWindow.py" line="682" />
       <source>Up</source>
       <translation>Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="935" />
-      <location filename="../QScintilla/ShellWindow.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="689" />
       <source>Meta+P</source>
       <translation>Meta+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
-      <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/ShellWindow.py" line="693" />
-      <location filename="../QScintilla/ShellWindow.py" line="692" />
+      <location filename="../QScintilla/MiniEditor.py" line="939" />
+      <location filename="../QScintilla/MiniEditor.py" line="938" />
+      <location filename="../QScintilla/ShellWindow.py" line="697" />
+      <location filename="../QScintilla/ShellWindow.py" line="696" />
       <source>Move down one line</source>
       <translation>下移一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="944" />
-      <location filename="../QScintilla/ShellWindow.py" line="694" />
+      <location filename="../QScintilla/MiniEditor.py" line="940" />
+      <location filename="../QScintilla/ShellWindow.py" line="698" />
       <source>Down</source>
       <translation>Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="951" />
-      <location filename="../QScintilla/ShellWindow.py" line="701" />
+      <location filename="../QScintilla/MiniEditor.py" line="947" />
+      <location filename="../QScintilla/ShellWindow.py" line="705" />
       <source>Meta+N</source>
       <translation>Meta+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1195" />
-      <location filename="../QScintilla/MiniEditor.py" line="1092" />
-      <location filename="../QScintilla/ShellWindow.py" line="710" />
+      <location filename="../QScintilla/MiniEditor.py" line="1191" />
+      <location filename="../QScintilla/MiniEditor.py" line="1088" />
+      <location filename="../QScintilla/ShellWindow.py" line="714" />
       <source>Ctrl+Down</source>
       <translation>Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1175" />
-      <location filename="../QScintilla/MiniEditor.py" line="1104" />
-      <location filename="../QScintilla/ShellWindow.py" line="722" />
+      <location filename="../QScintilla/MiniEditor.py" line="1171" />
+      <location filename="../QScintilla/MiniEditor.py" line="1100" />
+      <location filename="../QScintilla/ShellWindow.py" line="726" />
       <source>Ctrl+Up</source>
       <translation>Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
-      <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/ShellWindow.py" line="733" />
-      <location filename="../QScintilla/ShellWindow.py" line="732" />
+      <location filename="../QScintilla/MiniEditor.py" line="1135" />
+      <location filename="../QScintilla/MiniEditor.py" line="1134" />
+      <location filename="../QScintilla/ShellWindow.py" line="737" />
+      <location filename="../QScintilla/ShellWindow.py" line="736" />
       <source>Move up one page</source>
       <translation>上移一页</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1140" />
-      <location filename="../QScintilla/ShellWindow.py" line="734" />
+      <location filename="../QScintilla/MiniEditor.py" line="1136" />
+      <location filename="../QScintilla/ShellWindow.py" line="738" />
       <source>PgUp</source>
       <translation>PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/ShellWindow.py" line="745" />
-      <location filename="../QScintilla/ShellWindow.py" line="744" />
+      <location filename="../QScintilla/MiniEditor.py" line="1147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1146" />
+      <location filename="../QScintilla/ShellWindow.py" line="749" />
+      <location filename="../QScintilla/ShellWindow.py" line="748" />
       <source>Move down one page</source>
       <translation>下移一页</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1152" />
-      <location filename="../QScintilla/ShellWindow.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="1148" />
+      <location filename="../QScintilla/ShellWindow.py" line="750" />
       <source>PgDown</source>
       <translation>PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1159" />
-      <location filename="../QScintilla/ShellWindow.py" line="753" />
+      <location filename="../QScintilla/MiniEditor.py" line="1155" />
+      <location filename="../QScintilla/ShellWindow.py" line="757" />
       <source>Meta+V</source>
       <translation>Meta+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
-      <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/ShellWindow.py" line="761" />
-      <location filename="../QScintilla/ShellWindow.py" line="760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1855" />
+      <location filename="../QScintilla/MiniEditor.py" line="1854" />
+      <location filename="../QScintilla/ShellWindow.py" line="765" />
+      <location filename="../QScintilla/ShellWindow.py" line="764" />
       <source>Escape</source>
       <translation>Escape</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1860" />
-      <location filename="../QScintilla/ShellWindow.py" line="762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1856" />
+      <location filename="../QScintilla/ShellWindow.py" line="766" />
       <source>Esc</source>
       <translation>Esc</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1233" />
-      <location filename="../QScintilla/MiniEditor.py" line="1230" />
-      <location filename="../QScintilla/ShellWindow.py" line="775" />
-      <location filename="../QScintilla/ShellWindow.py" line="772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1226" />
+      <location filename="../QScintilla/ShellWindow.py" line="779" />
+      <location filename="../QScintilla/ShellWindow.py" line="776" />
       <source>Extend selection left one character</source>
       <translation>选区向左扩展一个字符</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1236" />
-      <location filename="../QScintilla/ShellWindow.py" line="778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1232" />
+      <location filename="../QScintilla/ShellWindow.py" line="782" />
       <source>Shift+Left</source>
       <translation>Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1243" />
-      <location filename="../QScintilla/ShellWindow.py" line="785" />
+      <location filename="../QScintilla/MiniEditor.py" line="1239" />
+      <location filename="../QScintilla/ShellWindow.py" line="789" />
       <source>Meta+Shift+B</source>
       <translation>Meta+Shift+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1253" />
-      <location filename="../QScintilla/MiniEditor.py" line="1250" />
-      <location filename="../QScintilla/ShellWindow.py" line="795" />
-      <location filename="../QScintilla/ShellWindow.py" line="792" />
+      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1246" />
+      <location filename="../QScintilla/ShellWindow.py" line="799" />
+      <location filename="../QScintilla/ShellWindow.py" line="796" />
       <source>Extend selection right one character</source>
       <translation>选区向右扩展一个字符</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1256" />
-      <location filename="../QScintilla/ShellWindow.py" line="798" />
+      <location filename="../QScintilla/MiniEditor.py" line="1252" />
+      <location filename="../QScintilla/ShellWindow.py" line="802" />
       <source>Shift+Right</source>
       <translation>Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1263" />
-      <location filename="../QScintilla/ShellWindow.py" line="805" />
+      <location filename="../QScintilla/MiniEditor.py" line="1259" />
+      <location filename="../QScintilla/ShellWindow.py" line="809" />
       <source>Meta+Shift+F</source>
       <translation>Meta+Shift+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
-      <location filename="../QScintilla/MiniEditor.py" line="1347" />
-      <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/ShellWindow.py" line="813" />
-      <location filename="../QScintilla/ShellWindow.py" line="812" />
+      <location filename="../QScintilla/MiniEditor.py" line="1343" />
+      <location filename="../QScintilla/MiniEditor.py" line="1342" />
+      <location filename="../QScintilla/ShellWindow.py" line="817" />
+      <location filename="../QScintilla/ShellWindow.py" line="816" />
       <source>Extend selection left one word</source>
       <translation>选区向左扩展一个单词</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1356" />
-      <location filename="../QScintilla/MiniEditor.py" line="1316" />
-      <location filename="../QScintilla/ShellWindow.py" line="822" />
+      <location filename="../QScintilla/MiniEditor.py" line="1352" />
+      <location filename="../QScintilla/MiniEditor.py" line="1312" />
+      <location filename="../QScintilla/ShellWindow.py" line="826" />
       <source>Alt+Shift+Left</source>
       <translation>Alt+Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2277" />
-      <location filename="../QScintilla/MiniEditor.py" line="1362" />
-      <location filename="../QScintilla/ShellWindow.py" line="828" />
+      <location filename="../QScintilla/MiniEditor.py" line="2273" />
+      <location filename="../QScintilla/MiniEditor.py" line="1358" />
+      <location filename="../QScintilla/ShellWindow.py" line="832" />
       <source>Ctrl+Shift+Left</source>
       <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1373" />
-      <location filename="../QScintilla/MiniEditor.py" line="1370" />
-      <location filename="../QScintilla/ShellWindow.py" line="839" />
-      <location filename="../QScintilla/ShellWindow.py" line="836" />
+      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1366" />
+      <location filename="../QScintilla/ShellWindow.py" line="843" />
+      <location filename="../QScintilla/ShellWindow.py" line="840" />
       <source>Extend selection right one word</source>
       <translation>选区向右扩展一个单词</translation>
     </message>
@@ -92184,60 +92292,60 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2151" />
-      <location filename="../QScintilla/MiniEditor.py" line="1384" />
-      <location filename="../QScintilla/MiniEditor.py" line="1338" />
-      <location filename="../QScintilla/ShellWindow.py" line="850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2147" />
+      <location filename="../QScintilla/MiniEditor.py" line="1380" />
+      <location filename="../QScintilla/MiniEditor.py" line="1334" />
+      <location filename="../QScintilla/ShellWindow.py" line="854" />
       <source>Alt+Shift+Right</source>
       <translation>Alt+Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1838" />
-      <location filename="../QScintilla/MiniEditor.py" line="1390" />
-      <location filename="../QScintilla/ShellWindow.py" line="856" />
+      <location filename="../QScintilla/MiniEditor.py" line="1834" />
+      <location filename="../QScintilla/MiniEditor.py" line="1386" />
+      <location filename="../QScintilla/ShellWindow.py" line="860" />
       <source>Ctrl+Shift+Right</source>
       <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1402" />
       <location filename="../QScintilla/MiniEditor.py" line="1398" />
+      <location filename="../QScintilla/MiniEditor.py" line="1394" />
+      <location filename="../QScintilla/ShellWindow.py" line="872" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
-      <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1413" />
-      <location filename="../QScintilla/ShellWindow.py" line="879" />
+      <location filename="../QScintilla/MiniEditor.py" line="1409" />
+      <location filename="../QScintilla/ShellWindow.py" line="883" />
       <source>Shift+Home</source>
       <translation>Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1423" />
-      <location filename="../QScintilla/MiniEditor.py" line="1420" />
-      <location filename="../QScintilla/ShellWindow.py" line="889" />
-      <location filename="../QScintilla/ShellWindow.py" line="886" />
+      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1416" />
+      <location filename="../QScintilla/ShellWindow.py" line="893" />
+      <location filename="../QScintilla/ShellWindow.py" line="890" />
       <source>Extend selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1433" />
-      <location filename="../QScintilla/ShellWindow.py" line="899" />
+      <location filename="../QScintilla/MiniEditor.py" line="1429" />
+      <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Meta+Shift+E</source>
       <translation>Meta+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1437" />
-      <location filename="../QScintilla/ShellWindow.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
+      <location filename="../QScintilla/ShellWindow.py" line="907" />
       <source>Shift+End</source>
       <translation>Shift+End</translation>
     </message>
@@ -92245,255 +92353,255 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2533" />
-      <location filename="../QScintilla/ShellWindow.py" line="917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2529" />
+      <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Search</source>
       <translation>搜索</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2535" />
-      <location filename="../QScintilla/ShellWindow.py" line="919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2531" />
+      <location filename="../QScintilla/ShellWindow.py" line="923" />
       <source>&amp;Search...</source>
       <translation>搜索(&amp;S)…</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2537" />
-      <location filename="../QScintilla/ShellWindow.py" line="921" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
+      <location filename="../QScintilla/ShellWindow.py" line="925" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
       <translation>Ctrl+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2544" />
-      <location filename="../QScintilla/ShellWindow.py" line="928" />
+      <location filename="../QScintilla/MiniEditor.py" line="2540" />
+      <location filename="../QScintilla/ShellWindow.py" line="932" />
       <source>Search for a text</source>
       <translation>搜索文本</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="931" />
+      <location filename="../QScintilla/ShellWindow.py" line="935" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2559" />
-      <location filename="../QScintilla/ShellWindow.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="2555" />
+      <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>Search next</source>
       <translation>搜索下一个</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2561" />
-      <location filename="../QScintilla/ShellWindow.py" line="945" />
+      <location filename="../QScintilla/MiniEditor.py" line="2557" />
+      <location filename="../QScintilla/ShellWindow.py" line="949" />
       <source>Search &amp;next</source>
       <translation>搜索下一个(&amp;N)</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2563" />
-      <location filename="../QScintilla/ShellWindow.py" line="947" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
+      <location filename="../QScintilla/ShellWindow.py" line="951" />
       <source>F3</source>
       <comment>Search|Search next</comment>
       <translation>F3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2570" />
-      <location filename="../QScintilla/ShellWindow.py" line="954" />
+      <location filename="../QScintilla/MiniEditor.py" line="2566" />
+      <location filename="../QScintilla/ShellWindow.py" line="958" />
       <source>Search next occurrence of text</source>
       <translation>搜索下一处文本</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="957" />
+      <location filename="../QScintilla/ShellWindow.py" line="961" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2585" />
-      <location filename="../QScintilla/ShellWindow.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="2581" />
+      <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Search previous</source>
       <translation>搜索上一个</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2587" />
-      <location filename="../QScintilla/ShellWindow.py" line="973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2583" />
+      <location filename="../QScintilla/ShellWindow.py" line="977" />
       <source>Search &amp;previous</source>
       <translation>搜索上一个(&amp;P)</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2589" />
-      <location filename="../QScintilla/ShellWindow.py" line="975" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
+      <location filename="../QScintilla/ShellWindow.py" line="979" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
       <translation>Shift+F3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2598" />
-      <location filename="../QScintilla/ShellWindow.py" line="984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2594" />
+      <location filename="../QScintilla/ShellWindow.py" line="988" />
       <source>Search previous occurrence of text</source>
       <translation>搜索上一处文本</translation>
     </message>
     <message>
-      <location filename="../QScintilla/ShellWindow.py" line="989" />
+      <location filename="../QScintilla/ShellWindow.py" line="993" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2758" />
-      <location filename="../QScintilla/ShellWindow.py" line="1010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2754" />
+      <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Zoom in</source>
       <translation>放大</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2760" />
-      <location filename="../QScintilla/ShellWindow.py" line="1012" />
+      <location filename="../QScintilla/MiniEditor.py" line="2756" />
+      <location filename="../QScintilla/ShellWindow.py" line="1016" />
       <source>Zoom &amp;in</source>
       <translation>放大(&amp;I)</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2762" />
-      <location filename="../QScintilla/ShellWindow.py" line="1014" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
+      <location filename="../QScintilla/ShellWindow.py" line="1018" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
       <translation>Ctrl++</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2765" />
-      <location filename="../QScintilla/ShellWindow.py" line="1017" />
+      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/ShellWindow.py" line="1021" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
       <translation>放大</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2771" />
-      <location filename="../QScintilla/ShellWindow.py" line="1023" />
+      <location filename="../QScintilla/MiniEditor.py" line="2767" />
+      <location filename="../QScintilla/ShellWindow.py" line="1027" />
       <source>Zoom in on the text</source>
       <translation>放大显示文本</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2774" />
-      <location filename="../QScintilla/ShellWindow.py" line="1026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/ShellWindow.py" line="1030" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;放大&lt;/b&gt;&lt;p&gt;放大显示文本。将使文本变大。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2784" />
-      <location filename="../QScintilla/ShellWindow.py" line="1036" />
+      <location filename="../QScintilla/MiniEditor.py" line="2780" />
+      <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Zoom out</source>
       <translation>缩小</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2786" />
-      <location filename="../QScintilla/ShellWindow.py" line="1038" />
+      <location filename="../QScintilla/MiniEditor.py" line="2782" />
+      <location filename="../QScintilla/ShellWindow.py" line="1042" />
       <source>Zoom &amp;out</source>
       <translation>缩小(&amp;O)</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2788" />
-      <location filename="../QScintilla/ShellWindow.py" line="1040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
+      <location filename="../QScintilla/ShellWindow.py" line="1044" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
       <translation>Ctrl+-</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2791" />
-      <location filename="../QScintilla/ShellWindow.py" line="1043" />
+      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/ShellWindow.py" line="1047" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
       <translation>缩小</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2797" />
-      <location filename="../QScintilla/ShellWindow.py" line="1049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2793" />
+      <location filename="../QScintilla/ShellWindow.py" line="1053" />
       <source>Zoom out on the text</source>
       <translation>缩小显示文本</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2800" />
-      <location filename="../QScintilla/ShellWindow.py" line="1052" />
+      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/ShellWindow.py" line="1056" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;缩小&lt;/b&gt;&lt;p&gt;缩小显示文本。将使文本变小。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2810" />
-      <location filename="../QScintilla/ShellWindow.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="2806" />
+      <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Zoom reset</source>
       <translation>重置缩放</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2812" />
-      <location filename="../QScintilla/ShellWindow.py" line="1064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2808" />
+      <location filename="../QScintilla/ShellWindow.py" line="1068" />
       <source>Zoom &amp;reset</source>
       <translation>重置缩放(&amp;R)</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2814" />
-      <location filename="../QScintilla/ShellWindow.py" line="1066" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
+      <location filename="../QScintilla/ShellWindow.py" line="1070" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
       <translation>Ctrl+0</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2821" />
-      <location filename="../QScintilla/ShellWindow.py" line="1073" />
+      <location filename="../QScintilla/MiniEditor.py" line="2817" />
+      <location filename="../QScintilla/ShellWindow.py" line="1077" />
       <source>Reset the zoom of the text</source>
       <translation>重置文本缩放大小</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2824" />
-      <location filename="../QScintilla/ShellWindow.py" line="1076" />
+      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/ShellWindow.py" line="1080" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2835" />
-      <location filename="../QScintilla/ShellWindow.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="2831" />
+      <location filename="../QScintilla/ShellWindow.py" line="1091" />
       <source>Zoom</source>
       <translation>缩放</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2837" />
-      <location filename="../QScintilla/ShellWindow.py" line="1089" />
+      <location filename="../QScintilla/MiniEditor.py" line="2833" />
+      <location filename="../QScintilla/ShellWindow.py" line="1093" />
       <source>&amp;Zoom</source>
       <translation>缩放(&amp;Z)</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2844" />
-      <location filename="../QScintilla/ShellWindow.py" line="1096" />
+      <location filename="../QScintilla/MiniEditor.py" line="2840" />
+      <location filename="../QScintilla/ShellWindow.py" line="1100" />
       <source>Zoom the text</source>
       <translation>缩放文本</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2847" />
-      <location filename="../QScintilla/ShellWindow.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/ShellWindow.py" line="1103" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation>&lt;b&gt;缩放&lt;/b&gt;&lt;p&gt;缩放文本。打开一个对话框以输入所需大小。&lt;/p&gt;</translation>
     </message>
@@ -92507,977 +92615,977 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
-      <location filename="../QScintilla/MiniEditor.py" line="959" />
-      <location filename="../QScintilla/MiniEditor.py" line="958" />
+      <location filename="../QScintilla/MiniEditor.py" line="955" />
+      <location filename="../QScintilla/MiniEditor.py" line="954" />
       <source>Move left one word part</source>
       <translation>左移一个单词部分</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
-      <location filename="../QScintilla/MiniEditor.py" line="975" />
-      <location filename="../QScintilla/MiniEditor.py" line="974" />
+      <location filename="../QScintilla/MiniEditor.py" line="971" />
+      <location filename="../QScintilla/MiniEditor.py" line="970" />
       <source>Move right one word part</source>
       <translation>右移一个单词部分</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2129" />
-      <location filename="../QScintilla/MiniEditor.py" line="1019" />
-      <location filename="../QScintilla/MiniEditor.py" line="983" />
+      <location filename="../QScintilla/MiniEditor.py" line="2125" />
+      <location filename="../QScintilla/MiniEditor.py" line="1015" />
+      <location filename="../QScintilla/MiniEditor.py" line="979" />
       <source>Alt+Right</source>
       <translation>Alt+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
-      <location filename="../QScintilla/MiniEditor.py" line="1051" />
-      <location filename="../QScintilla/MiniEditor.py" line="1050" />
+      <location filename="../QScintilla/MiniEditor.py" line="1047" />
+      <location filename="../QScintilla/MiniEditor.py" line="1046" />
       <source>Move to start of display line</source>
       <translation>移动至所显示行的起始位置</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1063" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
       <source>Alt+Home</source>
       <translation>Alt+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1090" />
+      <location filename="../QScintilla/MiniEditor.py" line="1087" />
+      <location filename="../QScintilla/MiniEditor.py" line="1086" />
       <source>Scroll view down one line</source>
       <translation>视图向下滚动一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
-      <location filename="../QScintilla/MiniEditor.py" line="1102" />
+      <location filename="../QScintilla/MiniEditor.py" line="1099" />
+      <location filename="../QScintilla/MiniEditor.py" line="1098" />
       <source>Scroll view up one line</source>
       <translation>视图向上滚动一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
-      <location filename="../QScintilla/MiniEditor.py" line="1114" />
+      <location filename="../QScintilla/MiniEditor.py" line="1111" />
+      <location filename="../QScintilla/MiniEditor.py" line="1110" />
       <source>Move up one paragraph</source>
       <translation>上移一段</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1116" />
+      <location filename="../QScintilla/MiniEditor.py" line="1112" />
       <source>Alt+Up</source>
       <translation>Alt+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
-      <location filename="../QScintilla/MiniEditor.py" line="1126" />
+      <location filename="../QScintilla/MiniEditor.py" line="1123" />
+      <location filename="../QScintilla/MiniEditor.py" line="1122" />
       <source>Move down one paragraph</source>
       <translation>下移一段</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1128" />
+      <location filename="../QScintilla/MiniEditor.py" line="1124" />
       <source>Alt+Down</source>
       <translation>Alt+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
-      <location filename="../QScintilla/MiniEditor.py" line="1167" />
-      <location filename="../QScintilla/MiniEditor.py" line="1166" />
+      <location filename="../QScintilla/MiniEditor.py" line="1163" />
+      <location filename="../QScintilla/MiniEditor.py" line="1162" />
       <source>Move to start of document</source>
       <translation>移动至文档的起始位置</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1179" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
       <source>Ctrl+Home</source>
       <translation>Ctrl+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
-      <location filename="../QScintilla/MiniEditor.py" line="1187" />
-      <location filename="../QScintilla/MiniEditor.py" line="1186" />
+      <location filename="../QScintilla/MiniEditor.py" line="1183" />
+      <location filename="../QScintilla/MiniEditor.py" line="1182" />
       <source>Move to end of document</source>
       <translation>移动至文档的末尾</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1199" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
       <source>Ctrl+End</source>
       <translation>Ctrl+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
-      <location filename="../QScintilla/MiniEditor.py" line="1218" />
+      <location filename="../QScintilla/MiniEditor.py" line="1215" />
+      <location filename="../QScintilla/MiniEditor.py" line="1214" />
       <source>Unindent one level</source>
       <translation>取消缩进一级</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1220" />
+      <location filename="../QScintilla/MiniEditor.py" line="1216" />
       <source>Shift+Tab</source>
       <translation>Shift+Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
-      <location filename="../QScintilla/MiniEditor.py" line="1270" />
+      <location filename="../QScintilla/MiniEditor.py" line="1267" />
+      <location filename="../QScintilla/MiniEditor.py" line="1266" />
       <source>Extend selection up one line</source>
       <translation>选区向上扩展一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1272" />
+      <location filename="../QScintilla/MiniEditor.py" line="1268" />
       <source>Shift+Up</source>
       <translation>Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1279" />
+      <location filename="../QScintilla/MiniEditor.py" line="1275" />
       <source>Meta+Shift+P</source>
       <translation>Meta+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
-      <location filename="../QScintilla/MiniEditor.py" line="1286" />
+      <location filename="../QScintilla/MiniEditor.py" line="1283" />
+      <location filename="../QScintilla/MiniEditor.py" line="1282" />
       <source>Extend selection down one line</source>
       <translation>选区向下扩展一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1288" />
+      <location filename="../QScintilla/MiniEditor.py" line="1284" />
       <source>Shift+Down</source>
       <translation>Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1291" />
       <source>Meta+Shift+N</source>
       <translation>Meta+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1305" />
-      <location filename="../QScintilla/MiniEditor.py" line="1302" />
+      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1298" />
       <source>Extend selection left one word part</source>
       <translation>选区向左扩展一个单词部分</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1327" />
-      <location filename="../QScintilla/MiniEditor.py" line="1324" />
+      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1320" />
       <source>Extend selection right one word part</source>
       <translation>选区向右扩展一个单词部分</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1447" />
-      <location filename="../QScintilla/MiniEditor.py" line="1444" />
+      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1440" />
       <source>Extend selection up one paragraph</source>
       <translation>选区向上扩展一段</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1450" />
+      <location filename="../QScintilla/MiniEditor.py" line="1446" />
       <source>Alt+Shift+Up</source>
       <translation>Alt+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1463" />
-      <location filename="../QScintilla/MiniEditor.py" line="1460" />
+      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1456" />
       <source>Extend selection down one paragraph</source>
       <translation>选区向下扩展一段</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1466" />
+      <location filename="../QScintilla/MiniEditor.py" line="1462" />
       <source>Alt+Shift+Down</source>
       <translation>Alt+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
-      <location filename="../QScintilla/MiniEditor.py" line="1476" />
+      <location filename="../QScintilla/MiniEditor.py" line="1473" />
+      <location filename="../QScintilla/MiniEditor.py" line="1472" />
       <source>Extend selection up one page</source>
       <translation>选区向上扩展一页</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1478" />
+      <location filename="../QScintilla/MiniEditor.py" line="1474" />
       <source>Shift+PgUp</source>
       <translation>Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
-      <location filename="../QScintilla/MiniEditor.py" line="1488" />
+      <location filename="../QScintilla/MiniEditor.py" line="1485" />
+      <location filename="../QScintilla/MiniEditor.py" line="1484" />
       <source>Extend selection down one page</source>
       <translation>选区向下扩展一页</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1490" />
+      <location filename="../QScintilla/MiniEditor.py" line="1486" />
       <source>Shift+PgDown</source>
       <translation>Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1497" />
+      <location filename="../QScintilla/MiniEditor.py" line="1493" />
       <source>Meta+Shift+V</source>
       <translation>Meta+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1507" />
-      <location filename="../QScintilla/MiniEditor.py" line="1504" />
+      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1500" />
       <source>Extend selection to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1517" />
+      <location filename="../QScintilla/MiniEditor.py" line="1513" />
       <source>Ctrl+Shift+Up</source>
       <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1522" />
+      <location filename="../QScintilla/MiniEditor.py" line="1518" />
       <source>Ctrl+Shift+Home</source>
       <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1533" />
-      <location filename="../QScintilla/MiniEditor.py" line="1530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1526" />
       <source>Extend selection to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1544" />
+      <location filename="../QScintilla/MiniEditor.py" line="1540" />
       <source>Ctrl+Shift+Down</source>
       <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1550" />
+      <location filename="../QScintilla/MiniEditor.py" line="1546" />
       <source>Ctrl+Shift+End</source>
       <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1583" />
-      <location filename="../QScintilla/MiniEditor.py" line="1580" />
+      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1576" />
       <source>Delete previous character if not at start of line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
-      <location filename="../QScintilla/MiniEditor.py" line="1696" />
+      <location filename="../QScintilla/MiniEditor.py" line="1693" />
+      <location filename="../QScintilla/MiniEditor.py" line="1692" />
       <source>Duplicate current line</source>
       <translation>重复当前行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1698" />
+      <location filename="../QScintilla/MiniEditor.py" line="1694" />
       <source>Ctrl+D</source>
       <translation>Ctrl+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1711" />
-      <location filename="../QScintilla/MiniEditor.py" line="1708" />
+      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1704" />
       <source>Swap current and previous lines</source>
       <translation>当前行与上一行交换位置</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1714" />
+      <location filename="../QScintilla/MiniEditor.py" line="1710" />
       <source>Ctrl+T</source>
       <translation>Ctrl+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
-      <location filename="../QScintilla/MiniEditor.py" line="1724" />
+      <location filename="../QScintilla/MiniEditor.py" line="1721" />
+      <location filename="../QScintilla/MiniEditor.py" line="1720" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1726" />
+      <location filename="../QScintilla/MiniEditor.py" line="1722" />
       <source>Meta+Alt+R</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
-      <location filename="../QScintilla/MiniEditor.py" line="1736" />
+      <location filename="../QScintilla/MiniEditor.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="1732" />
       <source>Cut current line</source>
       <translation>剪切当前行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1738" />
+      <location filename="../QScintilla/MiniEditor.py" line="1734" />
       <source>Alt+Shift+L</source>
       <translation>Alt+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
-      <location filename="../QScintilla/MiniEditor.py" line="1748" />
+      <location filename="../QScintilla/MiniEditor.py" line="1745" />
+      <location filename="../QScintilla/MiniEditor.py" line="1744" />
       <source>Copy current line</source>
       <translation>复制当前行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1750" />
+      <location filename="../QScintilla/MiniEditor.py" line="1746" />
       <source>Ctrl+Shift+T</source>
       <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
-      <location filename="../QScintilla/MiniEditor.py" line="1760" />
+      <location filename="../QScintilla/MiniEditor.py" line="1757" />
+      <location filename="../QScintilla/MiniEditor.py" line="1756" />
       <source>Toggle insert/overtype</source>
       <translation>切换插入/改写状态</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1762" />
+      <location filename="../QScintilla/MiniEditor.py" line="1758" />
       <source>Ins</source>
       <translation>Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1775" />
-      <location filename="../QScintilla/MiniEditor.py" line="1772" />
+      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1768" />
       <source>Convert selection to lower case</source>
       <translation>将所选内容转换成小写</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1778" />
+      <location filename="../QScintilla/MiniEditor.py" line="1774" />
       <source>Alt+Shift+U</source>
       <translation>Alt+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1791" />
-      <location filename="../QScintilla/MiniEditor.py" line="1788" />
+      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1784" />
       <source>Convert selection to upper case</source>
       <translation>将所选内容转换成大写</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1794" />
+      <location filename="../QScintilla/MiniEditor.py" line="1790" />
       <source>Ctrl+Shift+U</source>
       <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
-      <location filename="../QScintilla/MiniEditor.py" line="1805" />
-      <location filename="../QScintilla/MiniEditor.py" line="1804" />
+      <location filename="../QScintilla/MiniEditor.py" line="1801" />
+      <location filename="../QScintilla/MiniEditor.py" line="1800" />
       <source>Move to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1817" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
       <source>Alt+End</source>
       <translation>Alt+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1827" />
-      <location filename="../QScintilla/MiniEditor.py" line="1824" />
+      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1820" />
       <source>Extend selection to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
-      <location filename="../QScintilla/MiniEditor.py" line="1847" />
-      <location filename="../QScintilla/MiniEditor.py" line="1846" />
+      <location filename="../QScintilla/MiniEditor.py" line="1843" />
+      <location filename="../QScintilla/MiniEditor.py" line="1842" />
       <source>Formfeed</source>
       <translation>Formfeed</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1873" />
-      <location filename="../QScintilla/MiniEditor.py" line="1870" />
+      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1866" />
       <source>Extend rectangular selection down one line</source>
       <translation>矩形选区向下扩展一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1876" />
+      <location filename="../QScintilla/MiniEditor.py" line="1872" />
       <source>Alt+Ctrl+Down</source>
       <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1884" />
+      <location filename="../QScintilla/MiniEditor.py" line="1880" />
       <source>Meta+Alt+Shift+N</source>
       <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1895" />
-      <location filename="../QScintilla/MiniEditor.py" line="1892" />
+      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1888" />
       <source>Extend rectangular selection up one line</source>
       <translation>矩形选区向上扩展一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1898" />
+      <location filename="../QScintilla/MiniEditor.py" line="1894" />
       <source>Alt+Ctrl+Up</source>
       <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1906" />
+      <location filename="../QScintilla/MiniEditor.py" line="1902" />
       <source>Meta+Alt+Shift+P</source>
       <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1917" />
-      <location filename="../QScintilla/MiniEditor.py" line="1914" />
+      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1910" />
       <source>Extend rectangular selection left one character</source>
       <translation>矩形选区向左扩展一个字符</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1920" />
+      <location filename="../QScintilla/MiniEditor.py" line="1916" />
       <source>Alt+Ctrl+Left</source>
       <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1928" />
+      <location filename="../QScintilla/MiniEditor.py" line="1924" />
       <source>Meta+Alt+Shift+B</source>
       <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1939" />
-      <location filename="../QScintilla/MiniEditor.py" line="1936" />
+      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1932" />
       <source>Extend rectangular selection right one character</source>
       <translation>矩形选区向右扩展一个字符</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1942" />
+      <location filename="../QScintilla/MiniEditor.py" line="1938" />
       <source>Alt+Ctrl+Right</source>
       <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1950" />
+      <location filename="../QScintilla/MiniEditor.py" line="1946" />
       <source>Meta+Alt+Shift+F</source>
       <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1963" />
-      <location filename="../QScintilla/MiniEditor.py" line="1958" />
+      <location filename="../QScintilla/MiniEditor.py" line="1959" />
+      <location filename="../QScintilla/MiniEditor.py" line="1954" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1976" />
+      <location filename="../QScintilla/MiniEditor.py" line="1972" />
       <source>Alt+Shift+Home</source>
       <translation>Alt+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1987" />
-      <location filename="../QScintilla/MiniEditor.py" line="1984" />
+      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1980" />
       <source>Extend rectangular selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1998" />
+      <location filename="../QScintilla/MiniEditor.py" line="1994" />
       <source>Meta+Alt+Shift+E</source>
       <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2003" />
+      <location filename="../QScintilla/MiniEditor.py" line="1999" />
       <source>Alt+Shift+End</source>
       <translation>Alt+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2013" />
-      <location filename="../QScintilla/MiniEditor.py" line="2010" />
+      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2006" />
       <source>Extend rectangular selection up one page</source>
       <translation>矩形选区向上扩展一页</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2016" />
+      <location filename="../QScintilla/MiniEditor.py" line="2012" />
       <source>Alt+Shift+PgUp</source>
       <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2029" />
-      <location filename="../QScintilla/MiniEditor.py" line="2026" />
+      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2022" />
       <source>Extend rectangular selection down one page</source>
       <translation>矩形选区向下扩展一页</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2032" />
+      <location filename="../QScintilla/MiniEditor.py" line="2028" />
       <source>Alt+Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2040" />
+      <location filename="../QScintilla/MiniEditor.py" line="2036" />
       <source>Meta+Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="2048" />
+      <location filename="../QScintilla/MiniEditor.py" line="2511" />
+      <location filename="../QScintilla/MiniEditor.py" line="2510" />
+      <location filename="../QScintilla/MiniEditor.py" line="2045" />
+      <location filename="../QScintilla/MiniEditor.py" line="2044" />
       <source>Duplicate current selection</source>
       <translation>重复当前选区</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2516" />
-      <location filename="../QScintilla/MiniEditor.py" line="2050" />
+      <location filename="../QScintilla/MiniEditor.py" line="2512" />
+      <location filename="../QScintilla/MiniEditor.py" line="2046" />
       <source>Ctrl+Shift+D</source>
       <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2064" />
-      <location filename="../QScintilla/MiniEditor.py" line="2061" />
+      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2057" />
       <source>Scroll to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
-      <location filename="../QScintilla/MiniEditor.py" line="2083" />
-      <location filename="../QScintilla/MiniEditor.py" line="2082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2079" />
+      <location filename="../QScintilla/MiniEditor.py" line="2078" />
       <source>Scroll to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2102" />
-      <location filename="../QScintilla/MiniEditor.py" line="2099" />
+      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2095" />
       <source>Scroll vertically to center current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2112" />
+      <location filename="../QScintilla/MiniEditor.py" line="2108" />
       <source>Meta+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
-      <location filename="../QScintilla/MiniEditor.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2120" />
+      <location filename="../QScintilla/MiniEditor.py" line="2117" />
+      <location filename="../QScintilla/MiniEditor.py" line="2116" />
       <source>Move to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2140" />
-      <location filename="../QScintilla/MiniEditor.py" line="2137" />
+      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2133" />
       <source>Extend selection to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2163" />
-      <location filename="../QScintilla/MiniEditor.py" line="2160" />
+      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2156" />
       <source>Move to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2180" />
-      <location filename="../QScintilla/MiniEditor.py" line="2177" />
+      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2173" />
       <source>Extend selection to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2197" />
-      <location filename="../QScintilla/MiniEditor.py" line="2194" />
+      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2190" />
       <source>Move to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2207" />
+      <location filename="../QScintilla/MiniEditor.py" line="2203" />
       <source>Meta+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2218" />
-      <location filename="../QScintilla/MiniEditor.py" line="2215" />
+      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2211" />
       <source>Extend selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2229" />
+      <location filename="../QScintilla/MiniEditor.py" line="2225" />
       <source>Meta+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2242" />
       <location filename="../QScintilla/MiniEditor.py" line="2238" />
+      <location filename="../QScintilla/MiniEditor.py" line="2234" />
       <source>Extend rectangular selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2254" />
+      <location filename="../QScintilla/MiniEditor.py" line="2250" />
       <source>Meta+Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2266" />
-      <location filename="../QScintilla/MiniEditor.py" line="2263" />
+      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2259" />
       <source>Extend selection to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2289" />
-      <location filename="../QScintilla/MiniEditor.py" line="2286" />
+      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2282" />
       <source>Move to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2307" />
       <location filename="../QScintilla/MiniEditor.py" line="2303" />
+      <location filename="../QScintilla/MiniEditor.py" line="2299" />
       <source>Extend selection to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2326" />
       <location filename="../QScintilla/MiniEditor.py" line="2322" />
+      <location filename="../QScintilla/MiniEditor.py" line="2318" />
       <source>Move to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2346" />
-      <location filename="../QScintilla/MiniEditor.py" line="2341" />
+      <location filename="../QScintilla/MiniEditor.py" line="2342" />
+      <location filename="../QScintilla/MiniEditor.py" line="2337" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2365" />
-      <location filename="../QScintilla/MiniEditor.py" line="2362" />
+      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2358" />
       <source>Move to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2382" />
-      <location filename="../QScintilla/MiniEditor.py" line="2379" />
+      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2375" />
       <source>Extend selection to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
-      <location filename="../QScintilla/MiniEditor.py" line="2397" />
-      <location filename="../QScintilla/MiniEditor.py" line="2396" />
+      <location filename="../QScintilla/MiniEditor.py" line="2393" />
+      <location filename="../QScintilla/MiniEditor.py" line="2392" />
       <source>Stuttered move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2412" />
-      <location filename="../QScintilla/MiniEditor.py" line="2409" />
+      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2405" />
       <source>Stuttered extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2429" />
-      <location filename="../QScintilla/MiniEditor.py" line="2426" />
+      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2422" />
       <source>Stuttered move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2446" />
-      <location filename="../QScintilla/MiniEditor.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2439" />
       <source>Stuttered extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2463" />
-      <location filename="../QScintilla/MiniEditor.py" line="2460" />
+      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2456" />
       <source>Delete right to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2473" />
+      <location filename="../QScintilla/MiniEditor.py" line="2469" />
       <source>Alt+Del</source>
       <translation>Alt+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2484" />
-      <location filename="../QScintilla/MiniEditor.py" line="2481" />
+      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2477" />
       <source>Move selected lines up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2501" />
-      <location filename="../QScintilla/MiniEditor.py" line="2498" />
+      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2494" />
       <source>Move selected lines down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2547" />
+      <location filename="../QScintilla/MiniEditor.py" line="2543" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation>&lt;b&gt;搜索&lt;/b&gt;&lt;p&gt;在当前编辑器中搜索某文本。显示一个对话框可以输入要搜索的文本和搜索选项。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2573" />
+      <location filename="../QScintilla/MiniEditor.py" line="2569" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;搜索下一个&lt;/b&gt;&lt;p&gt;在当前编辑器中搜索某文本下一次出现的位置。仍然使用前面输入的搜索文本和选项。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2603" />
+      <location filename="../QScintilla/MiniEditor.py" line="2599" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;搜索上一个&lt;/b&gt;&lt;p&gt;在当前编辑器中搜索某文本上一次出现的位置。仍然使用前面输入的搜索文本和选项。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2617" />
-      <location filename="../QScintilla/MiniEditor.py" line="2615" />
+      <location filename="../QScintilla/MiniEditor.py" line="2613" />
+      <location filename="../QScintilla/MiniEditor.py" line="2611" />
       <source>Clear search markers</source>
       <translation>清除搜索标记</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2619" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation>Ctrl+3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2628" />
+      <location filename="../QScintilla/MiniEditor.py" line="2624" />
       <source>Clear all displayed search markers</source>
       <translation>清除所有显示的搜索标记</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2633" />
+      <location filename="../QScintilla/MiniEditor.py" line="2629" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation>&lt;b&gt;清除搜索标记&lt;/b&gt;&lt;p&gt;清除所有显示的搜索标记。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2639" />
       <source>Replace</source>
       <translation>替换</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2644" />
+      <location filename="../QScintilla/MiniEditor.py" line="2640" />
       <source>&amp;Replace...</source>
       <translation>替换(&amp;R)…</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2646" />
+      <location filename="../QScintilla/MiniEditor.py" line="2642" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation>Ctrl+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2653" />
+      <location filename="../QScintilla/MiniEditor.py" line="2649" />
       <source>Replace some text</source>
       <translation>替换某文本</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2656" />
+      <location filename="../QScintilla/MiniEditor.py" line="2652" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation>&lt;b&gt;替换&lt;/b&gt;&lt;p&gt;在当前编辑器搜索某文本并替换之。显示一个对话框可输入搜索文本、替换文本以及搜索替换的选项。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2670" />
-      <location filename="../QScintilla/MiniEditor.py" line="2668" />
+      <location filename="../QScintilla/MiniEditor.py" line="2666" />
+      <location filename="../QScintilla/MiniEditor.py" line="2664" />
       <source>Replace and Search</source>
       <translation type="unfinished">替换和搜索</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2672" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2681" />
+      <location filename="../QScintilla/MiniEditor.py" line="2677" />
       <source>Replace the found text and search the next occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2686" />
+      <location filename="../QScintilla/MiniEditor.py" line="2682" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2702" />
-      <location filename="../QScintilla/MiniEditor.py" line="2700" />
+      <location filename="../QScintilla/MiniEditor.py" line="2698" />
+      <location filename="../QScintilla/MiniEditor.py" line="2696" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2704" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2713" />
+      <location filename="../QScintilla/MiniEditor.py" line="2709" />
       <source>Replace the found text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2716" />
+      <location filename="../QScintilla/MiniEditor.py" line="2712" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2729" />
-      <location filename="../QScintilla/MiniEditor.py" line="2727" />
+      <location filename="../QScintilla/MiniEditor.py" line="2725" />
+      <location filename="../QScintilla/MiniEditor.py" line="2723" />
       <source>Replace All</source>
       <translation type="unfinished">替换全部</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2731" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2740" />
+      <location filename="../QScintilla/MiniEditor.py" line="2736" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2743" />
+      <location filename="../QScintilla/MiniEditor.py" line="2739" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -95415,29 +95523,29 @@
       <translation>编辑(&amp;E)…</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7350" />
-      <location filename="../ViewManager/ViewManager.py" line="7336" />
-      <location filename="../ViewManager/ViewManager.py" line="7304" />
+      <location filename="../ViewManager/ViewManager.py" line="7349" />
+      <location filename="../ViewManager/ViewManager.py" line="7335" />
+      <location filename="../ViewManager/ViewManager.py" line="7303" />
       <source>Edit Spelling Dictionary</source>
       <translation type="unfinished">编辑拼写字典</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7307" />
+      <location filename="../ViewManager/ViewManager.py" line="7306" />
       <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="7323" />
+      <location filename="../ViewManager/ViewManager.py" line="7322" />
       <source>Editing {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7339" />
+      <location filename="../ViewManager/ViewManager.py" line="7338" />
       <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="7353" />
+      <location filename="../ViewManager/ViewManager.py" line="7352" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation type="unfinished" />
     </message>
@@ -96498,7 +96606,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="135" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="136" />
       <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="96" />
       <source>Failed
 
@@ -96506,46 +96614,46 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="144" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="145" />
       <source>
 pyvenv finished.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="159" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="160" />
       <source>No suitable pyvenv program could be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="222" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="223" />
       <source>
 Writing log file '{0}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="226" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="227" />
       <source>Output:
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="231" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="232" />
       <source>Errors:
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="235" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="236" />
       <source>The logfile '{0}' could not be written.
 Reason: {1}
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="239" />
+      <location filename="../VirtualEnv/VirtualenvUpgradeExecDialog.py" line="240" />
       <source>Done.
 </source>
       <translation type="unfinished" />
@@ -98734,32 +98842,32 @@
       <translation type="unfinished">保存网页</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2312" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2341" />
       <source>Quota Request</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2313" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2342" />
       <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="2389" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2385" />
       <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="2397" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2393" />
       <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="2402" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2398" />
       <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="2409" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2405" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -101749,28 +101857,28 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="143" />
       <source>No current editor</source>
       <translation type="unfinished">没有当前编辑器</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="145" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="144" />
       <source>Please open or create a file first.</source>
       <translation type="unfinished">请您先打开或创建一个文件。</translation>
     </message>
     <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="182" />
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="166" />
+      <source>Create Package</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
+      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/PluginWizardEricPlugin.py" line="183" />
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="167" />
-      <source>Create Package</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="168" />
-      <source>&lt;p&gt;The package directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/PluginWizardEricPlugin.py" line="184" />
       <source>&lt;p&gt;The package file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -102040,38 +102148,38 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1270" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1274" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1801" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1278" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1805" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1282" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1807" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1284" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1811" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1288" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1814" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1291" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1295" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1297" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1301" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1316" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1320" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -102082,35 +102190,35 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1775" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1779" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1782" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1786" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1793" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1794" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1798" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1825" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1827" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1831" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -102791,17 +102899,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1814" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
       <source>unknown</source>
       <translation>未知</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1818" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1822" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1667" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1670" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>

eric ide

mercurial